class Azure::Compute::Mgmt::V2018_06_01::Models::VirtualMachineScaleSetIpTag

Contains the IP tag associated with the public IP address.

Attributes

ip_tag_type[RW]

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

tag[RW]

@return [String] IP tag associated with the public IP. Example: SQL, Storage etc.

Public Class Methods

mapper() click to toggle source

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

# File lib/2018-06-01/generated/azure_mgmt_compute/models/virtual_machine_scale_set_ip_tag.rb, line 27
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'VirtualMachineScaleSetIpTag',
    type: {
      name: 'Composite',
      class_name: 'VirtualMachineScaleSetIpTag',
      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