google-apis-container_v1beta1 0.18.0 → 0.22.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: 0d803116c9a635412efbd3d57f5bb7fa632f6d4062ad0d3cf83bab106cea80dc
4
- data.tar.gz: cfc859c42cc3d9824c7dbd8b4899111a618f5787c89f0b336612ecc33a590ee4
3
+ metadata.gz: dd85c7d6376f7fd4c5008875cf8f8fe49d2831ac3990b77e7aa06545390f3a8f
4
+ data.tar.gz: d15854505ecd7f3bbb6e3f6fc61487c85c80bc2aeb0018f1fb248844469a19be
5
5
  SHA512:
6
- metadata.gz: c0b68ed92ffcc0c0f03932b25acec470786baca9030e8f81b62b9188b30b64f7a1886ae9a3c603245507ec4f10ea164479f40e1939dd7598609e6031870bbe97
7
- data.tar.gz: ba23a44bd708744739fb28e6d419385cc080572b25c7aa1a8c4c68b7cdf36b5c3846653685026b4667e154ae70af9017eefd17be099834c2bb08b22900f71c0e
6
+ metadata.gz: e39594a890de1e78dfed1a41799dbfc48ad4f530af591e852b037e30ab7335d9c9c377bf6b9cca5da0c0fb7d09e627be43f10594c6fa3c5d09c0fb9a7e31e63b
7
+ data.tar.gz: 31b84211c102cd121d3fec96a3767c62ab2ffc97ca8edd2f719d715b9409e39f2acde2654652682085bd2244c8aa85c1a8c1d1b6735e715bf6cebda03642c92e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.22.0 (2021-10-28)
4
+
5
+ * Regenerated from discovery document revision 20211014
6
+
7
+ ### v0.21.0 (2021-10-26)
8
+
9
+ * Regenerated from discovery document revision 20211008
10
+ * Unspecified changes
11
+
12
+ ### v0.20.0 (2021-10-02)
13
+
14
+ * Regenerated from discovery document revision 20210914
15
+
16
+ ### v0.19.0 (2021-09-21)
17
+
18
+ * Regenerated from discovery document revision 20210906
19
+
3
20
  ### v0.18.0 (2021-09-03)
4
21
 
5
22
  * Regenerated from discovery document revision 20210820
data/OVERVIEW.md CHANGED
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Container service in particular.)
67
67
 
@@ -141,6 +141,27 @@ module Google
141
141
  end
142
142
  end
143
143
 
144
+ # Specifies options for controlling advanced machine features.
145
+ class AdvancedMachineFeatures
146
+ include Google::Apis::Core::Hashable
147
+
148
+ # The number of threads per physical core. To disable simultaneous
149
+ # multithreading (SMT) set this to 1. If unset, the maximum number of threads
150
+ # supported per core by the underlying processor is assumed.
151
+ # Corresponds to the JSON property `threadsPerCore`
152
+ # @return [Fixnum]
153
+ attr_accessor :threads_per_core
154
+
155
+ def initialize(**args)
156
+ update!(**args)
157
+ end
158
+
159
+ # Update properties of this object
160
+ def update!(**args)
161
+ @threads_per_core = args[:threads_per_core] if args.key?(:threads_per_core)
162
+ end
163
+ end
164
+
144
165
  # Configuration for returning group information from authenticators.
145
166
  class AuthenticatorGroupsConfig
146
167
  include Google::Apis::Core::Hashable
@@ -747,6 +768,11 @@ module Google
747
768
  # @return [String]
748
769
  attr_accessor :master_ipv4_cidr_block
749
770
 
771
+ # Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
772
+ # Corresponds to the JSON property `meshCertificates`
773
+ # @return [Google::Apis::ContainerV1beta1::MeshCertificates]
774
+ attr_accessor :mesh_certificates
775
+
750
776
  # MonitoringConfig is cluster monitoring configuration.
751
777
  # Corresponds to the JSON property `monitoringConfig`
752
778
  # @return [Google::Apis::ContainerV1beta1::MonitoringConfig]
