google-apis-container_v1beta1 0.70.0 → 0.71.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 12494f7c31163cfec1f5d5373c0da73b1a7a2489212234018039c028b2d6a1fe
|
4
|
+
data.tar.gz: b33beac820c20ece16cbf58b38c84a5b607262c8db352738fa87b3f30bf8f2b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b7329f8470699126eb2cd3680ad4d1be90f7459bc3f3009948b93777b9b42c24a6788e64cf344112652ea74d537f0fb3f49362df5b2d2354c2fbda84b846499
|
7
|
+
data.tar.gz: c0c0193896936611dcf52bbb9a2d0e3535354f090ce15a799768cdbbf7bd9554ba3ee0e88d870bec6b69403e2a0e3993342ca6c00d028a961d3285fa49e8d978
|
data/CHANGELOG.md
CHANGED
@@ -2392,12 +2392,28 @@ module Google
|
|
2392
2392
|
class DatabaseEncryption
|
2393
2393
|
include Google::Apis::Core::Hashable
|
2394
2394
|
|
2395
|
+
# Output only. The current state of etcd encryption.
|
2396
|
+
# Corresponds to the JSON property `currentState`
|
2397
|
+
# @return [String]
|
2398
|
+
attr_accessor :current_state
|
2399
|
+
|
2400
|
+
# Output only. Keys in use by the cluster for decrypting existing objects, in
|
2401
|
+
# addition to the key in `key_name`. Each item is a CloudKMS key resource.
|
2402
|
+
# Corresponds to the JSON property `decryptionKeys`
|
2403
|
+
# @return [Array<String>]
|
2404
|
+
attr_accessor :decryption_keys
|
2405
|
+
|
2395
2406
|
# Name of CloudKMS key to use for the encryption of secrets in etcd. Ex.
|
2396
2407
|
# projects/my-project/locations/global/keyRings/my-ring/cryptoKeys/my-key
|
2397
2408
|
# Corresponds to the JSON property `keyName`
|
2398
2409
|
# @return [String]
|
2399
2410
|
attr_accessor :key_name
|
2400
2411
|
|
2412
|
+
# Output only. Records errors seen during DatabaseEncryption update operations.
|
2413
|
+
# Corresponds to the JSON property `lastOperationErrors`
|
2414
|
+
# @return [Array<Google::Apis::ContainerV1beta1::OperationError>]
|
2415
|
+
attr_accessor :last_operation_errors
|
2416
|
+
|
2401
2417
|
# The desired state of etcd encryption.
|
2402
2418
|
# Corresponds to the JSON property `state`
|
2403
2419
|
# @return [String]
|
@@ -2409,7 +2425,10 @@ module Google
|
|
2409
2425
|
|
2410
2426
|
# Update properties of this object
|
2411
2427
|
def update!(**args)
|
2428
|
+
@current_state = args[:current_state] if args.key?(:current_state)
|
2429
|
+
@decryption_keys = args[:decryption_keys] if args.key?(:decryption_keys)
|
2412
2430
|
@key_name = args[:key_name] if args.key?(:key_name)
|
2431
|
+
@last_operation_errors = args[:last_operation_errors] if args.key?(:last_operation_errors)
|
2413
2432
|
@state = args[:state] if args.key?(:state)
|
2414
2433
|
end
|
2415
2434
|
end
|
@@ -5434,6 +5453,38 @@ module Google
|
|
5434
5453
|
end
|
5435
5454
|
end
|
5436
5455
|
|
5456
|
+
# OperationError records errors seen from CloudKMS keys encountered during
|
5457
|
+
# updates to DatabaseEncryption configuration.
|
5458
|
+
class OperationError
|
5459
|
+
include Google::Apis::Core::Hashable
|
5460
|
+
|
5461
|
+
# Description of the error seen during the operation.
|
5462
|
+
# Corresponds to the JSON property `errorMessage`
|
5463
|
+
# @return [String]
|
5464
|
+
attr_accessor :error_message
|
5465
|
+
|
5466
|
+
# CloudKMS key resource that had the error.
|
5467
|
+
# Corresponds to the JSON property `keyName`
|
5468
|
+
# @return [String]
|
5469
|
+
attr_accessor :key_name
|
5470
|
+
|
5471
|
+
# Time when the CloudKMS error was seen.
|
5472
|
+
# Corresponds to the JSON property `timestamp`
|
5473
|
+
# @return [String]
|
5474
|
+
attr_accessor :timestamp
|
5475
|
+
|
5476
|
+
def initialize(**args)
|
5477
|
+
update!(**args)
|
5478
|
+
end
|
5479
|
+
|
5480
|
+
# Update properties of this object
|
5481
|
+
def update!(**args)
|
5482
|
+
@error_message = args[:error_message] if args.key?(:error_message)
|
5483
|
+
@key_name = args[:key_name] if args.key?(:key_name)
|
5484
|
+
@timestamp = args[:timestamp] if args.key?(:timestamp)
|
5485
|
+
end
|
5486
|
+
end
|
5487
|
+
|
5437
5488
|
# Information about operation (or operation stage) progress.
|
5438
5489
|
class OperationProgress
|
5439
5490
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContainerV1beta1
|
18
18
|
# Version of the google-apis-container_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.71.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240313"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -736,6 +736,12 @@ module Google
|
|
736
736
|
include Google::Apis::Core::JsonObjectSupport
|
737
737
|
end
|
738
738
|
|
739
|
+
class OperationError
|
740
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
741
|
+
|
742
|
+
include Google::Apis::Core::JsonObjectSupport
|
743
|
+
end
|
744
|
+
|
739
745
|
class OperationProgress
|
740
746
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
741
747
|
|
@@ -1787,7 +1793,11 @@ module Google
|
|
1787
1793
|
class DatabaseEncryption
|
1788
1794
|
# @private
|
1789
1795
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1796
|
+
property :current_state, as: 'currentState'
|
1797
|
+
collection :decryption_keys, as: 'decryptionKeys'
|
1790
1798
|
property :key_name, as: 'keyName'
|
1799
|
+
collection :last_operation_errors, as: 'lastOperationErrors', class: Google::Apis::ContainerV1beta1::OperationError, decorator: Google::Apis::ContainerV1beta1::OperationError::Representation
|
1800
|
+
|
1791
1801
|
property :state, as: 'state'
|
1792
1802
|
end
|
1793
1803
|
end
|
@@ -2597,6 +2607,15 @@ module Google
|
|
2597
2607
|
end
|
2598
2608
|
end
|
2599
2609
|
|
2610
|
+
class OperationError
|
2611
|
+
# @private
|
2612
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2613
|
+
property :error_message, as: 'errorMessage'
|
2614
|
+
property :key_name, as: 'keyName'
|
2615
|
+
property :timestamp, as: 'timestamp'
|
2616
|
+
end
|
2617
|
+
end
|
2618
|
+
|
2600
2619
|
class OperationProgress
|
2601
2620
|
# @private
|
2602
2621
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-container_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.71.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-03-
|
11
|
+
date: 2024-03-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.71.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|