google-apis-container_v1beta1 0.19.0 → 0.23.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: ae20aa21456c906a1590208749b13de40893a41922d91d2613f81d2f98c0074c
4
- data.tar.gz: 9b512b26c8a5f739f92663d6fe1c74ee4cba8c80cf400189845929c5f2a7a9ed
3
+ metadata.gz: 4aef4d5afd30510123dadf739122559f3c9051d4f3e2f99cdd65c56fdec83e91
4
+ data.tar.gz: bb28583f711d7b4fddc722c15db5bcb7135b878a18a617055c0dd84335ce58ce
5
5
  SHA512:
6
- metadata.gz: 58ee8af1ddbf1081e7cf0e6fa6ddf9238de47aad8b90651922602035769274696cc8defffe36442b70d7fe124011a0506bb4365ab2cbe642dc6eeb3c80309f6a
7
- data.tar.gz: a16ccacc6633bae2b8cf4105a40fb0075abb7d8eb09f11ba04a2959935597d91dc2bf1cebe2d466b793db486dd0487ff8e91fb2bda3cbf2bcbbff04868dba4bc
6
+ metadata.gz: ac6c9b639762a74e2406a0ae9e5ed06a76d36664f24484017453ade4eaf486211e1a4d8dc38ea29c383377ac73727428617195d96f6a031459695f0dab90a4b0
7
+ data.tar.gz: aa805a7df02c8fd525904c0414fa2f68a91072f896f16adf81979c28cec905750c1e169423ef185e9c52d1dc63f3c0d430d37e19af7fee7a7c05c59af457f91c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.23.0 (2021-11-16)
4
+
5
+ * Regenerated from discovery document revision 20211104
6
+
7
+ ### v0.22.0 (2021-10-28)
8
+
9
+ * Regenerated from discovery document revision 20211014
10
+
11
+ ### v0.21.0 (2021-10-26)
12
+
13
+ * Regenerated from discovery document revision 20211008
14
+ * Unspecified changes
15
+
16
+ ### v0.20.0 (2021-10-02)
17
+
18
+ * Regenerated from discovery document revision 20210914
19
+
3
20
  ### v0.19.0 (2021-09-21)
4
21
 
5
22
  * Regenerated from discovery document revision 20210906
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
@@ -2630,6 +2683,27 @@ module Google
2630
2683
  end
2631
2684
  end
2632
2685
 
2686
+ # ManagedPrometheusConfig defines the configuration for Google Cloud Managed
2687
+ # Service for Prometheus.
2688
+ class ManagedPrometheusConfig
2689
+ include Google::Apis::Core::Hashable
2690
+
2691
+ # Enable Managed Collection.
2692
+ # Corresponds to the JSON property `enabled`
2693
+ # @return [Boolean]
2694
+ attr_accessor :enabled
2695
+ alias_method :enabled?, :enabled
2696
+
2697
+ def initialize(**args)
2698
+ update!(**args)
2699
+ end
2700
+
2701
+ # Update properties of this object
2702
+ def update!(**args)
2703
+ @enabled = args[:enabled] if args.key?(:enabled)
2704
+ end
2705
+ end
2706
+
2633
2707
  # Master is the configuration for components on master.
2634
2708
  class Master
2635
2709
  include Google::Apis::Core::Hashable
@@ -2756,6 +2830,30 @@ module Google
2756
2830
  end
2757
2831
  end
2758
2832
 
2833
+ # Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
2834
+ class MeshCertificates
2835
+ include Google::Apis::Core::Hashable
2836
+
2837
+ # enable_certificates controls issuance of workload mTLS certificates. If set,
2838
+ # the GKE Workload Identity Certificates controller and node agent will be
2839
+ # deployed in the cluster, which can then be configured by creating a
2840
+ # WorkloadCertificateConfig Custom Resource. Requires Workload Identity (
2841
+ # workload_pool must be non-empty).
2842
+ # Corresponds to the JSON property `enableCertificates`
2843
+ # @return [Boolean]
2844
+ attr_accessor :enable_certificates
2845
+ alias_method :enable_certificates?, :enable_certificates
2846
+
2847
+ def initialize(**args)
2848
+ update!(**args)
2849
+ end
2850
+
2851
+ # Update properties of this object
2852
+ def update!(**args)
2853
+ @enable_certificates = args[:enable_certificates] if args.key?(:enable_certificates)
2854
+ end
2855
+ end
2856
+
2759
2857
  # Progress metric is (string, int|float|string) pair.
