Class: Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::FactoryRepoUpdate
- Inherits:
-
Object
- Object
- Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::FactoryRepoUpdate
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/factory_repo_update.rb
Overview
Factory’s VSTS repo information.
Instance Attribute Summary collapse
-
#factory_resource_id ⇒ String
The factory resource id.
-
#resource_group_name ⇒ String
The resource group name.
-
#vsts_configuration ⇒ FactoryVSTSConfiguration
factory.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for FactoryRepoUpdate class as Ruby Hash.
Instance Attribute Details
#factory_resource_id ⇒ String
Returns The factory resource id.
16 17 18 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/factory_repo_update.rb', line 16 def factory_resource_id @factory_resource_id end |
#resource_group_name ⇒ String
Returns The resource group name.
19 20 21 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/factory_repo_update.rb', line 19 def resource_group_name @resource_group_name end |
#vsts_configuration ⇒ FactoryVSTSConfiguration
factory.
23 24 25 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/factory_repo_update.rb', line 23 def vsts_configuration @vsts_configuration end |
Class Method Details
.mapper ⇒ Object
Mapper for FactoryRepoUpdate class as Ruby Hash. This will be used for serialization/deserialization.
30 31 32 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 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/factory_repo_update.rb', line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'FactoryRepoUpdate', type: { name: 'Composite', class_name: 'FactoryRepoUpdate', model_properties: { factory_resource_id: { client_side_validation: true, required: false, serialized_name: 'factoryResourceId', type: { name: 'String' } }, resource_group_name: { client_side_validation: true, required: false, serialized_name: 'resourceGroupName', type: { name: 'String' } }, vsts_configuration: { client_side_validation: true, required: false, serialized_name: 'vstsConfiguration', type: { name: 'Composite', class_name: 'FactoryVSTSConfiguration' } } } } } end |