@@ -971,6 +997,7 @@ module Google
971
997
  @master_auth = args[:master_auth] if args.key?(:master_auth)
972
998
  @master_authorized_networks_config = args[:master_authorized_networks_config] if args.key?(:master_authorized_networks_config)
973
999
  @master_ipv4_cidr_block = args[:master_ipv4_cidr_block] if args.key?(:master_ipv4_cidr_block)
1000
+ @mesh_certificates = args[:mesh_certificates] if args.key?(:mesh_certificates)
974
1001
  @monitoring_config = args[:monitoring_config] if args.key?(:monitoring_config)
975
1002
  @monitoring_service = args[:monitoring_service] if args.key?(:monitoring_service)
976
1003
  @name = args[:name] if args.key?(:name)
@@ -1087,11 +1114,6 @@ module Google
1087
1114
  # @return [Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig]
1088
1115
  attr_accessor :desired_authenticator_groups_config
1089
1116
 
1090
- # Autopilot is the configuration for Autopilot settings on the cluster.
1091
- # Corresponds to the JSON property `desiredAutopilot`
1092
- # @return [Google::Apis::ContainerV1beta1::Autopilot]
1093
- attr_accessor :desired_autopilot
1094
-
1095
1117
  # Configuration for Binary Authorization.
1096
1118
  # Corresponds to the JSON property `desiredBinaryAuthorization`
1097
1119
  # @return [Google::Apis::ContainerV1beta1::BinaryAuthorization]
@@ -1130,6 +1152,11 @@ module Google
1130
1152
  # @return [Google::Apis::ContainerV1beta1::DnsConfig]
1131
1153
  attr_accessor :desired_dns_config
1132
1154
 
1155
+ # GcfsConfig contains configurations of Google Container File System.
1156
+ # Corresponds to the JSON property `desiredGcfsConfig`
1157
+ # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
1158
+ attr_accessor :desired_gcfs_config
1159
+
1133
1160
  # IdentityServiceConfig is configuration for Identity Service which allows
1134
1161
  # customers to use external identity providers with the K8S API
1135
1162
  # Corresponds to the JSON property `desiredIdentityServiceConfig`
@@ -1203,6 +1230,11 @@ module Google
1203
1230
  # @return [String]
1204
1231
  attr_accessor :desired_master_version
1205
1232
 
1233
+ # Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
1234
+ # Corresponds to the JSON property `desiredMeshCertificates`
1235
+ # @return [Google::Apis::ContainerV1beta1::MeshCertificates]
1236
+ attr_accessor :desired_mesh_certificates
1237
+
1206
1238
  # MonitoringConfig is cluster monitoring configuration.
1207
1239
  # Corresponds to the JSON property `desiredMonitoringConfig`
1208
1240
  # @return [Google::Apis::ContainerV1beta1::MonitoringConfig]
@@ -1317,7 +1349,6 @@ module Google
1317
1349
  def update!(**args)
1318
1350
  @desired_addons_config = args[:desired_addons_config] if args.key?(:desired_addons_config)
1319
1351
  @desired_authenticator_groups_config = args[:desired_authenticator_groups_config] if args.key?(:desired_authenticator_groups_config)
1320
- @desired_autopilot = args[:desired_autopilot] if args.key?(:desired_autopilot)
1321
1352
  @desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
1322
1353
  @desired_cluster_autoscaling = args[:desired_cluster_autoscaling] if args.key?(:desired_cluster_autoscaling)
1323
1354
  @desired_cluster_telemetry = args[:desired_cluster_telemetry] if args.key?(:desired_cluster_telemetry)
@@ -1325,6 +1356,7 @@ module Google
1325
1356
  @desired_datapath_provider = args[:desired_datapath_provider] if args.key?(:desired_datapath_provider)
1326
1357
  @desired_default_snat_status = args[:desired_default_snat_status] if args.key?(:desired_default_snat_status)
1327
1358
  @desired_dns_config = args[:desired_dns_config] if args.key?(:desired_dns_config)