2760
2858
  class Metric
2761
2859
  include Google::Apis::Core::Hashable
@@ -2822,6 +2920,12 @@ module Google
2822
2920
  # @return [Google::Apis::ContainerV1beta1::MonitoringComponentConfig]
2823
2921
  attr_accessor :component_config
2824
2922
 
2923
+ # ManagedPrometheusConfig defines the configuration for Google Cloud Managed
2924
+ # Service for Prometheus.
2925
+ # Corresponds to the JSON property `managedPrometheusConfig`
2926
+ # @return [Google::Apis::ContainerV1beta1::ManagedPrometheusConfig]
2927
+ attr_accessor :managed_prometheus_config
2928
+
2825
2929
  def initialize(**args)
2826
2930
  update!(**args)
2827
2931
  end
@@ -2829,6 +2933,7 @@ module Google
2829
2933
  # Update properties of this object
2830
2934
  def update!(**args)
2831
2935
  @component_config = args[:component_config] if args.key?(:component_config)
2936
+ @managed_prometheus_config = args[:managed_prometheus_config] if args.key?(:managed_prometheus_config)
2832
2937
  end
2833
2938
  end
2834
2939
 
@@ -2989,6 +3094,11 @@ module Google
2989
3094
  # @return [Array<Google::Apis::ContainerV1beta1::AcceleratorConfig>]
2990
3095
  attr_accessor :accelerators
2991
3096
 
3097
+ # Specifies options for controlling advanced machine features.
3098
+ # Corresponds to the JSON property `advancedMachineFeatures`
3099
+ # @return [Google::Apis::ContainerV1beta1::AdvancedMachineFeatures]
3100
+ attr_accessor :advanced_machine_features
3101
+
2992
3102
  # The Customer Managed Encryption Key used to encrypt the boot disk attached to
2993
3103
  # each node in the node pool. This should be of the form projects/[
2994
3104
  # KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]
@@ -3016,6 +3126,11 @@ module Google
3016
3126
  # @return [Google::Apis::ContainerV1beta1::EphemeralStorageConfig]
3017
3127
  attr_accessor :ephemeral_storage_config
3018
3128
 
3129
+ # GcfsConfig contains configurations of Google Container File System.
3130
+ # Corresponds to the JSON property `gcfsConfig`
3131
+ # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
3132
+ attr_accessor :gcfs_config
3133
+
3019
3134
  # Configuration of gVNIC feature.
3020
3135
  # Corresponds to the JSON property `gvnic`
3021
3136
  # @return [Google::Apis::ContainerV1beta1::VirtualNic]
@@ -3143,6 +3258,13 @@ module Google
3143
3258
  # @return [Google::Apis::ContainerV1beta1::ShieldedInstanceConfig]
3144
3259
  attr_accessor :shielded_instance_config
3145
3260
 
3261
+ # Spot flag for enabling Spot VM, which is a rebrand of the existing preemptible
3262
+ # flag.
3263
+ # Corresponds to the JSON property `spot`
3264
+ # @return [Boolean]
3265
+ attr_accessor :spot
3266
+ alias_method :spot?, :spot
3267
+
3146
3268
  # The list of instance tags applied to all nodes. Tags are used to identify
3147
3269
  # valid sources or targets for network firewalls and are specified by the client
3148
3270
  # during cluster or node pool creation. Each tag within the list must comply
@@ -3171,10 +3293,12 @@ module Google
3171
3293
  # Update properties of this object
3172
3294
  def update!(**args)
3173
3295
  @accelerators = args[:accelerators] if args.key?(:accelerators)
3296
+ @advanced_machine_features = args[:advanced_machine_features] if args.key?(:advanced_machine_features)
3174
3297
  @boot_disk_kms_key = args[:boot_disk_kms_key] if args.key?(:boot_disk_kms_key)
3175
3298
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
3176
3299
  @disk_type = args[:disk_type] if args.key?(:disk_type)
3177
3300
  @ephemeral_storage_config = args[:ephemeral_storage_config] if args.key?(:ephemeral_storage_config)
