Class: Azure::ServiceFabric::V6_3_0_9::Models::UnprovisionFabricDescription
- Inherits:
-
Object
- Object
- Azure::ServiceFabric::V6_3_0_9::Models::UnprovisionFabricDescription
- Includes:
- MsRestAzure
- Defined in:
- lib/6.3.0.9/generated/azure_service_fabric/models/unprovision_fabric_description.rb
Overview
Describes the parameters for unprovisioning a cluster.
Instance Attribute Summary collapse
-
#code_version ⇒ String
The cluster code package version.
-
#config_version ⇒ String
The cluster manifest version.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for UnprovisionFabricDescription class as Ruby Hash.
Instance Attribute Details
#code_version ⇒ String
Returns The cluster code package version.
16 17 18 |
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/unprovision_fabric_description.rb', line 16 def code_version @code_version end |
#config_version ⇒ String
Returns The cluster manifest version.
19 20 21 |
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/unprovision_fabric_description.rb', line 19 def config_version @config_version end |
Class Method Details
.mapper ⇒ Object
Mapper for UnprovisionFabricDescription class as Ruby Hash. This will be used for serialization/deserialization.
26 27 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 |
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/unprovision_fabric_description.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'UnprovisionFabricDescription', type: { name: 'Composite', class_name: 'UnprovisionFabricDescription', model_properties: { code_version: { client_side_validation: true, required: false, serialized_name: 'CodeVersion', type: { name: 'String' } }, config_version: { client_side_validation: true, required: false, serialized_name: 'ConfigVersion', type: { name: 'String' } } } } } end |