google-apis-container_v1beta1 0.64.0 → 0.66.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: 1a433398e4a76a50f2f8cd68a3af36237007bf6d860389885b60ea40ab7f84f8
4
- data.tar.gz: 2cdd4e0f5afc117fdfc873a4296154fc45478fcbe5a179b7878c9af26d285cd5
3
+ metadata.gz: 5db9bb626556329840927a92d09256816ae23479c9333e4b69f813db420c7238
4
+ data.tar.gz: 89bb2604d0025f2d5d0a01a746aedd52cbba607653527534876abdc93dd31751
5
5
  SHA512:
6
- metadata.gz: 76eb9fa1f9d135e031f74c9d47e12ebc114447561409b14308149e7b565edd4fd1798c079fed0e99b2ca667452ef88c10e3eff718a1a891a18a24e02a7c53990
7
- data.tar.gz: 4d635c8de313b40c8f758b57517b636bdbf2ce0b9389169966e1c0bd4da5c93a33e383b2cde6326c77f53b94ac1fc992111b5ca25df87564e0e45b40a2a24d0b
6
+ metadata.gz: 7c0d994c77173e6f95cbabba5f2861d5c9f0ba33a1736cd1dcca2f76c38d5bec3fd3b78a55fb45eb48fd13c882dc9c496e5970236196274fc1638ea518ecf0ef
7
+ data.tar.gz: 7b02e332865fbed086dfb350170f35d7547add5667c4a39a0cb1dcfe72384de28fa1c7b550d6879e3dd53e9bbe3aa92166797d727f6589ad1a334542e370e578
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.66.0 (2024-01-28)
4
+
5
+ * Regenerated from discovery document revision 20240116
6
+ * Regenerated using generator version 0.13.1
7
+
8
+ ### v0.65.0 (2024-01-23)
9
+
10
+ * Regenerated using generator version 0.13.0
11
+
3
12
  ### v0.64.0 (2023-12-17)
4
13
 
5
14
  * Regenerated from discovery document revision 20231201
@@ -236,6 +236,11 @@ module Google
236
236
  # @return [Google::Apis::ContainerV1beta1::NetworkPolicyConfig]
237
237
  attr_accessor :network_policy_config
238
238
 
239
+ # Configuration for the Stateful HA add-on.
240
+ # Corresponds to the JSON property `statefulHaConfig`
241
+ # @return [Google::Apis::ContainerV1beta1::StatefulHaConfig]
242
+ attr_accessor :stateful_ha_config
243
+
239
244
  def initialize(**args)
240
245
  update!(**args)
241
246
  end
@@ -255,6 +260,7 @@ module Google
255
260
  @kalm_config = args[:kalm_config] if args.key?(:kalm_config)
256
261
  @kubernetes_dashboard = args[:kubernetes_dashboard] if args.key?(:kubernetes_dashboard)
257
262
  @network_policy_config = args[:network_policy_config] if args.key?(:network_policy_config)
263
+ @stateful_ha_config = args[:stateful_ha_config] if args.key?(:stateful_ha_config)
258
264
  end
259
265
  end
260
266
 
@@ -7104,6 +7110,26 @@ module Google
7104
7110
  end
7105
7111
  end
7106
7112
 
7113
+ # Configuration for the Stateful HA add-on.
7114
+ class StatefulHaConfig
7115
+ include Google::Apis::Core::Hashable
7116
+
7117
+ # Whether the Stateful HA add-on is enabled for this cluster.
7118
+ # Corresponds to the JSON property `enabled`
7119
+ # @return [Boolean]
7120
+ attr_accessor :enabled
7121
+ alias_method :enabled?, :enabled
7122
+
7123
+ def initialize(**args)
7124
+ update!(**args)
7125
+ end
7126
+
7127
+ # Update properties of this object
7128
+ def update!(**args)
7129
+ @enabled = args[:enabled] if args.key?(:enabled)
7130
+ end
7131
+ end
7132
+
7107
7133
  # The `Status` type defines a logical error model that is suitable for different
7108
7134
  # programming environments, including REST APIs and RPC APIs. It is used by [
7109
7135
  # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
