Class: Google::Apis::ContainerV1::OperationProgress
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::OperationProgress
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/container_v1/classes.rb,
lib/google/apis/container_v1/representations.rb,
lib/google/apis/container_v1/representations.rb
Overview
Information about operation (or operation stage) progress.
Instance Attribute Summary collapse
-
#metrics ⇒ Array<Google::Apis::ContainerV1::Metric>
Progress metric bundle, for example: metrics: [
name: "nodes done", int_value: 15
,name: "nodes total", int_value: 32
] or metrics: [name: "progress", double_value: 0.56
,name: "progress scale", double_value: 1.0
] Corresponds to the JSON propertymetrics
. -
#name ⇒ String
A non-parameterized string describing an operation stage.
-
#stages ⇒ Array<Google::Apis::ContainerV1::OperationProgress>
Substages of an operation or a stage.
-
#status ⇒ String
Status of an operation stage.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OperationProgress
constructor
A new instance of OperationProgress.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OperationProgress
Returns a new instance of OperationProgress.
5216 5217 5218 |
# File 'lib/google/apis/container_v1/classes.rb', line 5216 def initialize(**args) update!(**args) end |
Instance Attribute Details
#metrics ⇒ Array<Google::Apis::ContainerV1::Metric>
Progress metric bundle, for example: metrics: [name: "nodes done", int_value:
15
, name: "nodes total", int_value: 32
] or metrics: [name: "progress",
double_value: 0.56
, name: "progress scale", double_value: 1.0
]
Corresponds to the JSON property metrics
5198 5199 5200 |
# File 'lib/google/apis/container_v1/classes.rb', line 5198 def metrics @metrics end |
#name ⇒ String
A non-parameterized string describing an operation stage. Unset for single-
stage operations.
Corresponds to the JSON property name
5204 5205 5206 |
# File 'lib/google/apis/container_v1/classes.rb', line 5204 def name @name end |
#stages ⇒ Array<Google::Apis::ContainerV1::OperationProgress>
Substages of an operation or a stage.
Corresponds to the JSON property stages
5209 5210 5211 |
# File 'lib/google/apis/container_v1/classes.rb', line 5209 def stages @stages end |
#status ⇒ String
Status of an operation stage. Unset for single-stage operations.
Corresponds to the JSON property status
5214 5215 5216 |
# File 'lib/google/apis/container_v1/classes.rb', line 5214 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5221 5222 5223 5224 5225 5226 |
# File 'lib/google/apis/container_v1/classes.rb', line 5221 def update!(**args) @metrics = args[:metrics] if args.key?(:metrics) @name = args[:name] if args.key?(:name) @stages = args[:stages] if args.key?(:stages) @status = args[:status] if args.key?(:status) end |