JobStepOutput Class

  • java.lang.Object
    • com.microsoft.azure.management.sql.JobStepOutput

public class JobStepOutput

The output configuration of a job step.

Constructor Summary

Constructor Description
JobStepOutput()

Method Summary

Modifier and Type Method and Description
java.lang.String credential()

Get the resource ID of the credential to use to connect to the output destination.

java.lang.String databaseName()

Get the output destination database.

java.lang.String resourceGroupName()

Get the output destination resource group.

java.lang.String schemaName()

Get the output destination schema.

java.lang.String serverName()

Get the output destination server name.

java.util.UUID subscriptionId()

Get the output destination subscription id.

java.lang.String tableName()

Get the output destination table.

JobStepOutputType type()

Get the output destination type.

JobStepOutput withCredential(String credential)

Set the resource ID of the credential to use to connect to the output destination.

JobStepOutput withDatabaseName(String databaseName)

Set the output destination database.

JobStepOutput withResourceGroupName(String resourceGroupName)

Set the output destination resource group.

JobStepOutput withSchemaName(String schemaName)

Set the output destination schema.

JobStepOutput withServerName(String serverName)

Set the output destination server name.

JobStepOutput withSubscriptionId(UUID subscriptionId)

Set the output destination subscription id.

JobStepOutput withTableName(String tableName)

Set the output destination table.

JobStepOutput withType(JobStepOutputType type)

Set the output destination type.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Constructor Details

JobStepOutput

public JobStepOutput()

Method Details

credential

public String credential()

Get the resource ID of the credential to use to connect to the output destination.

Returns:

the credential value

databaseName

public String databaseName()

Get the output destination database.

Returns:

the databaseName value

resourceGroupName

public String resourceGroupName()

Get the output destination resource group.

Returns:

the resourceGroupName value

schemaName

public String schemaName()

Get the output destination schema.

Returns:

the schemaName value

serverName

public String serverName()

Get the output destination server name.

Returns:

the serverName value

subscriptionId

public UUID subscriptionId()

Get the output destination subscription id.

Returns:

the subscriptionId value

tableName

public String tableName()

Get the output destination table.

Returns:

the tableName value

type

public JobStepOutputType type()

Get the output destination type. Possible values include: 'SqlDatabase'.

Returns:

the type value

withCredential

public JobStepOutput withCredential(String credential)

Set the resource ID of the credential to use to connect to the output destination.

Parameters:

credential - the credential value to set

Returns:

the JobStepOutput object itself.

withDatabaseName

public JobStepOutput withDatabaseName(String databaseName)

Set the output destination database.

Parameters:

databaseName - the databaseName value to set

Returns:

the JobStepOutput object itself.

withResourceGroupName

public JobStepOutput withResourceGroupName(String resourceGroupName)

Set the output destination resource group.

Parameters:

resourceGroupName - the resourceGroupName value to set

Returns:

the JobStepOutput object itself.

withSchemaName

public JobStepOutput withSchemaName(String schemaName)

Set the output destination schema.

Parameters:

schemaName - the schemaName value to set

Returns:

the JobStepOutput object itself.

withServerName

public JobStepOutput withServerName(String serverName)

Set the output destination server name.

Parameters:

serverName - the serverName value to set

Returns:

the JobStepOutput object itself.

withSubscriptionId

public JobStepOutput withSubscriptionId(UUID subscriptionId)

Set the output destination subscription id.

Parameters:

subscriptionId - the subscriptionId value to set

Returns:

the JobStepOutput object itself.

withTableName

public JobStepOutput withTableName(String tableName)

Set the output destination table.

Parameters:

tableName - the tableName value to set

Returns:

the JobStepOutput object itself.

withType

public JobStepOutput withType(JobStepOutputType type)

Set the output destination type. Possible values include: 'SqlDatabase'.

Parameters:

type - the type value to set

Returns:

the JobStepOutput object itself.

Applies to