google-apis-container_v1beta1 0.65.0 → 0.67.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: 1309593dd9dc82daf020ee364b42cd13af85cffdb97891145d7c1396562381fa
4
- data.tar.gz: adb069898fdcbd5d4295afe871583a853d2688bad79f48bb5cf01cafefca7923
3
+ metadata.gz: 550ec9015c02340dd6e09893ffca44f09c90fc0ad58a636de691f3133a9a9ffc
4
+ data.tar.gz: 8a0467cb67ea3bbce7faf30982a920ac499cf1a29ddb24a3c85f78e110de4008
5
5
  SHA512:
6
- metadata.gz: dff926b9462564b9c5bebe2fc00416ca226ee403a6bc6fb10e8b89891bf688f73ca6c888bfddc214f0234f2151490bb043e907b9c829bbcbb5af13e0f95907ad
7
- data.tar.gz: b9a12ef692eaa87252f782b451ac0168419bc935b7975ed28bbc1c0e82da7adcde8ad0b2bfb45ee4ac50f7bf8c5a2990d416b63c10e02d311ae6dc9a4b7902a2
6
+ metadata.gz: 5c1717772999dc2e83ad4d0bffd4c7aee67d59cd3528e21b615c7b20c02f86d43bd67cf213cf1c3366e22b172ddeb853019d58fa25bb86e6b9e18bfaa65ac640
7
+ data.tar.gz: ec110ef1d458c0c6a8252b77b6a89028fe4889d1b655540ac995aec7fba57fcb15c09a9f44f8d1cb025f7a5ba1ba6a532a414e34ad9f2d0cc8ab176b36aa28f3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.67.0 (2024-02-18)
4
+
5
+ * Regenerated from discovery document revision 20240206
6
+
7
+ ### v0.66.0 (2024-01-28)
8
+
9
+ * Regenerated from discovery document revision 20240116
10
+ * Regenerated using generator version 0.13.1
11
+
3
12
  ### v0.65.0 (2024-01-23)
4
13
 
5
14
  * Regenerated using generator version 0.13.0
@@ -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
 
@@ -4337,9 +4343,7 @@ module Google
4337
4343
  # @return [String]
4338
4344
  attr_accessor :disk_type
4339
4345
 
4340
- # Optional. Enable confidential storage on Hyperdisk. boot_disk_kms_key is
4341
- # required when enable_confidential_storage is true. This is only available for
4342
- # private preview.
4346
+ # Optional. Reserved for future use.
4343
4347
  # Corresponds to the JSON property `enableConfidentialStorage`
4344
4348
  # @return [Boolean]
4345
4349
  attr_accessor :enable_confidential_storage
@@ -7104,6 +7108,26 @@ module Google
7104
7108
  end
7105
7109
  end
7106
7110
 
7111
+ # Configuration for the Stateful HA add-on.
7112
+ class StatefulHaConfig
7113
+ include Google::Apis::Core::Hashable
7114
+
7115
+ # Whether the Stateful HA add-on is enabled for this cluster.
7116
+ # Corresponds to the JSON property `enabled`
7117
+ # @return [Boolean]
7118
+ attr_accessor :enabled
7119
+ alias_method :enabled?, :enabled
7120
+
7121
+ def initialize(**args)
7122
+ update!(**args)
7123
+ end
7124
+
7125
+ # Update properties of this object
7126
+ def update!(**args)
7127
+ @enabled = args[:enabled] if args.key?(:enabled)
7128
+ end
7129
+ end
7130
+
7107
7131
  # The `Status` type defines a logical error model that is suitable for different
7108
7132
  # programming environments, including REST APIs and RPC APIs. It is used by [
7109
7133
  # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
@@ -7497,6 +7521,11 @@ module Google
7497
7521
  # @return [String]
7498
7522
  attr_accessor :project_id
7499
7523
 
7524
+ # QueuedProvisioning defines the queued provisioning used by the node pool.
7525
+ # Corresponds to the JSON property `queuedProvisioning`
7526
+ # @return [Google::Apis::ContainerV1beta1::QueuedProvisioning]
7527
+ attr_accessor :queued_provisioning
7528
+
7500
7529
  # Collection of [GCP labels](https://cloud.google.com/resource-manager/docs/
7501
7530
  # creating-managing-labels).
7502
7531
  # Corresponds to the JSON property `resourceLabels`
@@ -7606,6 +7635,7 @@ module Google
7606
7635
  @node_pool_id = args[:node_pool_id] if args.key?(:node_pool_id)
7607
7636
  @node_version = args[:node_version] if args.key?(:node_version)
7608
7637
  @project_id = args[:project_id] if args.key?(:project_id)
7638
+ @queued_provisioning = args[:queued_provisioning] if args.key?(:queued_provisioning)
7609
7639
  @resource_labels = args[:resource_labels] if args.key?(:resource_labels)
7610
7640
  @resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
7611
7641
  @tags = args[:tags] if args.key?(:tags)
@@ -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.65.0"
19
+ GEM_VERSION = "0.67.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.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 = "20240206"
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
@@ -3097,6 +3112,8 @@ module Google
3097
3112
  property :node_pool_id, as: 'nodePoolId'
3098
3113
  property :node_version, as: 'nodeVersion'
3099
3114
  property :project_id, as: 'projectId'
3115
+ property :queued_provisioning, as: 'queuedProvisioning', class: Google::Apis::ContainerV1beta1::QueuedProvisioning, decorator: Google::Apis::ContainerV1beta1::QueuedProvisioning::Representation
3116
+
3100
3117
  property :resource_labels, as: 'resourceLabels', class: Google::Apis::ContainerV1beta1::ResourceLabels, decorator: Google::Apis::ContainerV1beta1::ResourceLabels::Representation
3101
3118
 
3102
3119
  property :resource_manager_tags, as: 'resourceManagerTags', class: Google::Apis::ContainerV1beta1::ResourceManagerTags, decorator: Google::Apis::ContainerV1beta1::ResourceManagerTags::Representation
@@ -373,8 +373,6 @@ module Google
373
373
  end
374
374
 
375
375
  # Gets the public component of the cluster signing keys in JSON Web Key format.
376
- # This API is not yet intended for general use, and is not available for all
377
- # clusters.
378
376
  # @param [String] parent
379
377
  # The cluster (project, location, cluster name) to get keys for. Specified in
380
378
  # the format `projects/*/locations/*/clusters/*`.
@@ -1251,8 +1249,7 @@ module Google
1251
1249
 
1252
1250
  # Gets the OIDC discovery document for the cluster. See the [OpenID Connect
1253
1251
  # Discovery 1.0 specification](https://openid.net/specs/openid-connect-discovery-
1254
- # 1_0.html) for details. This API is not yet intended for general use, and is
1255
- # not available for all clusters.
1252
+ # 1_0.html) for details.
1256
1253
  # @param [String] parent
1257
1254
  # The cluster (project, location, cluster name) to get the discovery document
1258
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.65.0
4
+ version: 0.67.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-01-23 00:00:00.000000000 Z
11
+ date: 2024-02-18 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.65.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.67.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: []