1359
+ @desired_gcfs_config = args[:desired_gcfs_config] if args.key?(:desired_gcfs_config)
1328
1360
  @desired_identity_service_config = args[:desired_identity_service_config] if args.key?(:desired_identity_service_config)
1329
1361
  @desired_image_type = args[:desired_image_type] if args.key?(:desired_image_type)
1330
1362
  @desired_intra_node_visibility_config = args[:desired_intra_node_visibility_config] if args.key?(:desired_intra_node_visibility_config)
@@ -1335,6 +1367,7 @@ module Google
1335
1367
  @desired_master = args[:desired_master] if args.key?(:desired_master)
1336
1368
  @desired_master_authorized_networks_config = args[:desired_master_authorized_networks_config] if args.key?(:desired_master_authorized_networks_config)
1337
1369
  @desired_master_version = args[:desired_master_version] if args.key?(:desired_master_version)
1370
+ @desired_mesh_certificates = args[:desired_mesh_certificates] if args.key?(:desired_mesh_certificates)
1338
1371
  @desired_monitoring_config = args[:desired_monitoring_config] if args.key?(:desired_monitoring_config)
1339
1372
  @desired_monitoring_service = args[:desired_monitoring_service] if args.key?(:desired_monitoring_service)
1340
1373
  @desired_node_pool_autoscaling = args[:desired_node_pool_autoscaling] if args.key?(:desired_node_pool_autoscaling)
@@ -1794,6 +1827,26 @@ module Google
1794
1827
  end
1795
1828
  end
1796
1829
 
1830
+ # GcfsConfig contains configurations of Google Container File System.
1831
+ class GcfsConfig
1832
+ include Google::Apis::Core::Hashable
1833
+
1834
+ # Whether to use GCFS.
1835
+ # Corresponds to the JSON property `enabled`
1836
+ # @return [Boolean]
1837
+ attr_accessor :enabled
1838
+ alias_method :enabled?, :enabled
1839
+
1840
+ def initialize(**args)
1841
+ update!(**args)
1842
+ end
1843
+
1844
+ # Update properties of this object
1845
+ def update!(**args)
1846
+ @enabled = args[:enabled] if args.key?(:enabled)
1847
+ end
1848
+ end
1849
+
1797
1850
  # Configuration for the GCP Filestore CSI driver.
1798
1851
  class GcpFilestoreCsiDriverConfig
1799
1852
  include Google::Apis::Core::Hashable
@@ -2756,6 +2809,30 @@ module Google
2756
2809
  end
2757
2810
  end
2758
2811
 
2812
+ # Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
2813
+ class MeshCertificates
2814
+ include Google::Apis::Core::Hashable
2815
+
2816
+ # enable_certificates controls issuance of workload mTLS certificates. If set,
2817
+ # the GKE Workload Identity Certificates controller and node agent will be
2818
+ # deployed in the cluster, which can then be configured by creating a
2819
+ # WorkloadCertificateConfig Custom Resource. Requires Workload Identity (
2820
+ # workload_pool must be non-empty).
2821
+ # Corresponds to the JSON property `enableCertificates`
2822
+ # @return [Boolean]
2823
+ attr_accessor :enable_certificates
2824
+ alias_method :enable_certificates?, :enable_certificates
2825
+
2826
+ def initialize(**args)
2827
+ update!(**args)
2828
+ end
2829
+
2830
+ # Update properties of this object
2831
+ def update!(**args)
2832
+ @enable_certificates = args[:enable_certificates] if args.key?(:enable_certificates)
2833
+ end
2834
+ end
2835
+
2759
2836
  # Progress metric is (string, int|float|string) pair.
2760
2837
  class Metric
2761
2838
  include Google::Apis::Core::Hashable
@@ -2989,6 +3066,11 @@ module Google
2989
3066
  # @return [Array<Google::Apis::ContainerV1beta1::AcceleratorConfig>]
2990
3067
  attr_accessor :accelerators
2991
3068
 
