Class: Azure::CustomerInsights::Mgmt::V2017_04_26::Models::ResourceSetDescription
- Inherits:
-
Object
- Object
- Azure::CustomerInsights::Mgmt::V2017_04_26::Models::ResourceSetDescription
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-04-26/generated/azure_mgmt_customer_insights/models/resource_set_description.rb
Overview
The resource set description.
Instance Attribute Summary collapse
-
#elements ⇒ Array<String>
The elements included in the set.
-
#exceptions ⇒ Array<String>
in case elements contains ‘*’ indicating ‘all’.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ResourceSetDescription class as Ruby Hash.
Instance Attribute Details
#elements ⇒ Array<String>
Returns The elements included in the set.
16 17 18 |
# File 'lib/2017-04-26/generated/azure_mgmt_customer_insights/models/resource_set_description.rb', line 16 def elements @elements end |
#exceptions ⇒ Array<String>
in case elements contains ‘*’ indicating ‘all’.
20 21 22 |
# File 'lib/2017-04-26/generated/azure_mgmt_customer_insights/models/resource_set_description.rb', line 20 def exceptions @exceptions end |
Class Method Details
.mapper ⇒ Object
Mapper for ResourceSetDescription class as Ruby Hash. This will be used for serialization/deserialization.
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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/2017-04-26/generated/azure_mgmt_customer_insights/models/resource_set_description.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ResourceSetDescription', type: { name: 'Composite', class_name: 'ResourceSetDescription', model_properties: { elements: { client_side_validation: true, required: false, serialized_name: 'elements', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, exceptions: { client_side_validation: true, required: false, serialized_name: 'exceptions', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end |