Class: Azure::ApiManagement::Mgmt::V2016_07_07::Models::DeployConfigurationParameters
- Inherits:
-
Object
- Object
- Azure::ApiManagement::Mgmt::V2016_07_07::Models::DeployConfigurationParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-07-07/generated/azure_mgmt_api_management/models/deploy_configuration_parameters.rb
Overview
Parameters supplied to the Deploy Configuration operation.
Instance Attribute Summary collapse
-
#branch ⇒ String
configuration is to be deployed to the configuration database.
-
#force ⇒ Boolean
products that are deleted in this update.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DeployConfigurationParameters class as Ruby Hash.
Instance Attribute Details
#branch ⇒ String
configuration is to be deployed to the configuration database.
17 18 19 |
# File 'lib/2016-07-07/generated/azure_mgmt_api_management/models/deploy_configuration_parameters.rb', line 17 def branch @branch end |
#force ⇒ Boolean
products that are deleted in this update.
21 22 23 |
# File 'lib/2016-07-07/generated/azure_mgmt_api_management/models/deploy_configuration_parameters.rb', line 21 def force @force end |
Class Method Details
.mapper ⇒ Object
Mapper for DeployConfigurationParameters class as Ruby Hash. This will be used for serialization/deserialization.
28 29 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 |
# File 'lib/2016-07-07/generated/azure_mgmt_api_management/models/deploy_configuration_parameters.rb', line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DeployConfigurationParameters', type: { name: 'Composite', class_name: 'DeployConfigurationParameters', model_properties: { branch: { client_side_validation: true, required: true, serialized_name: 'branch', type: { name: 'String' } }, force: { client_side_validation: true, required: false, serialized_name: 'force', type: { name: 'Boolean' } } } } } end |