Class: Azure::ServiceFabric::V6_4_0_36::Models::ComposeDeploymentStatusInfo
- Inherits:
-
Object
- Object
- Azure::ServiceFabric::V6_4_0_36::Models::ComposeDeploymentStatusInfo
- 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
-
#application_name ⇒ String
URI scheme.
-
#name ⇒ String
The name of the deployment.
-
#status ⇒ ComposeDeploymentStatus
Possible values include: ‘Invalid’, ‘Provisioning’, ‘Creating’, ‘Ready’, ‘Unprovisioning’, ‘Deleting’, ‘Failed’, ‘Upgrading’.
-
#status_details ⇒ String
failure message.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ComposeDeploymentStatusInfo class as Ruby Hash.
Instance Attribute Details
#application_name ⇒ String
URI scheme.
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 |
#name ⇒ String
Returns 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 |
#status ⇒ ComposeDeploymentStatus
Possible values include: ‘Invalid’, ‘Provisioning’, ‘Creating’, ‘Ready’, ‘Unprovisioning’, ‘Deleting’, ‘Failed’, ‘Upgrading’
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_details ⇒ String
failure message.
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
.mapper ⇒ Object
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 |