google-apis-container_v1beta1 0.47.0 → 0.48.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: 5e4e4c718e02637b34b26fc409f52d3bc28eb92b1818d249a8dac93f9435be45
4
- data.tar.gz: e4b4c96ba1db314cf728432d1b056ea84a442ac07cf2d421437f506c4c5c352b
3
+ metadata.gz: '085f35ebb2bf9f15abcef098f446907126522e25da829de9eab6360ca9124552'
4
+ data.tar.gz: 89cf39481a69eac413c173a910ae29c259e8fcabe21a5beccef726809c5a83b8
5
5
  SHA512:
6
- metadata.gz: dd26bf604d0495a7d6d39076f5a77cd33afc86f5ef0c7ade2bb720435046ca75c5565ad9895240e4e6a3fdf533c2568f39291f56f64447f1439dcc4ff1727788
7
- data.tar.gz: 6891e8e27ed3cd687d27b43c26dde3a3ad6eca6b6773e658fd5e1a737f39f30f1609801d23f816625d25b5bfe5875df41bdf63ffec05cf808dadcf60f53602dd
6
+ metadata.gz: c1918ab69c9b70e265ea0958bf6580953da50d9728a3d3ae719d681595ed2b599ebc05794df2bfeebd00b4703876ad955c98af8c5a34e429fbc6011c66f78417
7
+ data.tar.gz: 96e632de15fc5df934836fccc6a0ec1093db8fa1862c5f546f1732e504cb9456a7322af96c5b5b6d0b8e44394d662eb5df846393bbe3a8d86ad06ab4a38963c5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.48.0 (2023-04-30)
4
+
5
+ * Regenerated from discovery document revision 20230406
6
+
3
7
  ### v0.47.0 (2023-04-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20230404
@@ -119,6 +119,11 @@ module Google
119
119
  # @return [Google::Apis::ContainerV1beta1::GcpFilestoreCsiDriverConfig]
120
120
  attr_accessor :gcp_filestore_csi_driver_config
121
121
 
122
+ # Configuration for the Cloud Storage Fuse CSI driver.
123
+ # Corresponds to the JSON property `gcsFuseCsiDriverConfig`
124
+ # @return [Google::Apis::ContainerV1beta1::GcsFuseCsiDriverConfig]
125
+ attr_accessor :gcs_fuse_csi_driver_config
126
+
122
127
  # Configuration for the Backup for GKE Agent.
123
128
  # Corresponds to the JSON property `gkeBackupAgentConfig`
124
129
  # @return [Google::Apis::ContainerV1beta1::GkeBackupAgentConfig]
@@ -170,6 +175,7 @@ module Google
170
175
  @dns_cache_config = args[:dns_cache_config] if args.key?(:dns_cache_config)
171
176
  @gce_persistent_disk_csi_driver_config = args[:gce_persistent_disk_csi_driver_config] if args.key?(:gce_persistent_disk_csi_driver_config)
172
177
  @gcp_filestore_csi_driver_config = args[:gcp_filestore_csi_driver_config] if args.key?(:gcp_filestore_csi_driver_config)
178
+ @gcs_fuse_csi_driver_config = args[:gcs_fuse_csi_driver_config] if args.key?(:gcs_fuse_csi_driver_config)
173
179
  @gke_backup_agent_config = args[:gke_backup_agent_config] if args.key?(:gke_backup_agent_config)
174
180
  @horizontal_pod_autoscaling = args[:horizontal_pod_autoscaling] if args.key?(:horizontal_pod_autoscaling)
175
181
  @http_load_balancing = args[:http_load_balancing] if args.key?(:http_load_balancing)
@@ -2303,6 +2309,26 @@ module Google
2303
2309
  end
2304
2310
  end
2305
2311
 
2312
+ # Configuration for the Cloud Storage Fuse CSI driver.
2313
+ class GcsFuseCsiDriverConfig
2314
+ include Google::Apis::Core::Hashable
2315
+
2316
+ # Whether the Cloud Storage Fuse CSI driver is enabled for this cluster.
2317
+ # Corresponds to the JSON property `enabled`
2318
+ # @return [Boolean]
2319
+ attr_accessor :enabled
2320
+ alias_method :enabled?, :enabled
2321
+
2322
+ def initialize(**args)
2323
+ update!(**args)
2324
+ end
2325
+
2326
+ # Update properties of this object
2327
+ def update!(**args)
2328
+ @enabled = args[:enabled] if args.key?(:enabled)
2329
+ end
2330
+ end
2331
+
2306
2332
  # GetJSONWebKeysResponse is a valid JSON Web Key Set as specififed in rfc 7517
2307
2333
  class GetJsonWebKeysResponse
2308
2334
  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.47.0"
19
+ GEM_VERSION = "0.48.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230404"
25
+ REVISION = "20230406"
26
26
  end
27
27
  end
28
28
  end
@@ -298,6 +298,12 @@ module Google
298
298
  include Google::Apis::Core::JsonObjectSupport
299
299
  end
300
300
 
301
+ class GcsFuseCsiDriverConfig
302
+ class Representation < Google::Apis::Core::JsonRepresentation; end
303
+
304
+ include Google::Apis::Core::JsonObjectSupport
305
+ end
306
+
301
307
  class GetJsonWebKeysResponse
302
308
  class Representation < Google::Apis::Core::JsonRepresentation; end
303
309
 
@@ -1032,6 +1038,8 @@ module Google
1032
1038
 
1033
1039
  property :gcp_filestore_csi_driver_config, as: 'gcpFilestoreCsiDriverConfig', class: Google::Apis::ContainerV1beta1::GcpFilestoreCsiDriverConfig, decorator: Google::Apis::ContainerV1beta1::GcpFilestoreCsiDriverConfig::Representation
1034
1040
 
1041
+ property :gcs_fuse_csi_driver_config, as: 'gcsFuseCsiDriverConfig', class: Google::Apis::ContainerV1beta1::GcsFuseCsiDriverConfig, decorator: Google::Apis::ContainerV1beta1::GcsFuseCsiDriverConfig::Representation
1042
+
1035
1043
  property :gke_backup_agent_config, as: 'gkeBackupAgentConfig', class: Google::Apis::ContainerV1beta1::GkeBackupAgentConfig, decorator: Google::Apis::ContainerV1beta1::GkeBackupAgentConfig::Representation
1036
1044
 
1037
1045
  property :horizontal_pod_autoscaling, as: 'horizontalPodAutoscaling', class: Google::Apis::ContainerV1beta1::HorizontalPodAutoscaling, decorator: Google::Apis::ContainerV1beta1::HorizontalPodAutoscaling::Representation
@@ -1599,6 +1607,13 @@ module Google
1599
1607
  end
1600
1608
  end
1601
1609
 
1610
+ class GcsFuseCsiDriverConfig
1611
+ # @private
1612
+ class Representation < Google::Apis::Core::JsonRepresentation
1613
+ property :enabled, as: 'enabled'
1614
+ end
1615
+ end
1616
+
1602
1617
  class GetJsonWebKeysResponse
1603
1618
  # @private
1604
1619
  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.47.0
4
+ version: 0.48.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-04-23 00:00:00.000000000 Z
11
+ date: 2023-04-30 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.47.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.48.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: []