3301
+ @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
3178
3302
  @gvnic = args[:gvnic] if args.key?(:gvnic)
3179
3303
  @image_type = args[:image_type] if args.key?(:image_type)
3180
3304
  @kubelet_config = args[:kubelet_config] if args.key?(:kubelet_config)
@@ -3191,6 +3315,7 @@ module Google
3191
3315
  @sandbox_config = args[:sandbox_config] if args.key?(:sandbox_config)
3192
3316
  @service_account = args[:service_account] if args.key?(:service_account)
3193
3317
  @shielded_instance_config = args[:shielded_instance_config] if args.key?(:shielded_instance_config)
3318
+ @spot = args[:spot] if args.key?(:spot)
3194
3319
  @tags = args[:tags] if args.key?(:tags)
3195
3320
  @taints = args[:taints] if args.key?(:taints)
3196
3321
  @workload_metadata_config = args[:workload_metadata_config] if args.key?(:workload_metadata_config)
@@ -3201,12 +3326,18 @@ module Google
3201
3326
  class NodeConfigDefaults
3202
3327
  include Google::Apis::Core::Hashable
3203
3328
 
3329
+ # GcfsConfig contains configurations of Google Container File System.
3330
+ # Corresponds to the JSON property `gcfsConfig`
3331
+ # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
3332
+ attr_accessor :gcfs_config
3333
+
3204
3334
  def initialize(**args)
3205
3335
  update!(**args)
3206
3336
  end
3207
3337
 
3208
3338
  # Update properties of this object
3209
3339
  def update!(**args)
3340
+ @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
3210
3341
  end
3211
3342
  end
3212
3343
 
@@ -5275,6 +5406,11 @@ module Google
5275
5406
  # @return [String]
5276
5407
  attr_accessor :cluster_id
5277
5408
 
5409
+ # GcfsConfig contains configurations of Google Container File System.
5410
+ # Corresponds to the JSON property `gcfsConfig`
5411
+ # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
5412
+ attr_accessor :gcfs_config
5413
+
5278
5414
  # Configuration of gVNIC feature.
5279
5415
  # Corresponds to the JSON property `gvnic`
5280
5416
  # @return [Google::Apis::ContainerV1beta1::VirtualNic]
@@ -5378,6 +5514,7 @@ module Google
5378
5514
  # Update properties of this object
5379
5515
  def update!(**args)
5380
5516
  @cluster_id = args[:cluster_id] if args.key?(:cluster_id)
5517
+ @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
5381
5518
  @gvnic = args[:gvnic] if args.key?(:gvnic)
5382
5519
  @image_type = args[:image_type] if args.key?(:image_type)
5383
5520
  @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.19.0"
19
+ GEM_VERSION = "0.23.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 = "20210906"
25
+ REVISION = "20211104"
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
 
@@ -370,6 +382,12 @@ module Google
370
382
  include Google::Apis::Core::JsonObjectSupport
371
383
  end
372
384
 
385
+ class ManagedPrometheusConfig
386
+ class Representation < Google::Apis::Core::JsonRepresentation; end
387
+
388
+ include Google::Apis::Core::JsonObjectSupport
389
+ end
390
+
373
391
  class Master
374
392
  class Representation < Google::Apis::Core::JsonRepresentation; end
375
393
 
@@ -394,6 +412,12 @@ module Google
394
412
  include Google::Apis::Core::JsonObjectSupport
395
413
  end
396
414
 
415
+ class MeshCertificates
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
397
421
  class Metric
398
422
  class Representation < Google::Apis::Core::JsonRepresentation; end
399
423
 
@@ -845,6 +869,13 @@ module Google
845
869
  end
846
870
  end
847
871
 
872
+ class AdvancedMachineFeatures
873
+ # @private
874
+ class Representation < Google::Apis::Core::JsonRepresentation
875
+ property :threads_per_core, :numeric_string => true, as: 'threadsPerCore'
876
+ end
877
+ end
878
+
848
879
  class AuthenticatorGroupsConfig
849
880
  # @private
850
881
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1000,6 +1031,8 @@ module Google
1000
1031
  property :master_authorized_networks_config, as: 'masterAuthorizedNetworksConfig', class: Google::Apis::ContainerV1beta1::MasterAuthorizedNetworksConfig, decorator: Google::Apis::ContainerV1beta1::MasterAuthorizedNetworksConfig::Representation
