google-cloud-container-v1beta1 0.20.0 → 0.21.1

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: b1fa3d6984cfbbc9b5c7d4d4b524d2587c6dfb06dbeb26305a6eb35a3948c12d
4
- data.tar.gz: 72d81d79d36a130c61ee8eb3b8bafa1c60441972cbac741834cad642a8e2bac8
3
+ metadata.gz: 7350894d4e4b23edecebc121358b5e77d79af1d6f3ee1c847d6697b055f807ee
4
+ data.tar.gz: 4b619db0cf139aba60f5c57a059e13d81de3f8e8b01f3888b3776ebfdd48b108
5
5
  SHA512:
6
- metadata.gz: 715ab7f860247712541651e22d6c3e1b0a8decd895ac4829cee65e5c996d29f16ed0ec16c267a16a07fd3e2642b89ba55c853750dc9d267c346c464f18a4cfba
7
- data.tar.gz: '097c77f6b3be2a08e7cbe2a161c585a6fc75966b24beffdde7bcc2c6fc2a34fb62a5af07feda87de2d6eefde130a3ddaa0021f1ffd8d4d348db35d08e233132f'
6
+ metadata.gz: 3f7e87557ad6463010ad99b360f882cc90eb6997fc1e501fa3d323df3c08b969f827037cfc89982f98bc7f1ec7e64160d7b61ac4f1c1433ce7908aec1154c007
7
+ data.tar.gz: c448b3c5dca6287cf1f3774b90afa440e1ba9e524f2324dc69a43a0724e106e01d02dd154c835e54653dd546ce76141f853f2f2464c959cd24178d26df82ed34
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Container
23
23
  module V1beta1
24
- VERSION = "0.20.0"
24
+ VERSION = "0.21.1"
25
25
  end
26
26
  end
27
27
  end
@@ -177,6 +177,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
177
177
  optional :kalm_config, :message, 12, "google.container.v1beta1.KalmConfig"
178
178
  optional :gcp_filestore_csi_driver_config, :message, 14, "google.container.v1beta1.GcpFilestoreCsiDriverConfig"
179
179
  optional :gke_backup_agent_config, :message, 16, "google.container.v1beta1.GkeBackupAgentConfig"
180
+ optional :gcs_fuse_csi_driver_config, :message, 17, "google.container.v1beta1.GcsFuseCsiDriverConfig"
180
181
  end
181
182
  add_message "google.container.v1beta1.HttpLoadBalancing" do
182
183
  optional :disabled, :bool, 1
@@ -208,6 +209,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
208
209
  add_message "google.container.v1beta1.GcpFilestoreCsiDriverConfig" do
209
210
  optional :enabled, :bool, 1
210
211
  end
212
+ add_message "google.container.v1beta1.GcsFuseCsiDriverConfig" do
213
+ optional :enabled, :bool, 1
214
+ end
211
215
  add_message "google.container.v1beta1.PrivateClusterMasterGlobalAccessConfig" do
212
216
  optional :enabled, :bool, 1
213
217
  end
@@ -478,6 +482,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
478
482
  optional :desired_gateway_api_config, :message, 114, "google.container.v1beta1.GatewayAPIConfig"
479
483
  optional :etag, :string, 115
480
484
  optional :desired_node_pool_logging_config, :message, 116, "google.container.v1beta1.NodePoolLoggingConfig"
485
+ optional :desired_fleet, :message, 117, "google.container.v1beta1.Fleet"
481
486
  optional :desired_stack_type, :enum, 119, "google.container.v1beta1.StackType"
482
487
  optional :additional_pod_ranges_config, :message, 120, "google.container.v1beta1.AdditionalPodRangesConfig"
483
488
  optional :removed_additional_pod_ranges_config, :message, 121, "google.container.v1beta1.AdditionalPodRangesConfig"
@@ -1381,6 +1386,7 @@ module Google
1381
1386
  ConfigConnectorConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ConfigConnectorConfig").msgclass
1382
1387
  GcePersistentDiskCsiDriverConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.GcePersistentDiskCsiDriverConfig").msgclass
1383
1388
  GcpFilestoreCsiDriverConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.GcpFilestoreCsiDriverConfig").msgclass
1389
+ GcsFuseCsiDriverConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.GcsFuseCsiDriverConfig").msgclass
1384
1390
  PrivateClusterMasterGlobalAccessConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.PrivateClusterMasterGlobalAccessConfig").msgclass
1385
1391
  PrivateClusterConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.PrivateClusterConfig").msgclass
1386
1392
  IstioConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.IstioConfig").msgclass
@@ -83,7 +83,7 @@ module Google
83
83
  # long-running operation pattern.
84
84
  # @!attribute [rw] new_issue_uri
85
85
  # @return [::String]
86
- # Link to a place that API users can report issues. Example:
86
+ # Link to a *public* URI where users can report issues. Example:
87
87
  # https://issuetracker.google.com/issues/new?component=190865&template=1161103
88
88
  # @!attribute [rw] documentation_uri