3069
+ # Specifies options for controlling advanced machine features.
3070
+ # Corresponds to the JSON property `advancedMachineFeatures`
3071
+ # @return [Google::Apis::ContainerV1beta1::AdvancedMachineFeatures]
3072
+ attr_accessor :advanced_machine_features
3073
+
2992
3074
  # The Customer Managed Encryption Key used to encrypt the boot disk attached to
2993
3075
  # each node in the node pool. This should be of the form projects/[
2994
3076
  # KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]
@@ -3016,6 +3098,11 @@ module Google
3016
3098
  # @return [Google::Apis::ContainerV1beta1::EphemeralStorageConfig]
3017
3099
  attr_accessor :ephemeral_storage_config
3018
3100
 
3101
+ # GcfsConfig contains configurations of Google Container File System.
3102
+ # Corresponds to the JSON property `gcfsConfig`
3103
+ # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
3104
+ attr_accessor :gcfs_config
3105
+
3019
3106
  # Configuration of gVNIC feature.
3020
3107
  # Corresponds to the JSON property `gvnic`
3021
3108
  # @return [Google::Apis::ContainerV1beta1::VirtualNic]
@@ -3143,6 +3230,13 @@ module Google
3143
3230
  # @return [Google::Apis::ContainerV1beta1::ShieldedInstanceConfig]
3144
3231
  attr_accessor :shielded_instance_config
3145
3232
 
3233
+ # Spot flag for enabling Spot VM, which is a rebrand of the existing preemptible
3234
+ # flag.
3235
+ # Corresponds to the JSON property `spot`
3236
+ # @return [Boolean]
3237
+ attr_accessor :spot
3238
+ alias_method :spot?, :spot
3239
+
3146
3240
  # The list of instance tags applied to all nodes. Tags are used to identify
3147
3241
  # valid sources or targets for network firewalls and are specified by the client
3148
3242
  # during cluster or node pool creation. Each tag within the list must comply
@@ -3171,10 +3265,12 @@ module Google
3171
3265
  # Update properties of this object
3172
3266
  def update!(**args)
3173
3267
  @accelerators = args[:accelerators] if args.key?(:accelerators)
3268
+ @advanced_machine_features = args[:advanced_machine_features] if args.key?(:advanced_machine_features)
3174
3269
  @boot_disk_kms_key = args[:boot_disk_kms_key] if args.key?(:boot_disk_kms_key)
3175
3270
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
3176
3271
  @disk_type = args[:disk_type] if args.key?(:disk_type)
3177
3272
  @ephemeral_storage_config = args[:ephemeral_storage_config] if args.key?(:ephemeral_storage_config)
3273
+ @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
3178
3274
  @gvnic = args[:gvnic] if args.key?(:gvnic)
3179
3275
  @image_type = args[:image_type] if args.key?(:image_type)
3180
3276
  @kubelet_config = args[:kubelet_config] if args.key?(:kubelet_config)
@@ -3191,6 +3287,7 @@ module Google
3191
3287
  @sandbox_config = args[:sandbox_config] if args.key?(:sandbox_config)
3192
3288
  @service_account = args[:service_account] if args.key?(:service_account)
3193
3289
  @shielded_instance_config = args[:shielded_instance_config] if args.key?(:shielded_instance_config)
3290
+ @spot = args[:spot] if args.key?(:spot)
3194
3291
  @tags = args[:tags] if args.key?(:tags)
3195
3292
  @taints = args[:taints] if args.key?(:taints)
3196
3293
  @workload_metadata_config = args[:workload_metadata_config] if args.key?(:workload_metadata_config)
@@ -3201,12 +3298,18 @@ module Google
3201
3298
  class NodeConfigDefaults
3202
3299
  include Google::Apis::Core::Hashable
3203
3300
 
3301
+ # GcfsConfig contains configurations of Google Container File System.
3302
+ # Corresponds to the JSON property `gcfsConfig`
3303
+ # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
3304
+ attr_accessor :gcfs_config
3305
+
3204
3306
  def initialize(**args)
