Class: Google::Apis::ContainerV1::Operation
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::Operation
- Defined in:
- generated/google/apis/container_v1/classes.rb,
generated/google/apis/container_v1/representations.rb,
generated/google/apis/container_v1/representations.rb
Overview
This operation resource represents operations that may have happened or are happening on the cluster. All fields are output only.
Instance Attribute Summary collapse
-
#detail ⇒ String
Detailed operation progress, if available.
-
#name ⇒ String
The server-assigned ID for the operation.
-
#operation_type ⇒ String
The operation type.
-
#self_link ⇒ String
Server-defined URL for the resource.
-
#status ⇒ String
The current status of the operation.
-
#status_message ⇒ String
If an error has occurred, a textual description of the error.
-
#target_link ⇒ String
Server-defined URL for the target of the operation.
-
#zone ⇒ String
The name of the Google Compute Engine zone in which the operation is taking place.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Operation
constructor
A new instance of Operation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ Operation
Returns a new instance of Operation
1543 1544 1545 |
# File 'generated/google/apis/container_v1/classes.rb', line 1543 def initialize(**args) update!(**args) end |
Instance Attribute Details
#detail ⇒ String
Detailed operation progress, if available.
Corresponds to the JSON property detail
1536 1537 1538 |
# File 'generated/google/apis/container_v1/classes.rb', line 1536 def detail @detail end |
#name ⇒ String
The server-assigned ID for the operation.
Corresponds to the JSON property name
1521 1522 1523 |
# File 'generated/google/apis/container_v1/classes.rb', line 1521 def name @name end |
#operation_type ⇒ String
The operation type.
Corresponds to the JSON property operationType
1541 1542 1543 |
# File 'generated/google/apis/container_v1/classes.rb', line 1541 def operation_type @operation_type end |
#self_link ⇒ String
Server-defined URL for the resource.
Corresponds to the JSON property selfLink
1526 1527 1528 |
# File 'generated/google/apis/container_v1/classes.rb', line 1526 def self_link @self_link end |
#status ⇒ String
The current status of the operation.
Corresponds to the JSON property status
1511 1512 1513 |
# File 'generated/google/apis/container_v1/classes.rb', line 1511 def status @status end |
#status_message ⇒ String
If an error has occurred, a textual description of the error.
Corresponds to the JSON property statusMessage
1516 1517 1518 |
# File 'generated/google/apis/container_v1/classes.rb', line 1516 def @status_message end |
#target_link ⇒ String
Server-defined URL for the target of the operation.
Corresponds to the JSON property targetLink
1531 1532 1533 |
# File 'generated/google/apis/container_v1/classes.rb', line 1531 def target_link @target_link end |
#zone ⇒ String
The name of the Google Compute Engine
zone in which the operation
is taking place.
Corresponds to the JSON property zone
1506 1507 1508 |
# File 'generated/google/apis/container_v1/classes.rb', line 1506 def zone @zone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 |
# File 'generated/google/apis/container_v1/classes.rb', line 1548 def update!(**args) @zone = args[:zone] if args.key?(:zone) @status = args[:status] if args.key?(:status) @status_message = args[:status_message] if args.key?(:status_message) @name = args[:name] if args.key?(:name) @self_link = args[:self_link] if args.key?(:self_link) @target_link = args[:target_link] if args.key?(:target_link) @detail = args[:detail] if args.key?(:detail) @operation_type = args[:operation_type] if args.key?(:operation_type) end |