Class: Azure::ARM::SQL::Models::ElasticPoolEditionCapability
- Inherits:
-
Object
- Object
- Azure::ARM::SQL::Models::ElasticPoolEditionCapability
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_sql/models/elastic_pool_edition_capability.rb
Overview
The elastic pool edition capabilities.
Instance Attribute Summary collapse
-
#name ⇒ String
The elastic pool edition name.
-
#status ⇒ CapabilityStatus
Possible values include: ‘Visible’, ‘Available’, ‘Default’, ‘Disabled’.
-
#supported_elastic_pool_dtus ⇒ Array<ElasticPoolDtuCapability>
pool DTU levels for the edition.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ElasticPoolEditionCapability class as Ruby Hash.
Instance Attribute Details
#name ⇒ String
Returns The elastic pool edition name.
17 18 19 |
# File 'lib/generated/azure_mgmt_sql/models/elastic_pool_edition_capability.rb', line 17 def name @name end |
#status ⇒ CapabilityStatus
Possible values include: ‘Visible’, ‘Available’, ‘Default’, ‘Disabled’
21 22 23 |
# File 'lib/generated/azure_mgmt_sql/models/elastic_pool_edition_capability.rb', line 21 def status @status end |
#supported_elastic_pool_dtus ⇒ Array<ElasticPoolDtuCapability>
pool DTU levels for the edition.
25 26 27 |
# File 'lib/generated/azure_mgmt_sql/models/elastic_pool_edition_capability.rb', line 25 def supported_elastic_pool_dtus @supported_elastic_pool_dtus end |
Class Method Details
.mapper ⇒ Object
Mapper for ElasticPoolEditionCapability class as Ruby Hash. This will be used for serialization/deserialization.
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 72 73 74 75 76 |
# File 'lib/generated/azure_mgmt_sql/models/elastic_pool_edition_capability.rb', line 32 def self.mapper() { required: false, serialized_name: 'ElasticPoolEditionCapability', type: { name: 'Composite', class_name: 'ElasticPoolEditionCapability', model_properties: { name: { required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, status: { required: false, read_only: true, serialized_name: 'status', type: { name: 'Enum', module: 'CapabilityStatus' } }, supported_elastic_pool_dtus: { required: false, read_only: true, serialized_name: 'supportedElasticPoolDtus', type: { name: 'Sequence', element: { required: false, serialized_name: 'ElasticPoolDtuCapabilityElementType', type: { name: 'Composite', class_name: 'ElasticPoolDtuCapability' } } } } } } } end |