3205
3307
  update!(**args)
3206
3308
  end
3207
3309
 
3208
3310
  # Update properties of this object
3209
3311
  def update!(**args)
3312
+ @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
3210
3313
  end
3211
3314
  end
3212
3315
 
@@ -3515,13 +3618,14 @@ module Google
3515
3618
  attr_accessor :enabled
3516
3619
  alias_method :enabled?, :enabled
3517
3620
 
3518
- # Maximum number of nodes in the NodePool. Must be >= min_node_count. There has
3519
- # to be enough quota to scale up the cluster.
3621
+ # Maximum number of nodes for one location in the NodePool. Must be >=
3622
+ # min_node_count. There has to be enough quota to scale up the cluster.
3520
3623
  # Corresponds to the JSON property `maxNodeCount`
3521
3624
  # @return [Fixnum]
3522
3625
  attr_accessor :max_node_count
3523
3626
 
3524
- # Minimum number of nodes in the NodePool. Must be >= 1 and <= max_node_count.
3627
+ # Minimum number of nodes for one location in the NodePool. Must be >= 1 and <=
3628
+ # max_node_count.
3525
3629
  # Corresponds to the JSON property `minNodeCount`
3526
3630
  # @return [Fixnum]
3527
3631
  attr_accessor :min_node_count
@@ -5274,6 +5378,11 @@ module Google
5274
5378
  # @return [String]
5275
5379
  attr_accessor :cluster_id
5276
5380
 
5381
+ # GcfsConfig contains configurations of Google Container File System.
5382
+ # Corresponds to the JSON property `gcfsConfig`
5383
+ # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
5384
+ attr_accessor :gcfs_config
5385
+
5277
5386
  # Configuration of gVNIC feature.
5278
5387
  # Corresponds to the JSON property `gvnic`
5279
5388
  # @return [Google::Apis::ContainerV1beta1::VirtualNic]
@@ -5377,6 +5486,7 @@ module Google
5377
5486
  # Update properties of this object
5378
5487
  def update!(**args)
5379
5488
  @cluster_id = args[:cluster_id] if args.key?(:cluster_id)
5489
+ @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
5380
5490
  @gvnic = args[:gvnic] if args.key?(:gvnic)
5381
5491
  @image_type = args[:image_type] if args.key?(:image_type)
5382
5492
  @kubelet_config = args[:kubelet_config] if args.key?(:kubelet_config)
@@ -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.18.0"
19
+ GEM_VERSION = "0.22.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210820"
25
+ REVISION = "20211014"
26
26
  end
27
27
  end
28
28
  end
@@ -34,6 +34,12 @@ module Google
34
34
  include Google::Apis::Core::JsonObjectSupport
35
35
  end
36
36
 
37
+ class AdvancedMachineFeatures
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
37
43
  class AuthenticatorGroupsConfig
38
44
  class Representation < Google::Apis::Core::JsonRepresentation; end
39
45
 
@@ -214,6 +220,12 @@ module Google
214
220
  include Google::Apis::Core::JsonObjectSupport
215
221
  end
216
222
 
223
+ class GcfsConfig
224
+ class Representation < Google::Apis::Core::JsonRepresentation; end
225
+
226
+ include Google::Apis::Core::JsonObjectSupport
227
+ end
228
+
217
229
  class GcpFilestoreCsiDriverConfig
218
230
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
231
 
@@ -394,6 +406,12 @@ module Google
394
406
  include Google::Apis::Core::JsonObjectSupport
395
407
  end
396
408
 
409
+ class MeshCertificates
410
+ class Representation < Google::Apis::Core::JsonRepresentation; end
411
+
412
+ include Google::Apis::Core::JsonObjectSupport
413
+ end
414
+
397
415
  class Metric
398
416
  class Representation < Google::Apis::Core::JsonRepresentation; end
399
417
 
@@ -845,6 +863,13 @@ module Google
845
863
  end
846
864
  end
847
865
 
