Class: Azure::Signalr::Mgmt::V2018_10_01::Models::Dimension
- Inherits:
-
Object
- Object
- Azure::Signalr::Mgmt::V2018_10_01::Models::Dimension
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-10-01/generated/azure_mgmt_signalr/models/dimension.rb
Overview
Specifications of the Dimension of metrics.
Instance Attribute Summary collapse
-
#display_name ⇒ String
Localized friendly display name of the dimension.
-
#internal_name ⇒ String
Name of the dimension as it appears in MDM.
-
#name ⇒ String
The public facing name of the dimension.
-
#to_be_exported_for_shoebox ⇒ Boolean
should be included for the shoebox export scenario.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Dimension class as Ruby Hash.
Instance Attribute Details
#display_name ⇒ String
Returns Localized friendly display name of the dimension.
19 20 21 |
# File 'lib/2018-10-01/generated/azure_mgmt_signalr/models/dimension.rb', line 19 def display_name @display_name end |
#internal_name ⇒ String
Returns Name of the dimension as it appears in MDM.
22 23 24 |
# File 'lib/2018-10-01/generated/azure_mgmt_signalr/models/dimension.rb', line 22 def internal_name @internal_name end |
#name ⇒ String
Returns The public facing name of the dimension.
16 17 18 |
# File 'lib/2018-10-01/generated/azure_mgmt_signalr/models/dimension.rb', line 16 def name @name end |
#to_be_exported_for_shoebox ⇒ Boolean
should be included for the shoebox export scenario.
26 27 28 |
# File 'lib/2018-10-01/generated/azure_mgmt_signalr/models/dimension.rb', line 26 def to_be_exported_for_shoebox @to_be_exported_for_shoebox end |
Class Method Details
.mapper ⇒ Object
Mapper for Dimension class as Ruby Hash. This will be used for serialization/deserialization.
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 70 71 72 73 74 75 76 77 |
# File 'lib/2018-10-01/generated/azure_mgmt_signalr/models/dimension.rb', line 33 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Dimension', type: { name: 'Composite', class_name: 'Dimension', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, display_name: { client_side_validation: true, required: false, serialized_name: 'displayName', type: { name: 'String' } }, internal_name: { client_side_validation: true, required: false, serialized_name: 'internalName', type: { name: 'String' } }, to_be_exported_for_shoebox: { client_side_validation: true, required: false, serialized_name: 'toBeExportedForShoebox', type: { name: 'Boolean' } } } } } end |