Class: Azure::PowerBiDedicated::Mgmt::V2017_10_01::Models::DedicatedCapacity
- Inherits:
-
Resource
- Object
- Resource
- Azure::PowerBiDedicated::Mgmt::V2017_10_01::Models::DedicatedCapacity
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-10-01/generated/azure_mgmt_powerbi_dedicated/models/dedicated_capacity.rb
Overview
Represents an instance of a Dedicated Capacity resource.
Instance Attribute Summary collapse
-
#administration ⇒ DedicatedCapacityAdministrators
capacity administrators.
-
#provisioning_state ⇒ ProvisioningState
Dedicated resource.
-
#state ⇒ State
state is to indicate more states outside of resource provisioning.
Attributes inherited from Resource
#id, #location, #name, #sku, #tags, #type
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DedicatedCapacity class as Ruby Hash.
Methods inherited from Resource
Instance Attribute Details
#administration ⇒ DedicatedCapacityAdministrators
capacity administrators
17 18 19 |
# File 'lib/2017-10-01/generated/azure_mgmt_powerbi_dedicated/models/dedicated_capacity.rb', line 17 def administration @administration end |
#provisioning_state ⇒ ProvisioningState
Dedicated resource. The provisioningState is to indicate states for resource provisioning. Possible values include: ‘Deleting’, ‘Succeeded’, ‘Failed’, ‘Paused’, ‘Suspended’, ‘Provisioning’, ‘Updating’, ‘Suspending’, ‘Pausing’, ‘Resuming’, ‘Preparing’, ‘Scaling’
31 32 33 |
# File 'lib/2017-10-01/generated/azure_mgmt_powerbi_dedicated/models/dedicated_capacity.rb', line 31 def provisioning_state @provisioning_state end |
#state ⇒ State
state is to indicate more states outside of resource provisioning. Possible values include: ‘Deleting’, ‘Succeeded’, ‘Failed’, ‘Paused’, ‘Suspended’, ‘Provisioning’, ‘Updating’, ‘Suspending’, ‘Pausing’, ‘Resuming’, ‘Preparing’, ‘Scaling’
24 25 26 |
# File 'lib/2017-10-01/generated/azure_mgmt_powerbi_dedicated/models/dedicated_capacity.rb', line 24 def state @state end |
Class Method Details
.mapper ⇒ Object
Mapper for DedicatedCapacity class as Ruby Hash. This will be used for serialization/deserialization.
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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
# File 'lib/2017-10-01/generated/azure_mgmt_powerbi_dedicated/models/dedicated_capacity.rb', line 38 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DedicatedCapacity', type: { name: 'Composite', class_name: 'DedicatedCapacity', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, location: { client_side_validation: true, required: true, serialized_name: 'location', type: { name: 'String' } }, sku: { client_side_validation: true, required: true, serialized_name: 'sku', type: { name: 'Composite', class_name: 'ResourceSku' } }, tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, administration: { client_side_validation: true, required: false, serialized_name: 'properties.administration', type: { name: 'Composite', class_name: 'DedicatedCapacityAdministrators' } }, state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.state', type: { name: 'String' } }, provisioning_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.provisioningState', type: { name: 'String' } } } } } end |