Class: Azure::ServiceFabric::V6_4_0_36::Models::ComposeDeploymentStatusInfo

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/6.4.0.36/generated/azure_service_fabric/models/compose_deployment_status_info.rb

Overview

Information about a Service Fabric compose deployment.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#application_nameString

URI scheme.

Returns:

  • (String)

    The name of the application, including the ‘fabric:’



20
21
22
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/compose_deployment_status_info.rb', line 20

def application_name
  @application_name
end

#nameString

Returns The name of the deployment.

Returns:

  • (String)

    The name of the deployment.



16
17
18
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/compose_deployment_status_info.rb', line 16

def name
  @name
end

#statusComposeDeploymentStatus

Possible values include: ‘Invalid’, ‘Provisioning’, ‘Creating’, ‘Ready’, ‘Unprovisioning’, ‘Deleting’, ‘Failed’, ‘Upgrading’

Returns:



25
26
27
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/compose_deployment_status_info.rb', line 25

def status
  @status
end

#status_detailsString

failure message.

Returns:

  • (String)

    The status details of compose deployment including



29
30
31
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/compose_deployment_status_info.rb', line 29

def status_details
  @status_details
end

Class Method Details

.mapperObject

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



36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# File 'lib/6.4.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