Class: Azure::ContainerService::Mgmt::V2020_06_01::Models::PrivateLinkServiceConnectionState

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-06-01/generated/azure_mgmt_container_service/models/private_link_service_connection_state.rb

Overview

The state of a private link service connection.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#descriptionString

Returns The private link service connection description.

Returns:

  • (String)

    The private link service connection description.



21
22
23
# File 'lib/2020-06-01/generated/azure_mgmt_container_service/models/private_link_service_connection_state.rb', line 21

def description
  @description
end

#statusConnectionStatus

Possible values include: ‘Pending’, ‘Approved’, ‘Rejected’, ‘Disconnected’

Returns:



18
19
20
# File 'lib/2020-06-01/generated/azure_mgmt_container_service/models/private_link_service_connection_state.rb', line 18

def status
  @status
end

Class Method Details

.mapperObject

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



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/2020-06-01/generated/azure_mgmt_container_service/models/private_link_service_connection_state.rb', line 28

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'PrivateLinkServiceConnectionState',
    type: {
      name: 'Composite',
      class_name: 'PrivateLinkServiceConnectionState',
      model_properties: {
        status: {
          client_side_validation: true,
          required: false,
          serialized_name: 'status',
          type: {
            name: 'String'
          }
        },
        description: {
          client_side_validation: true,
          required: false,
          serialized_name: 'description',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end