Class: Azure::ARM::Network::Models::ConnectionSharedKey
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::ConnectionSharedKey
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_network/models/connection_shared_key.rb
Overview
Response for GetConnectionSharedKey API service call
Instance Attribute Summary collapse
-
#value ⇒ String
The virtual network connection shared key value.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ConnectionSharedKey class as Ruby Hash.
Instance Attribute Details
#value ⇒ String
Returns The virtual network connection shared key value.
17 18 19 |
# File 'lib/generated/azure_mgmt_network/models/connection_shared_key.rb', line 17 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for ConnectionSharedKey class as Ruby Hash. This will be used for serialization/deserialization.
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/generated/azure_mgmt_network/models/connection_shared_key.rb', line 24 def self.mapper() { required: false, serialized_name: 'ConnectionSharedKey', type: { name: 'Composite', class_name: 'ConnectionSharedKey', model_properties: { value: { required: true, serialized_name: 'value', type: { name: 'String' } } } } } end |