class Azure::ServiceFabric::V6_5_0_36::Models::ComposeDeploymentStatusInfo

Information about a Service Fabric compose deployment.

Attributes

application_name[RW]

@return [String] The name of the application, including the 'fabric:' URI scheme.

name[RW]

@return [String] The name of the deployment.

status[RW]

@return [ComposeDeploymentStatus] The status of the compose deployment. Possible values include: 'Invalid', 'Provisioning', 'Creating', 'Ready', 'Unprovisioning', 'Deleting', 'Failed', 'Upgrading'

status_details[RW]

@return [String] The status details of compose deployment including failure message.

Public Class Methods

mapper() click to toggle source

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

# File lib/6.5.0.36/generated/azure_service_fabric/models/compose_deployment_status_info.rb, line 36
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ComposeDeploymentStatusInfo',
    type: {
      name: 'Composite',
      class_name: 'ComposeDeploymentStatusInfo',
      model_properties: {
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'Name',
          type: {
            name: 'String'
          }
        },
        application_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ApplicationName',
          type: {
            name: 'String'
          }
        },
        status: {
          client_side_validation: true,
          required: false,
          serialized_name: 'Status',
          type: {
            name: 'String'
          }
        },
        status_details: {
          client_side_validation: true,
          required: false,
          serialized_name: 'StatusDetails',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end