class Azure::Synapse::Mgmt::V2019_06_01_preview::Models::EnvironmentVariableSetup
The custom setup of setting environment variable.
Attributes
type[RW]
variable_name[RW]
@return [String] The name of the environment variable.
variable_value[RW]
@return [String] The value of the environment variable.
Private Class Methods
mapper()
click to toggle source
Mapper for EnvironmentVariableSetup
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/environment_variable_setup.rb, line 33 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'EnvironmentVariableSetup', type: { name: 'Composite', class_name: 'EnvironmentVariableSetup', model_properties: { type: { client_side_validation: true, required: true, serialized_name: 'type', type: { name: 'String' } }, variable_name: { client_side_validation: true, required: true, serialized_name: 'typeProperties.variableName', type: { name: 'String' } }, variable_value: { client_side_validation: true, required: true, serialized_name: 'typeProperties.variableValue', type: { name: 'String' } } } } } end
new()
click to toggle source
# File lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/environment_variable_setup.rb, line 16 def initialize @type = "EnvironmentVariableSetup" end