google-apis-container_v1 0.68.0 → 0.69.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 329ebfc9abc17b8cce839a8742d7961434917cec101496858a3fcf38144d1e3c
|
4
|
+
data.tar.gz: 15ee414c7bd0510d838e0455791f666b16c0d757ed8c049d3779f5e3fb5a401f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6736be72b35fdc01be7d92af4925f66d34efbd822b553e978f564d5b5b173d56b8b9e986548616bc9df3b80b69b0c95fad301470447e059d927297865c1f89b
|
7
|
+
data.tar.gz: b561d1959369ba577dfbaf1e0930d4ac1b8d5abf168b3ec6ceb85bf27172e7935b5eeff60e177abb1ad0b85be326969a7c6b2dcd7fc41620572dc8773ebb2edb
|
data/CHANGELOG.md
CHANGED
@@ -2142,12 +2142,28 @@ module Google
|
|
2142
2142
|
class DatabaseEncryption
|
2143
2143
|
include Google::Apis::Core::Hashable
|
2144
2144
|
|
2145
|
+
# Output only. The current state of etcd encryption.
|
2146
|
+
# Corresponds to the JSON property `currentState`
|
2147
|
+
# @return [String]
|
2148
|
+
attr_accessor :current_state
|
2149
|
+
|
2150
|
+
# Output only. Keys in use by the cluster for decrypting existing objects, in
|
2151
|
+
# addition to the key in `key_name`. Each item is a CloudKMS key resource.
|
2152
|
+
# Corresponds to the JSON property `decryptionKeys`
|
2153
|
+
# @return [Array<String>]
|
2154
|
+
attr_accessor :decryption_keys
|
2155
|
+
|
2145
2156
|
# Name of CloudKMS key to use for the encryption of secrets in etcd. Ex.
|
2146
2157
|
# projects/my-project/locations/global/keyRings/my-ring/cryptoKeys/my-key
|
2147
2158
|
# Corresponds to the JSON property `keyName`
|
2148
2159
|
# @return [String]
|
2149
2160
|
attr_accessor :key_name
|
2150
2161
|
|
2162
|
+
# Output only. Records errors seen during DatabaseEncryption update operations.
|
2163
|
+
# Corresponds to the JSON property `lastOperationErrors`
|
2164
|
+
# @return [Array<Google::Apis::ContainerV1::OperationError>]
|
2165
|
+
attr_accessor :last_operation_errors
|
2166
|
+
|
2151
2167
|
# The desired state of etcd encryption.
|
2152
2168
|
# Corresponds to the JSON property `state`
|
2153
2169
|
# @return [String]
|
@@ -2159,7 +2175,10 @@ module Google
|
|
2159
2175
|
|
2160
2176
|
# Update properties of this object
|
2161
2177
|
def update!(**args)
|
2178
|
+
@current_state = args[:current_state] if args.key?(:current_state)
|
2179
|
+
@decryption_keys = args[:decryption_keys] if args.key?(:decryption_keys)
|
2162
2180
|
@key_name = args[:key_name] if args.key?(:key_name)
|
2181
|
+
@last_operation_errors = args[:last_operation_errors] if args.key?(:last_operation_errors)
|
2163
2182
|
@state = args[:state] if args.key?(:state)
|
2164
2183
|
end
|
2165
2184
|
end
|
@@ -4927,6 +4946,38 @@ module Google
|
|
4927
4946
|
end
|
4928
4947
|
end
|
4929
4948
|
|
4949
|
+
# OperationError records errors seen from CloudKMS keys encountered during
|
4950
|
+
# updates to DatabaseEncryption configuration.
|
4951
|
+
class OperationError
|
4952
|
+
include Google::Apis::Core::Hashable
|
4953
|
+
|
4954
|
+
# Description of the error seen during the operation.
|
4955
|
+
# Corresponds to the JSON property `errorMessage`
|
4956
|
+
# @return [String]
|
4957
|
+
attr_accessor :error_message
|
4958
|
+
|
4959
|
+
# CloudKMS key resource that had the error.
|
4960
|
+
# Corresponds to the JSON property `keyName`
|
4961
|
+
# @return [String]
|
4962
|
+
attr_accessor :key_name
|
4963
|
+
|
4964
|
+
# Time when the CloudKMS error was seen.
|
4965
|
+
# Corresponds to the JSON property `timestamp`
|
4966
|
+
# @return [String]
|
4967
|
+
attr_accessor :timestamp
|
4968
|
+
|
4969
|
+
def initialize(**args)
|
4970
|
+
update!(**args)
|
4971
|
+
end
|
4972
|
+
|
4973
|
+
# Update properties of this object
|
4974
|
+
def update!(**args)
|
4975
|
+
@error_message = args[:error_message] if args.key?(:error_message)
|
4976
|
+
@key_name = args[:key_name] if args.key?(:key_name)
|
4977
|
+
@timestamp = args[:timestamp] if args.key?(:timestamp)
|
4978
|
+
end
|
4979
|
+
end
|
4980
|
+
|
4930
4981
|
# Information about operation (or operation stage) progress.
|
4931
4982
|
class OperationProgress
|
4932
4983
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContainerV1
|
18
18
|
# Version of the google-apis-container_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.69.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
|
@@ -664,6 +664,12 @@ module Google
|
|
664
664
|
include Google::Apis::Core::JsonObjectSupport
|
665
665
|
end
|
666
666
|
|
667
|
+
class OperationError
|
668
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
669
|
+
|
670
|
+
include Google::Apis::Core::JsonObjectSupport
|
671
|
+
end
|
672
|
+
|
667
673
|
class OperationProgress
|
668
674
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
669
675
|
|
@@ -1574,7 +1580,11 @@ module Google
|
|
1574
1580
|
class DatabaseEncryption
|
1575
1581
|
# @private
|
1576
1582
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1583
|
+
property :current_state, as: 'currentState'
|
1584
|
+
collection :decryption_keys, as: 'decryptionKeys'
|
1577
1585
|
property :key_name, as: 'keyName'
|
1586
|
+
collection :last_operation_errors, as: 'lastOperationErrors', class: Google::Apis::ContainerV1::OperationError, decorator: Google::Apis::ContainerV1::OperationError::Representation
|
1587
|
+
|
1578
1588
|
property :state, as: 'state'
|
1579
1589
|
end
|
1580
1590
|
end
|
@@ -2312,6 +2322,15 @@ module Google
|
|
2312
2322
|
end
|
2313
2323
|
end
|
2314
2324
|
|
2325
|
+
class OperationError
|
2326
|
+
# @private
|
2327
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2328
|
+
property :error_message, as: 'errorMessage'
|
2329
|
+
property :key_name, as: 'keyName'
|
2330
|
+
property :timestamp, as: 'timestamp'
|
2331
|
+
end
|
2332
|
+
end
|
2333
|
+
|
2315
2334
|
class OperationProgress
|
2316
2335
|
# @private
|
2317
2336
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-container_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.69.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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.69.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|