Class: Azure::DataFactory::Mgmt::V2018_06_01::Models::SsisEnvironment
- Inherits:
-
SsisObjectMetadata
- Object
- SsisObjectMetadata
- Azure::DataFactory::Mgmt::V2018_06_01::Models::SsisEnvironment
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01/generated/azure_mgmt_data_factory/models/ssis_environment.rb
Overview
Ssis environment.
Instance Attribute Summary collapse
-
#folder_id ⇒ Integer
Folder id which contains environment.
-
#type ⇒ Object
Returns the value of attribute type.
-
#variables ⇒ Array<SsisVariable>
Variable in environment.
Attributes inherited from SsisObjectMetadata
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SsisEnvironment class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ SsisEnvironment
constructor
A new instance of SsisEnvironment.
Constructor Details
#initialize ⇒ SsisEnvironment
Returns a new instance of SsisEnvironment.
16 17 18 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/ssis_environment.rb', line 16 def initialize @type = "Environment" end |
Instance Attribute Details
#folder_id ⇒ Integer
Returns Folder id which contains environment.
23 24 25 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/ssis_environment.rb', line 23 def folder_id @folder_id end |
#type ⇒ Object
Returns the value of attribute type.
20 21 22 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/ssis_environment.rb', line 20 def type @type end |
#variables ⇒ Array<SsisVariable>
Returns Variable in environment.
26 27 28 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/ssis_environment.rb', line 26 def variables @variables end |
Class Method Details
.mapper ⇒ Object
Mapper for SsisEnvironment class as Ruby Hash. This will be used for serialization/deserialization.
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/ssis_environment.rb', line 33 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Environment', type: { name: 'Composite', class_name: 'SsisEnvironment', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'Number' } }, name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, description: { client_side_validation: true, required: false, serialized_name: 'description', type: { name: 'String' } }, type: { client_side_validation: true, required: true, serialized_name: 'type', type: { name: 'String' } }, folder_id: { client_side_validation: true, required: false, serialized_name: 'folderId', type: { name: 'Number' } }, variables: { client_side_validation: true, required: false, serialized_name: 'variables', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'SsisVariableElementType', type: { name: 'Composite', class_name: 'SsisVariable' } } } } } } } end |