class Azure::Compute::Mgmt::V2020_09_30_preview::Models::UserArtifactManage

Model object.

Attributes

install[RW]

@return [String] Required. The path and arguments to install the gallery application. This is limited to 4096 characters.

remove[RW]

@return [String] Required. The path and arguments to remove the gallery application. This is limited to 4096 characters.

update[RW]

@return [String] Optional. The path and arguments to update the gallery application. If not present, then update operation will invoke remove command on the previous version and install command on the current version of the gallery application. This is limited to 4096 characters.

Public Class Methods

mapper() click to toggle source

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

# File lib/2020-09-30-preview/generated/azure_mgmt_compute/models/user_artifact_manage.rb, line 35
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'UserArtifactManage',
    type: {
      name: 'Composite',
      class_name: 'UserArtifactManage',
      model_properties: {
        install: {
          client_side_validation: true,
          required: true,
          serialized_name: 'install',
          type: {
            name: 'String'
          }
        },
        remove: {
          client_side_validation: true,
          required: true,
          serialized_name: 'remove',
          type: {
            name: 'String'
          }
        },
        update: {
          client_side_validation: true,
          required: false,
          serialized_name: 'update',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end