Class: Azure::Cosmosdb::Mgmt::V2020_04_01::Models::PrivateLinkServiceConnectionStateProperty

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-04-01/generated/azure_mgmt_cosmosdb/models/private_link_service_connection_state_property.rb

Overview

Connection State of the Private Endpoint Connection.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#actions_requiredString

(approve/ reject/ disconnect)

Returns:

  • (String)

    Any action that is required beyond basic workflow



20
21
22
# File 'lib/2020-04-01/generated/azure_mgmt_cosmosdb/models/private_link_service_connection_state_property.rb', line 20

def actions_required
  @actions_required
end

#statusString

Returns The private link service connection status.

Returns:

  • (String)

    The private link service connection status.



16
17
18
# File 'lib/2020-04-01/generated/azure_mgmt_cosmosdb/models/private_link_service_connection_state_property.rb', line 16

def status
  @status
end

Class Method Details

.mapperObject

Mapper for PrivateLinkServiceConnectionStateProperty 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
57
# File 'lib/2020-04-01/generated/azure_mgmt_cosmosdb/models/private_link_service_connection_state_property.rb', line 28

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