Class JobStepOutput
The output configuration of a job step.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Sql.dll
Syntax
public class JobStepOutput
Constructors
JobStepOutput()
Initializes a new instance of the JobStepOutput class.
Declaration
public JobStepOutput ();
JobStepOutput(String, String, String, String, String, Nullable<Guid>, String, String)
Initializes a new instance of the JobStepOutput class.
Declaration
public JobStepOutput (string serverName, string databaseName, string tableName, string credential, string type = null, Nullable<Guid> subscriptionId = null, string resourceGroupName = null, string schemaName = null);
Parameters
String
serverName
The output destination server name. |
String
databaseName
The output destination database. |
String
tableName
The output destination table. |
String
credential
The resource ID of the credential to use to connect to the output destination. |
String
type
The output destination type. Possible values include: 'SqlDatabase' |
Nullable<Guid>
subscriptionId
The output destination subscription id. |
String
resourceGroupName
The output destination resource group. |
String
schemaName
The output destination schema. |
Properties
Credential
Gets or sets the resource ID of the credential to use to connect to the output destination.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="credential")]
public string Credential { get; set; }
Property Value
String
|
DatabaseName
Gets or sets the output destination database.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="databaseName")]
public string DatabaseName { get; set; }
Property Value
String
|
ResourceGroupName
Gets or sets the output destination resource group.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="resourceGroupName")]
public string ResourceGroupName { get; set; }
Property Value
String
|
SchemaName
Gets or sets the output destination schema.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="schemaName")]
public string SchemaName { get; set; }
Property Value
String
|
ServerName
Gets or sets the output destination server name.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="serverName")]
public string ServerName { get; set; }
Property Value
String
|
SubscriptionId
Gets or sets the output destination subscription id.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="subscriptionId")]
public Nullable<Guid> SubscriptionId { get; set; }
Property Value
Nullable<Guid>
|
TableName
Gets or sets the output destination table.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="tableName")]
public string TableName { get; set; }
Property Value
String
|
Type
Gets or sets the output destination type. Possible values include: 'SqlDatabase'
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="type")]
public string Type { get; set; }
Property Value
String
|
Methods
Validate()
Validate the object.
Declaration
public virtual void Validate ();
Exceptions
ValidationException
Thrown if validation fails |