class Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactInstallProperties

Properties of an artifact.

Attributes

artifact_id[RW]

@return [String] The artifact's identifier.

artifact_title[RW]

@return [String] The artifact's title.

deployment_status_message[RW]

@return [String] The status message from the deployment.

install_time[RW]

@return [DateTime] The time that the artifact starts to install on the virtual machine.

parameters[RW]

@return [Array<ArtifactParameterProperties>] The parameters of the artifact.

status[RW]

@return [String] The status of the artifact.

vm_extension_status_message[RW]

@return [String] The status message from the virtual machine extension.

Private Class Methods

mapper() click to toggle source

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

# File lib/2018-09-15/generated/azure_mgmt_devtestlabs/models/artifact_install_properties.rb, line 43
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ArtifactInstallProperties',
    type: {
      name: 'Composite',
      class_name: 'ArtifactInstallProperties',
      model_properties: {
        artifact_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'artifactId',
          type: {
            name: 'String'
          }
        },
        artifact_title: {
          client_side_validation: true,
          required: false,
          serialized_name: 'artifactTitle',
          type: {
            name: 'String'
          }
        },
        parameters: {
          client_side_validation: true,
          required: false,
          serialized_name: 'parameters',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ArtifactParameterPropertiesElementType',
                type: {
                  name: 'Composite',
                  class_name: 'ArtifactParameterProperties'
                }
            }
          }
        },
        status: {
          client_side_validation: true,
          required: false,
          serialized_name: 'status',
          type: {
            name: 'String'
          }
        },
        deployment_status_message: {
          client_side_validation: true,
          required: false,
          serialized_name: 'deploymentStatusMessage',
          type: {
            name: 'String'
          }
        },
        vm_extension_status_message: {
          client_side_validation: true,
          required: false,
          serialized_name: 'vmExtensionStatusMessage',
          type: {
            name: 'String'
          }
        },
        install_time: {
          client_side_validation: true,
          required: false,
          serialized_name: 'installTime',
          type: {
            name: 'DateTime'
          }
        }
      }
    }
  }
end