Class: Google::Apis::ContainerV1::OperationError
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::OperationError
- 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
OperationError records errors seen from CloudKMS keys encountered during updates to DatabaseEncryption configuration.
Instance Attribute Summary collapse
-
#error_message ⇒ String
Description of the error seen during the operation.
-
#key_name ⇒ String
CloudKMS key resource that had the error.
-
#timestamp ⇒ String
Time when the CloudKMS error was seen.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OperationError
constructor
A new instance of OperationError.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OperationError
Returns a new instance of OperationError.
5488 5489 5490 |
# File 'lib/google/apis/container_v1/classes.rb', line 5488 def initialize(**args) update!(**args) end |
Instance Attribute Details
#error_message ⇒ String
Description of the error seen during the operation.
Corresponds to the JSON property errorMessage
5476 5477 5478 |
# File 'lib/google/apis/container_v1/classes.rb', line 5476 def @error_message end |
#key_name ⇒ String
CloudKMS key resource that had the error.
Corresponds to the JSON property keyName
5481 5482 5483 |
# File 'lib/google/apis/container_v1/classes.rb', line 5481 def key_name @key_name end |
#timestamp ⇒ String
Time when the CloudKMS error was seen.
Corresponds to the JSON property timestamp
5486 5487 5488 |
# File 'lib/google/apis/container_v1/classes.rb', line 5486 def @timestamp end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5493 5494 5495 5496 5497 |
# File 'lib/google/apis/container_v1/classes.rb', line 5493 def update!(**args) @error_message = args[:error_message] if args.key?(:error_message) @key_name = args[:key_name] if args.key?(:key_name) @timestamp = args[:timestamp] if args.key?(:timestamp) end |