class Azure::Network::Mgmt::V2019_08_01::Models::IpTag

Contains the IpTag associated with the object.

Attributes

ip_tag_type[RW]

@return [String] The IP tag type. Example: FirstPartyUsage.

tag[RW]

@return [String] The value of the IP tag associated with the public IP. Example: SQL.

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-08-01/generated/azure_mgmt_network/models/ip_tag.rb, line 27
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'IpTag',
    type: {
      name: 'Composite',
      class_name: 'IpTag',
      model_properties: {
        ip_tag_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ipTagType',
          type: {
            name: 'String'
          }
        },
        tag: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tag',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end