866
+ class AdvancedMachineFeatures
867
+ # @private
868
+ class Representation < Google::Apis::Core::JsonRepresentation
869
+ property :threads_per_core, :numeric_string => true, as: 'threadsPerCore'
870
+ end
871
+ end
872
+
848
873
  class AuthenticatorGroupsConfig
849
874
  # @private
850
875
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1000,6 +1025,8 @@ module Google
1000
1025
  property :master_authorized_networks_config, as: 'masterAuthorizedNetworksConfig', class: Google::Apis::ContainerV1beta1::MasterAuthorizedNetworksConfig, decorator: Google::Apis::ContainerV1beta1::MasterAuthorizedNetworksConfig::Representation
1001
1026
 
1002
1027
  property :master_ipv4_cidr_block, as: 'masterIpv4CidrBlock'
1028
+ property :mesh_certificates, as: 'meshCertificates', class: Google::Apis::ContainerV1beta1::MeshCertificates, decorator: Google::Apis::ContainerV1beta1::MeshCertificates::Representation
1029
+
1003
1030
  property :monitoring_config, as: 'monitoringConfig', class: Google::Apis::ContainerV1beta1::MonitoringConfig, decorator: Google::Apis::ContainerV1beta1::MonitoringConfig::Representation
1004
1031
 
1005
1032
  property :monitoring_service, as: 'monitoringService'
@@ -1075,8 +1102,6 @@ module Google
1075
1102
 
1076
1103
  property :desired_authenticator_groups_config, as: 'desiredAuthenticatorGroupsConfig', class: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig::Representation
1077
1104
 
1078
- property :desired_autopilot, as: 'desiredAutopilot', class: Google::Apis::ContainerV1beta1::Autopilot, decorator: Google::Apis::ContainerV1beta1::Autopilot::Representation
1079
-
1080
1105
  property :desired_binary_authorization, as: 'desiredBinaryAuthorization', class: Google::Apis::ContainerV1beta1::BinaryAuthorization, decorator: Google::Apis::ContainerV1beta1::BinaryAuthorization::Representation
1081
1106
 
1082
1107
  property :desired_cluster_autoscaling, as: 'desiredClusterAutoscaling', class: Google::Apis::ContainerV1beta1::ClusterAutoscaling, decorator: Google::Apis::ContainerV1beta1::ClusterAutoscaling::Representation
@@ -1090,6 +1115,8 @@ module Google
1090
1115
 
1091
1116
  property :desired_dns_config, as: 'desiredDnsConfig', class: Google::Apis::ContainerV1beta1::DnsConfig, decorator: Google::Apis::ContainerV1beta1::DnsConfig::Representation
1092
1117
 
1118
+ property :desired_gcfs_config, as: 'desiredGcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
1119
+
1093
1120
  property :desired_identity_service_config, as: 'desiredIdentityServiceConfig', class: Google::Apis::ContainerV1beta1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1beta1::IdentityServiceConfig::Representation
1094
1121
 
1095
1122
  property :desired_image_type, as: 'desiredImageType'
@@ -1106,6 +1133,8 @@ module Google
1106
1133
  property :desired_master_authorized_networks_config, as: 'desiredMasterAuthorizedNetworksConfig', class: Google::Apis::ContainerV1beta1::MasterAuthorizedNetworksConfig, decorator: Google::Apis::ContainerV1beta1::MasterAuthorizedNetworksConfig::Representation
1107
1134
 
1108
1135
  property :desired_master_version, as: 'desiredMasterVersion'
1136
+ property :desired_mesh_certificates, as: 'desiredMeshCertificates', class: Google::Apis::ContainerV1beta1::MeshCertificates, decorator: Google::Apis::ContainerV1beta1::MeshCertificates::Representation
1137
+
1109
1138
  property :desired_monitoring_config, as: 'desiredMonitoringConfig', class: Google::Apis::ContainerV1beta1::MonitoringConfig, decorator: Google::Apis::ContainerV1beta1::MonitoringConfig::Representation
1110
1139
 
1111
1140
  property :desired_monitoring_service, as: 'desiredMonitoringService'
