class Azure::Automation::Mgmt::V2015_10_31::Models::ContentLink

Definition of the content link.

Attributes

content_hash[RW]

@return [ContentHash] Gets or sets the hash.

uri[RW]

@return [String] Gets or sets the uri of the runbook content.

version[RW]

@return [String] Gets or sets the version of the content.

Private Class Methods

mapper() click to toggle source

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

# File lib/2015-10-31/generated/azure_mgmt_automation/models/content_link.rb, line 29
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ContentLink',
    type: {
      name: 'Composite',
      class_name: 'ContentLink',
      model_properties: {
        uri: {
          client_side_validation: true,
          required: false,
          serialized_name: 'uri',
          type: {
            name: 'String'
          }
        },
        content_hash: {
          client_side_validation: true,
          required: false,
          serialized_name: 'contentHash',
          type: {
            name: 'Composite',
            class_name: 'ContentHash'
          }
        },
        version: {
          client_side_validation: true,
          required: false,
          serialized_name: 'version',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end