Class: Azure::Mysql::Mgmt::V2018_06_01::Models::PrivateLinkServiceConnectionStateProperty
- Inherits:
-
Object
- Object
- Azure::Mysql::Mgmt::V2018_06_01::Models::PrivateLinkServiceConnectionStateProperty
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01/generated/azure_mgmt_mysql/models/private_link_service_connection_state_property.rb
Overview
Model object.
Instance Attribute Summary collapse
-
#actions_required ⇒ String
connection.
-
#description ⇒ String
The private link service connection description.
-
#status ⇒ String
The private link service connection status.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for PrivateLinkServiceConnectionStateProperty class as Ruby Hash.
Instance Attribute Details
#actions_required ⇒ String
connection.
24 25 26 |
# File 'lib/2018-06-01/generated/azure_mgmt_mysql/models/private_link_service_connection_state_property.rb', line 24 def actions_required @actions_required end |
#description ⇒ String
Returns The private link service connection description.
20 21 22 |
# File 'lib/2018-06-01/generated/azure_mgmt_mysql/models/private_link_service_connection_state_property.rb', line 20 def description @description end |
#status ⇒ String
Returns The private link service connection status.
17 18 19 |
# File 'lib/2018-06-01/generated/azure_mgmt_mysql/models/private_link_service_connection_state_property.rb', line 17 def status @status end |
Class Method Details
.mapper ⇒ Object
Mapper for PrivateLinkServiceConnectionStateProperty class as Ruby Hash. This will be used for serialization/deserialization.
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 68 69 |
# File 'lib/2018-06-01/generated/azure_mgmt_mysql/models/private_link_service_connection_state_property.rb', line 32 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: true, serialized_name: 'status', type: { name: 'String' } }, description: { client_side_validation: true, required: true, serialized_name: 'description', type: { name: 'String' } }, actions_required: { client_side_validation: true, required: false, read_only: true, serialized_name: 'actionsRequired', type: { name: 'String' } } } } } end |