Class: Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::SshPublicKey
- Inherits:
-
Object
- Object
- Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::SshPublicKey
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/ssh_public_key.rb
Overview
The SSH public key for the cluster nodes.
Instance Attribute Summary collapse
-
#certificate_data ⇒ String
The certificate for SSH.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SshPublicKey class as Ruby Hash.
Instance Attribute Details
#certificate_data ⇒ String
Returns The certificate for SSH.
16 17 18 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/ssh_public_key.rb', line 16 def certificate_data @certificate_data end |
Class Method Details
.mapper ⇒ Object
Mapper for SshPublicKey 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 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/ssh_public_key.rb', line 23 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SshPublicKey', type: { name: 'Composite', class_name: 'SshPublicKey', model_properties: { certificate_data: { client_side_validation: true, required: false, serialized_name: 'certificateData', type: { name: 'String' } } } } } end |