Class: Aws::OpenSearchService::Types::UpgradeStepItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::UpgradeStepItem
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-opensearchservice/types.rb
Overview
Represents a single step of an upgrade or upgrade eligibility check workflow.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#issues ⇒ Array<String>
A list of strings containing detailed information about the errors encountered in a particular step.
-
#progress_percent ⇒ Float
The floating point value representing the progress percentage of a particular step.
-
#upgrade_step ⇒ String
One of three steps that an upgrade or upgrade eligibility check goes through:.
-
#upgrade_step_status ⇒ String
The current status of the upgrade.
Instance Attribute Details
#issues ⇒ Array<String>
A list of strings containing detailed information about the errors encountered in a particular step.
7567 7568 7569 7570 7571 7572 7573 7574 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 7567 class UpgradeStepItem < Struct.new( :upgrade_step, :upgrade_step_status, :issues, :progress_percent) SENSITIVE = [] include Aws::Structure end |
#progress_percent ⇒ Float
The floating point value representing the progress percentage of a particular step.
7567 7568 7569 7570 7571 7572 7573 7574 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 7567 class UpgradeStepItem < Struct.new( :upgrade_step, :upgrade_step_status, :issues, :progress_percent) SENSITIVE = [] include Aws::Structure end |
#upgrade_step ⇒ String
One of three steps that an upgrade or upgrade eligibility check goes through:
-
PreUpgradeCheck
-
Snapshot
-
Upgrade
7567 7568 7569 7570 7571 7572 7573 7574 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 7567 class UpgradeStepItem < Struct.new( :upgrade_step, :upgrade_step_status, :issues, :progress_percent) SENSITIVE = [] include Aws::Structure end |
#upgrade_step_status ⇒ String
The current status of the upgrade. The status can take one of the following values:
-
In Progress
-
Succeeded
-
Succeeded with Issues
-
Failed
7567 7568 7569 7570 7571 7572 7573 7574 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 7567 class UpgradeStepItem < Struct.new( :upgrade_step, :upgrade_step_status, :issues, :progress_percent) SENSITIVE = [] include Aws::Structure end |