class Azure::Web::Mgmt::V2018_02_01::Models::MSDeployStatus
MSDeploy
ARM response
Attributes
complete[RW]
@return [Boolean] Whether the deployment operation has completed
deployer[RW]
@return [String] Username of deployer
end_time[RW]
@return [DateTime] End time of deploy operation
provisioning_state[RW]
@return [MSDeployProvisioningState] Provisioning state. Possible values include: 'accepted', 'running', 'succeeded', 'failed', 'canceled'
start_time[RW]
@return [DateTime] Start time of deploy operation
Private Class Methods
mapper()
click to toggle source
Mapper for MSDeployStatus
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-02-01/generated/azure_mgmt_web/models/msdeploy_status.rb, line 36 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'MSDeployStatus', type: { name: 'Composite', class_name: 'MSDeployStatus', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, kind: { client_side_validation: true, required: false, serialized_name: 'kind', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, deployer: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.deployer', type: { name: 'String' } }, provisioning_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.provisioningState', type: { name: 'Enum', module: 'MSDeployProvisioningState' } }, start_time: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.startTime', type: { name: 'DateTime' } }, end_time: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.endTime', type: { name: 'DateTime' } }, complete: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.complete', type: { name: 'Boolean' } } } } } end