Class: Azure::Compute::Mgmt::V2020_06_01::Models::OrchestrationServiceSummary
- Inherits:
-
Object
- Object
- Azure::Compute::Mgmt::V2020_06_01::Models::OrchestrationServiceSummary
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-06-01/generated/azure_mgmt_compute/models/orchestration_service_summary.rb
Overview
Summary for an orchestration service of a virtual machine scale set.
Instance Attribute Summary collapse
-
#service_name ⇒ OrchestrationServiceNames
values include: 'AutomaticRepairs'.
-
#service_state ⇒ OrchestrationServiceState
Possible values include: 'NotRunning', 'Running', 'Suspended'.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for OrchestrationServiceSummary class as Ruby Hash.
Instance Attribute Details
#service_name ⇒ OrchestrationServiceNames
values include: 'AutomaticRepairs'
17 18 19 |
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/orchestration_service_summary.rb', line 17 def service_name @service_name end |
#service_state ⇒ OrchestrationServiceState
Possible values include: 'NotRunning', 'Running', 'Suspended'
21 22 23 |
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/orchestration_service_summary.rb', line 21 def service_state @service_state end |
Class Method Details
.mapper ⇒ Object
Mapper for OrchestrationServiceSummary class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2020-06-01/generated/azure_mgmt_compute/models/orchestration_service_summary.rb', line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OrchestrationServiceSummary', type: { name: 'Composite', class_name: 'OrchestrationServiceSummary', model_properties: { service_name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'serviceName', type: { name: 'String' } }, service_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'serviceState', type: { name: 'String' } } } } } end |