1001
1032
 
1002
1033
  property :master_ipv4_cidr_block, as: 'masterIpv4CidrBlock'
1034
+ property :mesh_certificates, as: 'meshCertificates', class: Google::Apis::ContainerV1beta1::MeshCertificates, decorator: Google::Apis::ContainerV1beta1::MeshCertificates::Representation
1035
+
1003
1036
  property :monitoring_config, as: 'monitoringConfig', class: Google::Apis::ContainerV1beta1::MonitoringConfig, decorator: Google::Apis::ContainerV1beta1::MonitoringConfig::Representation
1004
1037
 
1005
1038
  property :monitoring_service, as: 'monitoringService'
@@ -1075,8 +1108,6 @@ module Google
1075
1108
 
1076
1109
  property :desired_authenticator_groups_config, as: 'desiredAuthenticatorGroupsConfig', class: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig::Representation
1077
1110
 
1078
- property :desired_autopilot, as: 'desiredAutopilot', class: Google::Apis::ContainerV1beta1::Autopilot, decorator: Google::Apis::ContainerV1beta1::Autopilot::Representation
1079
-
1080
1111
  property :desired_binary_authorization, as: 'desiredBinaryAuthorization', class: Google::Apis::ContainerV1beta1::BinaryAuthorization, decorator: Google::Apis::ContainerV1beta1::BinaryAuthorization::Representation
1081
1112
 
1082
1113
  property :desired_cluster_autoscaling, as: 'desiredClusterAutoscaling', class: Google::Apis::ContainerV1beta1::ClusterAutoscaling, decorator: Google::Apis::ContainerV1beta1::ClusterAutoscaling::Representation
@@ -1090,6 +1121,8 @@ module Google
1090
1121
 
1091
1122
  property :desired_dns_config, as: 'desiredDnsConfig', class: Google::Apis::ContainerV1beta1::DnsConfig, decorator: Google::Apis::ContainerV1beta1::DnsConfig::Representation
1092
1123
 
1124
+ property :desired_gcfs_config, as: 'desiredGcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
1125
+
1093
1126
  property :desired_identity_service_config, as: 'desiredIdentityServiceConfig', class: Google::Apis::ContainerV1beta1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1beta1::IdentityServiceConfig::Representation
1094
1127
 
1095
1128
  property :desired_image_type, as: 'desiredImageType'
@@ -1106,6 +1139,8 @@ module Google
1106
1139
  property :desired_master_authorized_networks_config, as: 'desiredMasterAuthorizedNetworksConfig', class: Google::Apis::ContainerV1beta1::MasterAuthorizedNetworksConfig, decorator: Google::Apis::ContainerV1beta1::MasterAuthorizedNetworksConfig::Representation
1107
1140
 
1108
1141
  property :desired_master_version, as: 'desiredMasterVersion'
1142
+ property :desired_mesh_certificates, as: 'desiredMeshCertificates', class: Google::Apis::ContainerV1beta1::MeshCertificates, decorator: Google::Apis::ContainerV1beta1::MeshCertificates::Representation
1143
+
1109
1144
  property :desired_monitoring_config, as: 'desiredMonitoringConfig', class: Google::Apis::ContainerV1beta1::MonitoringConfig, decorator: Google::Apis::ContainerV1beta1::MonitoringConfig::Representation
1110
1145
 
1111
1146
  property :desired_monitoring_service, as: 'desiredMonitoringService'
@@ -1261,6 +1296,13 @@ module Google
1261
1296
  end
1262
1297
  end
1263
1298
 
1299
+ class GcfsConfig
1300
+ # @private
1301
+ class Representation < Google::Apis::Core::JsonRepresentation
1302
+ property :enabled, as: 'enabled'
1303
+ end
1304
+ end
1305
+
1264
1306
  class GcpFilestoreCsiDriverConfig
1265
1307
  # @private
1266
1308
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1497,6 +1539,13 @@ module Google
1497
1539
  end
1498
1540
  end
1499
1541
 
1542
+ class ManagedPrometheusConfig
1543
+ # @private
1544
+ class Representation < Google::Apis::Core::JsonRepresentation
1545
+ property :enabled, as: 'enabled'
1546
+ end
1547
+ end
1548
+
1500
1549
  class Master
