Class: Azure::ResourcesManagement::Mgmt::V2018_03_01_preview::Models::OperationResults
- Inherits:
-
Object
- Object
- Azure::ResourcesManagement::Mgmt::V2018_03_01_preview::Models::OperationResults
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-03-01-preview/generated/azure_mgmt_resources_management/models/operation_results.rb
Overview
The results of an asynchronous operation.
Instance Attribute Summary collapse
-
#id ⇒ String
example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000.
-
#name ⇒ String
00000000-0000-0000-0000-000000000000.
-
#provisioning_state ⇒ Enum
Provisioning State.
-
#type ⇒ String
/providers/Microsoft.Management/managementGroups.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for OperationResults class as Ruby Hash.
Instance Attribute Details
#id ⇒ String
example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000
18 19 20 |
# File 'lib/2018-03-01-preview/generated/azure_mgmt_resources_management/models/operation_results.rb', line 18 def id @id end |
#name ⇒ String
00000000-0000-0000-0000-000000000000
26 27 28 |
# File 'lib/2018-03-01-preview/generated/azure_mgmt_resources_management/models/operation_results.rb', line 26 def name @name end |
#provisioning_state ⇒ Enum
29 30 31 |
# File 'lib/2018-03-01-preview/generated/azure_mgmt_resources_management/models/operation_results.rb', line 29 def provisioning_state @provisioning_state end |
#type ⇒ String
/providers/Microsoft.Management/managementGroups
22 23 24 |
# File 'lib/2018-03-01-preview/generated/azure_mgmt_resources_management/models/operation_results.rb', line 22 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for OperationResults class as Ruby Hash. This will be used for serialization/deserialization.
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 78 79 80 81 82 83 |
# File 'lib/2018-03-01-preview/generated/azure_mgmt_resources_management/models/operation_results.rb', line 36 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OperationResults', type: { name: 'Composite', class_name: 'OperationResults', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, provisioning_state: { client_side_validation: true, required: false, serialized_name: 'properties.provisioningState', type: { name: 'String' } } } } } end |