Class: Azure::ApiManagement::Mgmt::V2018_06_01_preview::Models::SaveConfigurationParameter
- Inherits:
-
Object
- Object
- Azure::ApiManagement::Mgmt::V2018_06_01_preview::Models::SaveConfigurationParameter
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/save_configuration_parameter.rb
Overview
Parameters supplied to the Save Tenant Configuration operation.
Instance Attribute Summary collapse
-
#branch ⇒ String
current configuration snapshot.
-
#force ⇒ Boolean
is committed to the Git repository, even if the Git repository has newer changes that would be overwritten.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SaveConfigurationParameter class as Ruby Hash.
Instance Attribute Details
#branch ⇒ String
current configuration snapshot.
17 18 19 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/save_configuration_parameter.rb', line 17 def branch @branch end |
#force ⇒ Boolean
is committed to the Git repository, even if the Git repository has newer changes that would be overwritten.
22 23 24 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/save_configuration_parameter.rb', line 22 def force @force end |
Class Method Details
.mapper ⇒ Object
Mapper for SaveConfigurationParameter class as Ruby Hash. This will be used for serialization/deserialization.
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 57 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/save_configuration_parameter.rb', line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SaveConfigurationParameter', type: { name: 'Composite', class_name: 'SaveConfigurationParameter', 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 |