class Azure::Network::Mgmt::V2019_07_01::Models::PrivateLinkService

Private link service resource.

Attributes

alias_property[RW]

@return [String] The alias of the private link service.

auto_approval[RW]

@return [PrivateLinkServicePropertiesAutoApproval] The auto-approval list of the private link service.

etag[RW]

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

fqdns[RW]

@return [Array<String>] The list of Fqdn.

ip_configurations[RW]

@return [Array<PrivateLinkServiceIpConfiguration>] An array of private link service IP configurations.

load_balancer_frontend_ip_configurations[RW]

@return [Array<FrontendIPConfiguration>] An array of references to the load balancer IP configurations.

network_interfaces[RW]

@return [Array<NetworkInterface>] An array of references to the network interfaces created for this private link service.

private_endpoint_connections[RW]

@return [Array<PrivateEndpointConnection>] An array of list about connections to the private endpoint.

provisioning_state[RW]

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

visibility[RW]

@return [PrivateLinkServicePropertiesVisibility] The visibility list of the private link service.

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-07-01/generated/azure_mgmt_network/models/private_link_service.rb, line 59
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'PrivateLinkService',
    type: {
      name: 'Composite',
      class_name: 'PrivateLinkService',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        location: {
          client_side_validation: true,
          required: false,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        },
        tags: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        load_balancer_frontend_ip_configurations: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.loadBalancerFrontendIpConfigurations',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'FrontendIPConfigurationElementType',
                type: {
                  name: 'Composite',
                  class_name: 'FrontendIPConfiguration'
                }
            }
          }
        },
        ip_configurations: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.ipConfigurations',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'PrivateLinkServiceIpConfigurationElementType',
                type: {
                  name: 'Composite',
                  class_name: 'PrivateLinkServiceIpConfiguration'
                }
            }
          }
        },
        network_interfaces: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.networkInterfaces',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'NetworkInterfaceElementType',
                type: {
                  name: 'Composite',
                  class_name: 'NetworkInterface'
                }
            }
          }
        },
        provisioning_state: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.provisioningState',
          type: {
            name: 'String'
          }
        },
        private_endpoint_connections: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.privateEndpointConnections',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'PrivateEndpointConnectionElementType',
                type: {
                  name: 'Composite',
                  class_name: 'PrivateEndpointConnection'
                }
            }
          }
        },
        visibility: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.visibility',
          type: {
            name: 'Composite',
            class_name: 'PrivateLinkServicePropertiesVisibility'
          }
        },
        auto_approval: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.autoApproval',
          type: {
            name: 'Composite',
            class_name: 'PrivateLinkServicePropertiesAutoApproval'
          }
        },
        fqdns: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.fqdns',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        alias_property: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.alias',
          type: {
            name: 'String'
          }
        },
        etag: {
          client_side_validation: true,
          required: false,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end