Show / Hide Table of Contents

    Class JobExecutionTarget

    The target that a job execution is executed on.

    Inheritance
    Object
    JobExecutionTarget
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Sql.dll
    Syntax
    public class JobExecutionTarget

    Constructors

    JobExecutionTarget()

    Initializes a new instance of the JobExecutionTarget class.

    Declaration
    public JobExecutionTarget ();

    JobExecutionTarget(String, String, String)

    Initializes a new instance of the JobExecutionTarget class.

    Declaration
    public JobExecutionTarget (string type = null, string serverName = null, string databaseName = null);
    Parameters
    String type

    The type of the target. Possible values include: 'TargetGroup', 'SqlDatabase', 'SqlElasticPool', 'SqlShardMap', 'SqlServer'

    String serverName

    The server name.

    String databaseName

    The database name.

    Properties

    DatabaseName

    Gets the database name.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="databaseName")]
    public string DatabaseName { get; }
    Property Value
    String

    ServerName

    Gets the server name.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="serverName")]
    public string ServerName { get; }
    Property Value
    String

    Type

    Gets the type of the target. Possible values include: 'TargetGroup', 'SqlDatabase', 'SqlElasticPool', 'SqlShardMap', 'SqlServer'

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="type")]
    public string Type { get; }
    Property Value
    String

    Back to top Azure SDK for Net