class Azure::Network::Mgmt::V2020_08_01::Models::PrivateDnsZoneGroup

Private dns zone group resource.

Attributes

etag[RW]

@return [String] A unique read-only string that changes whenever the resource is updated.

name[RW]

@return [String] Name of the resource that is unique within a resource group. This name can be used to access the resource.

private_dns_zone_configs[RW]

@return [Array<PrivateDnsZoneConfig>] A collection of private dns zone configurations of the private dns zone group.

provisioning_state[RW]

@return [ProvisioningState] The provisioning state of the private dns zone group resource. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'

Private Class Methods

mapper() click to toggle source

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

# File lib/2020-08-01/generated/azure_mgmt_network/models/private_dns_zone_group.rb, line 37
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'PrivateDnsZoneGroup',
    type: {
      name: 'Composite',
      class_name: 'PrivateDnsZoneGroup',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        etag: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        },
        provisioning_state: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.provisioningState',
          type: {
            name: 'String'
          }
        },
        private_dns_zone_configs: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.privateDnsZoneConfigs',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'PrivateDnsZoneConfigElementType',
                type: {
                  name: 'Composite',
                  class_name: 'PrivateDnsZoneConfig'
                }
            }
          }
        }
      }
    }
  }
end