Class: Google::Apis::ContainerV1beta1::OperationProgress

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/container_v1beta1/classes.rb,
lib/google/apis/container_v1beta1/representations.rb,
lib/google/apis/container_v1beta1/representations.rb

Overview

Information about operation (or operation stage) progress.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ OperationProgress

Returns a new instance of OperationProgress.



5750
5751
5752
# File 'lib/google/apis/container_v1beta1/classes.rb', line 5750

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#metricsArray<Google::Apis::ContainerV1beta1::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



5732
5733
5734
# File 'lib/google/apis/container_v1beta1/classes.rb', line 5732

def metrics
  @metrics
end

#nameString

A non-parameterized string describing an operation stage. Unset for single- stage operations. Corresponds to the JSON property name

Returns:

  • (String)


5738
5739
5740
# File 'lib/google/apis/container_v1beta1/classes.rb', line 5738

def name
  @name
end

#stagesArray<Google::Apis::ContainerV1beta1::OperationProgress>

Substages of an operation or a stage. Corresponds to the JSON property stages



5743
5744
5745
# File 'lib/google/apis/container_v1beta1/classes.rb', line 5743

def stages
  @stages
end

#statusString

Status of an operation stage. Unset for single-stage operations. Corresponds to the JSON property status

Returns:

  • (String)


5748
5749
5750
# File 'lib/google/apis/container_v1beta1/classes.rb', line 5748

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5755
5756
5757
5758
5759
5760
# File 'lib/google/apis/container_v1beta1/classes.rb', line 5755

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