89
89
  # @return [::String]
@@ -353,6 +353,15 @@ module Google
353
353
 
354
354
  # Street View Org.
355
355
  STREET_VIEW = 4
356
+
357
+ # Shopping Org.
358
+ SHOPPING = 5
359
+
360
+ # Geo Org.
361
+ GEO = 6
362
+
363
+ # Generative AI - https://developers.generativeai.google
364
+ GENERATIVE_AI = 7
356
365
  end
357
366
 
358
367
  # To where should client libraries be published?
@@ -817,6 +817,9 @@ module Google
817
817
  # @!attribute [rw] gke_backup_agent_config
818
818
  # @return [::Google::Cloud::Container::V1beta1::GkeBackupAgentConfig]
819
819
  # Configuration for the Backup for GKE agent addon.
820
+ # @!attribute [rw] gcs_fuse_csi_driver_config
821
+ # @return [::Google::Cloud::Container::V1beta1::GcsFuseCsiDriverConfig]
822
+ # Configuration for the Cloud Storage Fuse CSI driver.
820
823
  class AddonsConfig
821
824
  include ::Google::Protobuf::MessageExts
822
825
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -921,6 +924,15 @@ module Google
921
924
  extend ::Google::Protobuf::MessageExts::ClassMethods
922
925
  end
923
926
 
927
+ # Configuration for the Cloud Storage Fuse CSI driver.
928
+ # @!attribute [rw] enabled
929
+ # @return [::Boolean]
930
+ # Whether the Cloud Storage Fuse CSI driver is enabled for this cluster.
931
+ class GcsFuseCsiDriverConfig
932
+ include ::Google::Protobuf::MessageExts
933
+ extend ::Google::Protobuf::MessageExts::ClassMethods
934
+ end
935
+
924
936
  # Configuration for controlling master global access settings.
925
937
  # @!attribute [rw] enabled
926
938
  # @return [::Boolean]
@@ -1549,7 +1561,12 @@ module Google
1549
1561
  # Shielded Nodes configuration.
1550
1562
  # @!attribute [rw] release_channel
1551
1563
  # @return [::Google::Cloud::Container::V1beta1::ReleaseChannel]
1552
- # Release channel configuration.
1564
+ # Release channel configuration. If left unspecified on cluster creation and
1565
+ # a version is specified, the cluster is enrolled in the most mature release
1566
+ # channel where the version is available (first checking STABLE, then
1567
+ # REGULAR, and finally RAPID). Otherwise, if no release channel
1568
+ # configuration and no version is specified, the cluster is enrolled in the
1569
+ # REGULAR channel with its default version.
1553
1570
  # @!attribute [rw] workload_identity_config
1554
1571
  # @return [::Google::Cloud::Container::V1beta1::WorkloadIdentityConfig]
1555
1572
  # Configuration for the use of Kubernetes Service Accounts in GCP IAM
@@ -2053,6 +2070,9 @@ module Google
2053
2070
  # @!attribute [rw] desired_node_pool_logging_config
2054
2071
  # @return [::Google::Cloud::Container::V1beta1::NodePoolLoggingConfig]
2055
2072
  # The desired node pool logging configuration defaults for the cluster.
2073
+ # @!attribute [rw] desired_fleet
2074
+ # @return [::Google::Cloud::Container::V1beta1::Fleet]
2075
+ # The desired fleet configuration for the cluster.
2056
2076
  # @!attribute [rw] desired_stack_type
2057
2077
  # @return [::Google::Cloud::Container::V1beta1::StackType]
2058
2078
  # The desired stack type of the cluster.
@@ -2118,12 +2138,14 @@ module Google
2118
2138
  #
2119
2139
  # Examples:
2120
2140
  #
2121
- # -
2122
- # `https://container.googleapis.com/v1beta1/projects/123/locations/us-central1/clusters/my-cluster`
2123
- # -
2124
- # `https://container.googleapis.com/v1beta1/projects/123/zones/us-central1-c/clusters/my-cluster/nodePools/my-np`
2125
- # -
2126
- # `https://container.googleapis.com/v1beta1/projects/123/zones/us-central1-c/clusters/my-cluster/nodePools/my-np/node/my-node`
2141
+ # -
2142
+ # ##
2143
+ # `https://container.googleapis.com/v1/projects/123/locations/us-central1/clusters/my-cluster`
2144
+ #
2145
+ # ##
2146
+ # `https://container.googleapis.com/v1/projects/123/zones/us-central1-c/clusters/my-cluster/nodePools/my-np`
2147
+ #
2148
+ # `https://container.googleapis.com/v1/projects/123/zones/us-central1-c/clusters/my-cluster/nodePools/my-np/node/my-node`
2127
2149
  # @!attribute [rw] location
2128
2150
  # @return [::String]
2129
2151
  # [Output only] The name of the Google Compute Engine
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-container-v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.0
4
+ version: 0.21.1
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-04-27 00:00:00.000000000 Z
11
+ date: 2023-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common