class Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepOutput

The output configuration of a job step.

Attributes

credential[RW]

@return [String] The resource ID of the credential to use to connect to the output destination.

database_name[RW]

@return [String] The output destination database.

resource_group_name[RW]

@return [String] The output destination resource group.

schema_name[RW]

@return [String] The output destination schema. Default value: 'dbo' .

server_name[RW]

@return [String] The output destination server name.

subscription_id[RW]

@return The output destination subscription id.

table_name[RW]

@return [String] The output destination table.

type[RW]

@return [JobStepOutputType] The output destination type. Possible values include: 'SqlDatabase'. Default value: 'SqlDatabase' .

Private Class Methods

mapper() click to toggle source

Mapper for JobStepOutput class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2017-03-01-preview/generated/azure_mgmt_sql/models/job_step_output.rb, line 46
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'JobStepOutput',
    type: {
      name: 'Composite',
      class_name: 'JobStepOutput',
      model_properties: {
        type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'type',
          default_value: 'SqlDatabase',
          type: {
            name: 'String'
          }
        },
        subscription_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'subscriptionId',
          type: {
            name: 'String'
          }
        },
        resource_group_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'resourceGroupName',
          type: {
            name: 'String'
          }
        },
        server_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'serverName',
          type: {
            name: 'String'
          }
        },
        database_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'databaseName',
          type: {
            name: 'String'
          }
        },
        schema_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'schemaName',
          default_value: 'dbo',
          type: {
            name: 'String'
          }
        },
        table_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'tableName',
          type: {
            name: 'String'
          }
        },
        credential: {
          client_side_validation: true,
          required: true,
          serialized_name: 'credential',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end