class Azure::Network::Mgmt::V2019_04_01::Models::IpTag

Contains the IpTag associated with the object.

Attributes

ip_tag_type[RW]

@return [String] Gets or sets the ipTag type: Example FirstPartyUsage.

tag[RW]

@return [String] Gets or sets value of the IpTag associated with the public IP. Example SQL, Storage etc.

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-04-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