Class: Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Extension
- Inherits:
-
Object
- Object
- Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::Extension
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/extension.rb
Overview
Cluster monitoring extensions.
Instance Attribute Summary collapse
-
#primary_key ⇒ String
The certificate for the cluster monitoring extensions.
-
#workspace_id ⇒ String
The workspace ID for the cluster monitoring extension.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Extension class as Ruby Hash.
Instance Attribute Details
#primary_key ⇒ String
Returns The certificate for the cluster monitoring extensions.
19 20 21 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/extension.rb', line 19 def primary_key @primary_key end |
#workspace_id ⇒ String
Returns The workspace ID for the cluster monitoring extension.
16 17 18 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/extension.rb', line 16 def workspace_id @workspace_id end |
Class Method Details
.mapper ⇒ Object
Mapper for Extension class as Ruby Hash. This will be used for serialization/deserialization.
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 53 54 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/extension.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Extension', type: { name: 'Composite', class_name: 'Extension', model_properties: { workspace_id: { client_side_validation: true, required: false, serialized_name: 'workspaceId', type: { name: 'String' } }, primary_key: { client_side_validation: true, required: false, serialized_name: 'primaryKey', type: { name: 'String' } } } } } end |