@@ -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.64.0"
19
+ GEM_VERSION = "0.66.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.12.0"
22
+ GENERATOR_VERSION = "0.13.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231201"
25
+ REVISION = "20240116"
26
26
  end
27
27
  end
28
28
  end
@@ -1000,6 +1000,12 @@ module Google
1000
1000
  include Google::Apis::Core::JsonObjectSupport
1001
1001
  end
1002
1002
 
1003
+ class StatefulHaConfig
1004
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1005
+
1006
+ include Google::Apis::Core::JsonObjectSupport
1007
+ end
1008
+
1003
1009
  class Status
1004
1010
  class Representation < Google::Apis::Core::JsonRepresentation; end
1005
1011
 
@@ -1214,6 +1220,8 @@ module Google
1214
1220
 
1215
1221
  property :network_policy_config, as: 'networkPolicyConfig', class: Google::Apis::ContainerV1beta1::NetworkPolicyConfig, decorator: Google::Apis::ContainerV1beta1::NetworkPolicyConfig::Representation
1216
1222
 
1223
+ property :stateful_ha_config, as: 'statefulHaConfig', class: Google::Apis::ContainerV1beta1::StatefulHaConfig, decorator: Google::Apis::ContainerV1beta1::StatefulHaConfig::Representation
1224
+
1217
1225
  end
1218
1226
  end
1219
1227
 
@@ -2997,6 +3005,13 @@ module Google
2997
3005
  end
2998
3006
  end
2999
3007
 
3008
+ class StatefulHaConfig
3009
+ # @private
3010
+ class Representation < Google::Apis::Core::JsonRepresentation
3011
+ property :enabled, as: 'enabled'
3012
+ end
3013
+ end
3014
+
3000
3015
  class Status
3001
3016
  # @private
3002
3017
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -33,6 +33,8 @@ module Google
33
33
  #
34
34
  # @see https://cloud.google.com/container-engine/
35
35
  class ContainerService < Google::Apis::Core::BaseService
36
+ DEFAULT_ENDPOINT_TEMPLATE = "https://container.$UNIVERSE_DOMAIN$/"
37
+
36
38
  # @return [String]
37
39
  # API key. Your API key identifies your project and provides you with API access,
38
40
  # quota, and reports. Required unless you provide an OAuth 2.0 token.
@@ -44,7 +46,7 @@ module Google
44
46
  attr_accessor :quota_user
45
47
 
46
48
  def initialize
47
- super('https://container.googleapis.com/', '',
49
+ super(DEFAULT_ENDPOINT_TEMPLATE, '',
48
50
  client_name: 'google-apis-container_v1beta1',
49
51
  client_version: Google::Apis::ContainerV1beta1::GEM_VERSION)
50
52
  @batch_path = 'batch'
@@ -371,8 +373,6 @@ module Google
371
373
  end
372
374
 
373
375
  # Gets the public component of the cluster signing keys in JSON Web Key format.
374
- # This API is not yet intended for general use, and is not available for all
375
- # clusters.
376
376
  # @param [String] parent
377
377
  # The cluster (project, location, cluster name) to get keys for. Specified in
378
378
  # the format `projects/*/locations/*/clusters/*`.
@@ -1249,8 +1249,7 @@ module Google
1249
1249
 
1250
1250
  # Gets the OIDC discovery document for the cluster. See the [OpenID Connect
1251
1251
  # Discovery 1.0 specification](https://openid.net/specs/openid-connect-discovery-
1252
- # 1_0.html) for details. This API is not yet intended for general use, and is
1253
- # not available for all clusters.
1252
+ # 1_0.html) for details.
1254
1253
  # @param [String] parent
1255
1254
  # The cluster (project, location, cluster name) to get the discovery document
1256
1255
  # for. Specified in the format `projects/*/locations/*/clusters/*`.
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.64.0
4
+ version: 0.66.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: 2023-12-17 00:00:00.000000000 Z
11
+ date: 2024-01-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.11.0
19
+ version: 0.12.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.11.0
29
+ version: 0.12.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.64.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.66.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.19
78
+ rubygems_version: 3.5.3
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Kubernetes Engine API V1beta1