class Azure::KeyVault::Mgmt::V2019_09_01::Models::PrivateLinkServiceConnectionState

An object that represents the approval state of the private link connection.

Attributes

action_required[RW]

@return [String] A message indicating if changes on the service provider require any updates on the consumer.

description[RW]

@return [String] The reason for approval or rejection.

status[RW]

@return [PrivateEndpointServiceConnectionStatus] Indicates whether the connection has been approved, rejected or removed by the key vault owner. Possible values include: 'Pending', 'Approved', 'Rejected', 'Disconnected'

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-09-01/generated/azure_mgmt_key_vault/models/private_link_service_connection_state.rb, line 34
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'
          }
        },
        action_required: {
          client_side_validation: true,
          required: false,
          serialized_name: 'actionRequired',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end