Class: Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::SshProfile
- Inherits:
-
Object
- Object
- Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::SshProfile
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/ssh_profile.rb
Overview
The list of SSH public keys.
Instance Attribute Summary collapse
-
#public_keys ⇒ Array<SshPublicKey>
The list of SSH public keys.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SshProfile class as Ruby Hash.
Instance Attribute Details
#public_keys ⇒ Array<SshPublicKey>
Returns The list of SSH public keys.
16 17 18 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/ssh_profile.rb', line 16 def public_keys @public_keys end |
Class Method Details
.mapper ⇒ Object
Mapper for SshProfile class as Ruby Hash. This will be used for serialization/deserialization.
23 24 25 26 27 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 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/ssh_profile.rb', line 23 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SshProfile', type: { name: 'Composite', class_name: 'SshProfile', model_properties: { public_keys: { client_side_validation: true, required: false, serialized_name: 'publicKeys', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'SshPublicKeyElementType', type: { name: 'Composite', class_name: 'SshPublicKey' } } } } } } } end |