1501
1550
  # @private
1502
1551
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1532,6 +1581,13 @@ module Google
1532
1581
  end
1533
1582
  end
1534
1583
 
1584
+ class MeshCertificates
1585
+ # @private
1586
+ class Representation < Google::Apis::Core::JsonRepresentation
1587
+ property :enable_certificates, as: 'enableCertificates'
1588
+ end
1589
+ end
1590
+
1535
1591
  class Metric
1536
1592
  # @private
1537
1593
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1554,6 +1610,8 @@ module Google
1554
1610
  class Representation < Google::Apis::Core::JsonRepresentation
1555
1611
  property :component_config, as: 'componentConfig', class: Google::Apis::ContainerV1beta1::MonitoringComponentConfig, decorator: Google::Apis::ContainerV1beta1::MonitoringComponentConfig::Representation
1556
1612
 
1613
+ property :managed_prometheus_config, as: 'managedPrometheusConfig', class: Google::Apis::ContainerV1beta1::ManagedPrometheusConfig, decorator: Google::Apis::ContainerV1beta1::ManagedPrometheusConfig::Representation
1614
+
1557
1615
  end
1558
1616
  end
1559
1617
 
@@ -1602,11 +1660,15 @@ module Google
1602
1660
  class Representation < Google::Apis::Core::JsonRepresentation
1603
1661
  collection :accelerators, as: 'accelerators', class: Google::Apis::ContainerV1beta1::AcceleratorConfig, decorator: Google::Apis::ContainerV1beta1::AcceleratorConfig::Representation
1604
1662
 
1663
+ property :advanced_machine_features, as: 'advancedMachineFeatures', class: Google::Apis::ContainerV1beta1::AdvancedMachineFeatures, decorator: Google::Apis::ContainerV1beta1::AdvancedMachineFeatures::Representation
1664
+
1605
1665
  property :boot_disk_kms_key, as: 'bootDiskKmsKey'
1606
1666
  property :disk_size_gb, as: 'diskSizeGb'
1607
1667
  property :disk_type, as: 'diskType'
1608
1668
  property :ephemeral_storage_config, as: 'ephemeralStorageConfig', class: Google::Apis::ContainerV1beta1::EphemeralStorageConfig, decorator: Google::Apis::ContainerV1beta1::EphemeralStorageConfig::Representation
1609
1669
 
1670
+ property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
1671
+
1610
1672
  property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1beta1::VirtualNic, decorator: Google::Apis::ContainerV1beta1::VirtualNic::Representation
1611
1673
 
1612
1674
  property :image_type, as: 'imageType'
@@ -1629,6 +1691,7 @@ module Google
1629
1691
  property :service_account, as: 'serviceAccount'
1630
1692
  property :shielded_instance_config, as: 'shieldedInstanceConfig', class: Google::Apis::ContainerV1beta1::ShieldedInstanceConfig, decorator: Google::Apis::ContainerV1beta1::ShieldedInstanceConfig::Representation
1631
1693
 
1694
+ property :spot, as: 'spot'
1632
1695
  collection :tags, as: 'tags'
1633
1696
  collection :taints, as: 'taints', class: Google::Apis::ContainerV1beta1::NodeTaint, decorator: Google::Apis::ContainerV1beta1::NodeTaint::Representation
1634
1697
 
@@ -1640,6 +1703,8 @@ module Google
1640
1703
  class NodeConfigDefaults
1641
1704
  # @private
1642
1705
  class Representation < Google::Apis::Core::JsonRepresentation
1706
+ property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
1707
+
1643
1708
  end
1644
1709
  end
1645
1710
 
@@ -2151,6 +2216,8 @@ module Google
2151
2216
  # @private
2152
2217
  class Representation < Google::Apis::Core::JsonRepresentation
2153
2218
  property :cluster_id, as: 'clusterId'
2219
+ property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
2220
+
2154
2221
  property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1beta1::VirtualNic, decorator: Google::Apis::ContainerV1beta1::VirtualNic::Representation
2155
2222
 
2156
2223
  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.19.0
4
+ version: 0.23.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-22 00:00:00.000000000 Z
11
+ date: 2021-12-06 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.19.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.23.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: