class Azure::ServiceFabric::V7_0_0_42::Models::UpgradeOrchestrationServiceStateSummary
Service state summary of Service Fabric Upgrade Orchestration Service.
Attributes
current_code_version[RW]
@return [String] The current code version of the cluster.
current_manifest_version[RW]
@return [String] The current manifest version of the cluster.
pending_upgrade_type[RW]
@return [String] The type of the pending upgrade of the cluster.
target_code_version[RW]
@return [String] The target code version of the cluster.
target_manifest_version[RW]
@return [String] The target manifest version of the cluster.
Private Class Methods
mapper()
click to toggle source
Mapper for UpgradeOrchestrationServiceStateSummary
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/7.0.0.42/generated/azure_service_fabric/models/upgrade_orchestration_service_state_summary.rb, line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'UpgradeOrchestrationServiceStateSummary', type: { name: 'Composite', class_name: 'UpgradeOrchestrationServiceStateSummary', model_properties: { current_code_version: { client_side_validation: true, required: false, serialized_name: 'CurrentCodeVersion', type: { name: 'String' } }, current_manifest_version: { client_side_validation: true, required: false, serialized_name: 'CurrentManifestVersion', type: { name: 'String' } }, target_code_version: { client_side_validation: true, required: false, serialized_name: 'TargetCodeVersion', type: { name: 'String' } }, target_manifest_version: { client_side_validation: true, required: false, serialized_name: 'TargetManifestVersion', type: { name: 'String' } }, pending_upgrade_type: { client_side_validation: true, required: false, serialized_name: 'PendingUpgradeType', type: { name: 'String' } } } } } end