class Azure::ServiceFabric::Mgmt::V2016_09_01::Models::ClusterVersionDetails

The detail of the ServiceFabric runtime version result

Attributes

code_version[RW]

@return [String] The ServiceFabric runtime version of the cluster

environment[RW]

@return [Enum] Cluster operating system. Possible values include: 'Windows', 'Linux'

support_expiry_utc[RW]

@return [String] The date of expiry of support of the version

Public Class Methods

mapper() click to toggle source

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

# File lib/2016-09-01/generated/azure_mgmt_service_fabric/models/cluster_version_details.rb, line 30
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ClusterVersionDetails',
    type: {
      name: 'Composite',
      class_name: 'ClusterVersionDetails',
      model_properties: {
        code_version: {
          client_side_validation: true,
          required: false,
          serialized_name: 'codeVersion',
          type: {
            name: 'String'
          }
        },
        support_expiry_utc: {
          client_side_validation: true,
          required: false,
          serialized_name: 'supportExpiryUtc',
          type: {
            name: 'String'
          }
        },
        environment: {
          client_side_validation: true,
          required: false,
          serialized_name: 'environment',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end