Class: Azure::RecoveryServicesBackup::Mgmt::V2020_02_02::Models::PrivateLinkServiceConnectionState
- Inherits:
-
Object
- Object
- Azure::RecoveryServicesBackup::Mgmt::V2020_02_02::Models::PrivateLinkServiceConnectionState
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-02-02/generated/azure_mgmt_recovery_services_backup/models/private_link_service_connection_state.rb
Overview
Private Link Service Connection State
Instance Attribute Summary collapse
-
#action_required ⇒ String
Gets or sets actions required.
-
#description ⇒ String
Gets or sets description.
-
#status ⇒ PrivateEndpointConnectionStatus
Possible values include: ‘Pending’, ‘Approved’, ‘Rejected’, ‘Disconnected’.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for PrivateLinkServiceConnectionState class as Ruby Hash.
Instance Attribute Details
#action_required ⇒ String
Returns Gets or sets actions required.
24 25 26 |
# File 'lib/2020-02-02/generated/azure_mgmt_recovery_services_backup/models/private_link_service_connection_state.rb', line 24 def action_required @action_required end |
#description ⇒ String
Returns Gets or sets description.
21 22 23 |
# File 'lib/2020-02-02/generated/azure_mgmt_recovery_services_backup/models/private_link_service_connection_state.rb', line 21 def description @description end |
#status ⇒ PrivateEndpointConnectionStatus
Possible values include: ‘Pending’, ‘Approved’, ‘Rejected’, ‘Disconnected’
18 19 20 |
# File 'lib/2020-02-02/generated/azure_mgmt_recovery_services_backup/models/private_link_service_connection_state.rb', line 18 def status @status end |
Class Method Details
.mapper ⇒ Object
Mapper for PrivateLinkServiceConnectionState class as Ruby Hash. This will be used for serialization/deserialization.
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 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/2020-02-02/generated/azure_mgmt_recovery_services_backup/models/private_link_service_connection_state.rb', line 31 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 |