Class: Azure::ARM::CognitiveServices::Models::CognitiveServicesResourceAndSku
- Inherits:
-
Object
- Object
- Azure::ARM::CognitiveServices::Models::CognitiveServicesResourceAndSku
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_cognitive_services/models/cognitive_services_resource_and_sku.rb
Overview
Cognitive Services resource type and SKU.
Instance Attribute Summary collapse
-
#resource_type ⇒ String
Resource Namespace and Type.
-
#sku ⇒ Sku
The SKU of Cognitive Services account.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for CognitiveServicesResourceAndSku class as Ruby Hash.
Instance Attribute Details
#resource_type ⇒ String
Returns Resource Namespace and Type.
17 18 19 |
# File 'lib/generated/azure_mgmt_cognitive_services/models/cognitive_services_resource_and_sku.rb', line 17 def resource_type @resource_type end |
#sku ⇒ Sku
Returns The SKU of Cognitive Services account.
20 21 22 |
# File 'lib/generated/azure_mgmt_cognitive_services/models/cognitive_services_resource_and_sku.rb', line 20 def sku @sku end |
Class Method Details
.mapper ⇒ Object
Mapper for CognitiveServicesResourceAndSku 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 |
# File 'lib/generated/azure_mgmt_cognitive_services/models/cognitive_services_resource_and_sku.rb', line 27 def self.mapper() { required: false, serialized_name: 'CognitiveServicesResourceAndSku', type: { name: 'Composite', class_name: 'CognitiveServicesResourceAndSku', model_properties: { resource_type: { required: false, serialized_name: 'resourceType', type: { name: 'String' } }, sku: { required: false, serialized_name: 'sku', type: { name: 'Composite', class_name: 'Sku' } } } } } end |