class Azure::Network::Mgmt::V2019_11_01::Models::AvailablePrivateEndpointType

The information of an AvailablePrivateEndpointType.

Attributes

id[RW]

@return [String] A unique identifier of the AvailablePrivateEndpoint Type resource.

name[RW]

@return [String] The name of the service and resource.

resource_name[RW]

@return [String] The name of the service and resource.

type[RW]

@return [String] Resource type.

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-11-01/generated/azure_mgmt_network/models/available_private_endpoint_type.rb, line 33
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AvailablePrivateEndpointType',
    type: {
      name: 'Composite',
      class_name: 'AvailablePrivateEndpointType',
      model_properties: {
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        resource_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'resourceName',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end