class Azure::ServiceFabric::V6_3_0_9::Models::UnprovisionFabricDescription

Describes the parameters for unprovisioning a cluster.

Attributes

code_version[RW]

@return [String] The cluster code package version.

config_version[RW]

@return [String] The cluster manifest version.

Public Class Methods

mapper() click to toggle source

Mapper for UnprovisionFabricDescription class as Ruby Hash. This will be used for serialization/deserialization.

# 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