@@ -1261,6 +1290,13 @@ module Google
1261
1290
  end
1262
1291
  end
1263
1292
 
1293
+ class GcfsConfig
1294
+ # @private
1295
+ class Representation < Google::Apis::Core::JsonRepresentation
1296
+ property :enabled, as: 'enabled'
1297
+ end
1298
+ end
1299
+
1264
1300
  class GcpFilestoreCsiDriverConfig
1265
1301
  # @private
1266
1302
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1532,6 +1568,13 @@ module Google
1532
1568
  end
1533
1569
  end
1534
1570
 
1571
+ class MeshCertificates
1572
+ # @private
1573
+ class Representation < Google::Apis::Core::JsonRepresentation
1574
+ property :enable_certificates, as: 'enableCertificates'
1575
+ end
1576
+ end
1577
+
1535
1578
  class Metric
1536
1579
  # @private
1537
1580
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1602,11 +1645,15 @@ module Google
1602
1645
  class Representation < Google::Apis::Core::JsonRepresentation
1603
1646
  collection :accelerators, as: 'accelerators', class: Google::Apis::ContainerV1beta1::AcceleratorConfig, decorator: Google::Apis::ContainerV1beta1::AcceleratorConfig::Representation
1604
1647
 
1648
+ property :advanced_machine_features, as: 'advancedMachineFeatures', class: Google::Apis::ContainerV1beta1::AdvancedMachineFeatures, decorator: Google::Apis::ContainerV1beta1::AdvancedMachineFeatures::Representation
1649
+
1605
1650
  property :boot_disk_kms_key, as: 'bootDiskKmsKey'
1606
1651
  property :disk_size_gb, as: 'diskSizeGb'
1607
1652
  property :disk_type, as: 'diskType'
1608
1653
  property :ephemeral_storage_config, as: 'ephemeralStorageConfig', class: Google::Apis::ContainerV1beta1::EphemeralStorageConfig, decorator: Google::Apis::ContainerV1beta1::EphemeralStorageConfig::Representation
1609
1654
 
1655
+ property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
1656
+
1610
1657
  property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1beta1::VirtualNic, decorator: Google::Apis::ContainerV1beta1::VirtualNic::Representation
1611
1658
 
1612
1659
  property :image_type, as: 'imageType'
@@ -1629,6 +1676,7 @@ module Google
1629
1676
  property :service_account, as: 'serviceAccount'
1630
1677
  property :shielded_instance_config, as: 'shieldedInstanceConfig', class: Google::Apis::ContainerV1beta1::ShieldedInstanceConfig, decorator: Google::Apis::ContainerV1beta1::ShieldedInstanceConfig::Representation
1631
1678
 
1679
+ property :spot, as: 'spot'
1632
1680
  collection :tags, as: 'tags'
1633
1681
  collection :taints, as: 'taints', class: Google::Apis::ContainerV1beta1::NodeTaint, decorator: Google::Apis::ContainerV1beta1::NodeTaint::Representation
1634
1682
 
@@ -1640,6 +1688,8 @@ module Google
1640
1688
  class NodeConfigDefaults
1641
1689
  # @private
1642
1690
  class Representation < Google::Apis::Core::JsonRepresentation
1691
+ property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
1692
+
1643
1693
  end
1644
1694
  end
1645
1695
 
@@ -2151,6 +2201,8 @@ module Google
2151
2201
  # @private
2152
2202
  class Representation < Google::Apis::Core::JsonRepresentation
2153
2203
  property :cluster_id, as: 'clusterId'
2204
+ property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
2205
+
2154
2206
  property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1beta1::VirtualNic, decorator: Google::Apis::ContainerV1beta1::VirtualNic::Representation
2155
2207
 
2156
2208
  property :image_type, as: 'imageType'
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.18.0
4
+ version: 0.22.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: 2021-09-06 00:00:00.000000000 Z
11
+ date: 2021-11-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.18.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1beta1
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.22.0
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: []
65
65
  require_paths: