Class: Google::Apis::ContainerV1beta1::UpgradeEvent
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1beta1::UpgradeEvent
- 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
UpgradeEvent is a notification sent to customers by the cluster server when a resource is upgrading.
Instance Attribute Summary collapse
-
#current_emulated_version ⇒ String
The current emulated version before the upgrade.
-
#current_version ⇒ String
The current version before the upgrade.
-
#operation ⇒ String
The operation associated with this upgrade.
-
#operation_start_time ⇒ String
The time when the operation was started.
-
#resource ⇒ String
Optional relative path to the resource.
-
#resource_type ⇒ String
The resource type that is upgrading.
-
#target_emulated_version ⇒ String
The target emulated version for the upgrade.
-
#target_version ⇒ String
The target version for the upgrade.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UpgradeEvent
constructor
A new instance of UpgradeEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UpgradeEvent
Returns a new instance of UpgradeEvent.
10592 10593 10594 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10592 def initialize(**args) update!(**args) end |
Instance Attribute Details
#current_emulated_version ⇒ String
The current emulated version before the upgrade.
Corresponds to the JSON property currentEmulatedVersion
10554 10555 10556 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10554 def current_emulated_version @current_emulated_version end |
#current_version ⇒ String
The current version before the upgrade.
Corresponds to the JSON property currentVersion
10559 10560 10561 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10559 def current_version @current_version end |
#operation ⇒ String
The operation associated with this upgrade.
Corresponds to the JSON property operation
10564 10565 10566 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10564 def operation @operation end |
#operation_start_time ⇒ String
The time when the operation was started.
Corresponds to the JSON property operationStartTime
10569 10570 10571 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10569 def operation_start_time @operation_start_time end |
#resource ⇒ String
Optional relative path to the resource. For example in node pool upgrades, the
relative path of the node pool.
Corresponds to the JSON property resource
10575 10576 10577 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10575 def resource @resource end |
#resource_type ⇒ String
The resource type that is upgrading.
Corresponds to the JSON property resourceType
10580 10581 10582 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10580 def resource_type @resource_type end |
#target_emulated_version ⇒ String
The target emulated version for the upgrade.
Corresponds to the JSON property targetEmulatedVersion
10585 10586 10587 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10585 def target_emulated_version @target_emulated_version end |
#target_version ⇒ String
The target version for the upgrade.
Corresponds to the JSON property targetVersion
10590 10591 10592 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10590 def target_version @target_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 |
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10597 def update!(**args) @current_emulated_version = args[:current_emulated_version] if args.key?(:current_emulated_version) @current_version = args[:current_version] if args.key?(:current_version) @operation = args[:operation] if args.key?(:operation) @operation_start_time = args[:operation_start_time] if args.key?(:operation_start_time) @resource = args[:resource] if args.key?(:resource) @resource_type = args[:resource_type] if args.key?(:resource_type) @target_emulated_version = args[:target_emulated_version] if args.key?(:target_emulated_version) @target_version = args[:target_version] if args.key?(:target_version) end |