class Azure::Network::Mgmt::V2019_04_01::Models::ServiceTagsListResult

Response for the ListServiceTags API service call.

Attributes

change_number[RW]

@return [String] The iteration number.

cloud[RW]

@return [String] The name of the cloud.

id[RW]

@return [String] The ID of the cloud.

name[RW]

@return [String] The name of the cloud.

type[RW]

@return [String] The azure resource type.

values[RW]

@return [Array<ServiceTagInformation>] The list of service tag information resources.

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-04-01/generated/azure_mgmt_network/models/service_tags_list_result.rb, line 38
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ServiceTagsListResult',
    type: {
      name: 'Composite',
      class_name: 'ServiceTagsListResult',
      model_properties: {
        name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        change_number: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'changeNumber',
          type: {
            name: 'String'
          }
        },
        cloud: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'cloud',
          type: {
            name: 'String'
          }
        },
        values: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'values',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ServiceTagInformationElementType',
                type: {
                  name: 'Composite',
                  class_name: 'ServiceTagInformation'
                }
            }
          }
        }
      }
    }
  }
end