google-apis-container_v1 0.41.0 → 0.43.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 473f6ddc16b682f9e8dcc116e143d7351981864639ce77def9736f14f9ed1533
|
4
|
+
data.tar.gz: 849bc2319a0cec38b55eaf815b1d374eff0e987a2e66c26eb596575c782511be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b8259b752407e8c6e663db73adb67d7794ff076a62370694630600449de98db306e39d15cd37f9904f743c37816117d0460a885b09b8965fc453fcdcb9c50ca
|
7
|
+
data.tar.gz: 9886e27d7b5d0e13c1787aea7a9c1901eba506e9a5b05f5262e8f51e9ee35db6f6f3473c07abd0902e8ebf78e964f603a5b0e0ae8998344b9d201618ff4cf5b6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-container_v1
|
2
2
|
|
3
|
+
### v0.43.0 (2023-01-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230104
|
6
|
+
* Regenerated using generator version 0.11.1
|
7
|
+
|
8
|
+
### v0.42.0 (2022-12-12)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20221110
|
11
|
+
|
3
12
|
### v0.41.0 (2022-11-15)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20221031
|
@@ -714,6 +714,13 @@ module Google
|
|
714
714
|
# @return [String]
|
715
715
|
attr_accessor :endpoint
|
716
716
|
|
717
|
+
# This checksum is computed by the server based on the value of cluster fields,
|
718
|
+
# and may be sent on update requests to ensure the client has an up-to-date
|
719
|
+
# value before proceeding.
|
720
|
+
# Corresponds to the JSON property `etag`
|
721
|
+
# @return [String]
|
722
|
+
attr_accessor :etag
|
723
|
+
|
717
724
|
# [Output only] The time the cluster will be automatically deleted in [RFC3339](
|
718
725
|
# https://www.ietf.org/rfc/rfc3339.txt) text format.
|
719
726
|
# Corresponds to the JSON property `expireTime`
|
@@ -1025,6 +1032,7 @@ module Google
|
|
1025
1032
|
@enable_kubernetes_alpha = args[:enable_kubernetes_alpha] if args.key?(:enable_kubernetes_alpha)
|
1026
1033
|
@enable_tpu = args[:enable_tpu] if args.key?(:enable_tpu)
|
1027
1034
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
1035
|
+
@etag = args[:etag] if args.key?(:etag)
|
1028
1036
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
1029
1037
|
@id = args[:id] if args.key?(:id)
|
1030
1038
|
@identity_service_config = args[:identity_service_config] if args.key?(:identity_service_config)
|
@@ -1353,6 +1361,13 @@ module Google
|
|
1353
1361
|
# @return [Google::Apis::ContainerV1::ShieldedNodes]
|
1354
1362
|
attr_accessor :desired_shielded_nodes
|
1355
1363
|
|
1364
|
+
# The desired stack type of the cluster. If a stack type is provided and does
|
1365
|
+
# not match the current stack type of the cluster, update will attempt to change
|
1366
|
+
# the stack type to the new type.
|
1367
|
+
# Corresponds to the JSON property `desiredStackType`
|
1368
|
+
# @return [String]
|
1369
|
+
attr_accessor :desired_stack_type
|
1370
|
+
|
1356
1371
|
# VerticalPodAutoscaling contains global, per-cluster information required by
|
1357
1372
|
# Vertical Pod Autoscaler to automatically adjust the resources of pods
|
1358
1373
|
# controlled by it.
|
@@ -1365,6 +1380,13 @@ module Google
|
|
1365
1380
|
# @return [Google::Apis::ContainerV1::WorkloadIdentityConfig]
|
1366
1381
|
attr_accessor :desired_workload_identity_config
|
1367
1382
|
|
1383
|
+
# The current etag of the cluster. If an etag is provided and does not match the
|
1384
|
+
# current etag of the cluster, update will be blocked and an ABORTED error will
|
1385
|
+
# be returned.
|
1386
|
+
# Corresponds to the JSON property `etag`
|
1387
|
+
# @return [String]
|
1388
|
+
attr_accessor :etag
|
1389
|
+
|
1368
1390
|
def initialize(**args)
|
1369
1391
|
update!(**args)
|
1370
1392
|
end
|
@@ -1407,8 +1429,10 @@ module Google
|
|
1407
1429
|
@desired_resource_usage_export_config = args[:desired_resource_usage_export_config] if args.key?(:desired_resource_usage_export_config)
|
1408
1430
|
@desired_service_external_ips_config = args[:desired_service_external_ips_config] if args.key?(:desired_service_external_ips_config)
|
1409
1431
|
@desired_shielded_nodes = args[:desired_shielded_nodes] if args.key?(:desired_shielded_nodes)
|
1432
|
+
@desired_stack_type = args[:desired_stack_type] if args.key?(:desired_stack_type)
|
1410
1433
|
@desired_vertical_pod_autoscaling = args[:desired_vertical_pod_autoscaling] if args.key?(:desired_vertical_pod_autoscaling)
|
1411
1434
|
@desired_workload_identity_config = args[:desired_workload_identity_config] if args.key?(:desired_workload_identity_config)
|
1435
|
+
@etag = args[:etag] if args.key?(:etag)
|
1412
1436
|
end
|
1413
1437
|
end
|
1414
1438
|
|
@@ -1790,6 +1814,30 @@ module Google
|
|
1790
1814
|
end
|
1791
1815
|
end
|
1792
1816
|
|
1817
|
+
# EphemeralStorageLocalSsdConfig contains configuration for the node ephemeral
|
1818
|
+
# storage using Local SSD.
|
1819
|
+
class EphemeralStorageLocalSsdConfig
|
1820
|
+
include Google::Apis::Core::Hashable
|
1821
|
+
|
1822
|
+
# Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces.
|
1823
|
+
# Each local SSD is 375 GB in size. If zero, it means to disable using local
|
1824
|
+
# SSDs as ephemeral storage. The limit for this value is dependent upon the
|
1825
|
+
# maximum number of disks available on a machine per zone. See: https://cloud.
|
1826
|
+
# google.com/compute/docs/disks/local-ssd for more information.
|
1827
|
+
# Corresponds to the JSON property `localSsdCount`
|
1828
|
+
# @return [Fixnum]
|
1829
|
+
attr_accessor :local_ssd_count
|
1830
|
+
|
1831
|
+
def initialize(**args)
|
1832
|
+
update!(**args)
|
1833
|
+
end
|
1834
|
+
|
1835
|
+
# Update properties of this object
|
1836
|
+
def update!(**args)
|
1837
|
+
@local_ssd_count = args[:local_ssd_count] if args.key?(:local_ssd_count)
|
1838
|
+
end
|
1839
|
+
end
|
1840
|
+
|
1793
1841
|
# Configuration of Fast Socket feature.
|
1794
1842
|
class FastSocket
|
1795
1843
|
include Google::Apis::Core::Hashable
|
@@ -2569,6 +2617,30 @@ module Google
|
|
2569
2617
|
end
|
2570
2618
|
end
|
2571
2619
|
|
2620
|
+
# LocalNvmeSsdBlockConfig contains configuration for using raw-block local NVMe
|
2621
|
+
# SSD.
|
2622
|
+
class LocalNvmeSsdBlockConfig
|
2623
|
+
include Google::Apis::Core::Hashable
|
2624
|
+
|
2625
|
+
# The number of raw-block local NVMe SSD disks to be attached to the node. Each
|
2626
|
+
# local SSD is 375 GB in size. If zero, it means no raw-block local NVMe SSD
|
2627
|
+
# disks to be attached to the node. The limit for this value is dependent upon
|
2628
|
+
# the maximum number of disks available on a machine per zone. See: https://
|
2629
|
+
# cloud.google.com/compute/docs/disks/local-ssd for more information.
|
2630
|
+
# Corresponds to the JSON property `localSsdCount`
|
2631
|
+
# @return [Fixnum]
|
2632
|
+
attr_accessor :local_ssd_count
|
2633
|
+
|
2634
|
+
def initialize(**args)
|
2635
|
+
update!(**args)
|
2636
|
+
end
|
2637
|
+
|
2638
|
+
# Update properties of this object
|
2639
|
+
def update!(**args)
|
2640
|
+
@local_ssd_count = args[:local_ssd_count] if args.key?(:local_ssd_count)
|
2641
|
+
end
|
2642
|
+
end
|
2643
|
+
|
2572
2644
|
# LoggingComponentConfig is cluster logging component configuration.
|
2573
2645
|
class LoggingComponentConfig
|
2574
2646
|
include Google::Apis::Core::Hashable
|
@@ -3170,6 +3242,12 @@ module Google
|
|
3170
3242
|
# @return [String]
|
3171
3243
|
attr_accessor :disk_type
|
3172
3244
|
|
3245
|
+
# EphemeralStorageLocalSsdConfig contains configuration for the node ephemeral
|
3246
|
+
# storage using Local SSD.
|
3247
|
+
# Corresponds to the JSON property `ephemeralStorageLocalSsdConfig`
|
3248
|
+
# @return [Google::Apis::ContainerV1::EphemeralStorageLocalSsdConfig]
|
3249
|
+
attr_accessor :ephemeral_storage_local_ssd_config
|
3250
|
+
|
3173
3251
|
# Configuration of Fast Socket feature.
|
3174
3252
|
# Corresponds to the JSON property `fastSocket`
|
3175
3253
|
# @return [Google::Apis::ContainerV1::FastSocket]
|
@@ -3213,6 +3291,12 @@ module Google
|
|
3213
3291
|
# @return [Google::Apis::ContainerV1::LinuxNodeConfig]
|
3214
3292
|
attr_accessor :linux_node_config
|
3215
3293
|
|
3294
|
+
# LocalNvmeSsdBlockConfig contains configuration for using raw-block local NVMe
|
3295
|
+
# SSD.
|
3296
|
+
# Corresponds to the JSON property `localNvmeSsdBlockConfig`
|
3297
|
+
# @return [Google::Apis::ContainerV1::LocalNvmeSsdBlockConfig]
|
3298
|
+
attr_accessor :local_nvme_ssd_block_config
|
3299
|
+
|
3216
3300
|
# The number of local SSD disks to be attached to the node. The limit for this
|
3217
3301
|
# value is dependent upon the maximum number of disks available on a machine per
|
3218
3302
|
# zone. See: https://cloud.google.com/compute/docs/disks/local-ssd for more
|
@@ -3341,6 +3425,13 @@ module Google
|
|
3341
3425
|
# @return [Array<Google::Apis::ContainerV1::NodeTaint>]
|
3342
3426
|
attr_accessor :taints
|
3343
3427
|
|
3428
|
+
# Parameters that can be configured on Windows nodes. Windows Node Config that
|
3429
|
+
# define the parameters that will be used to configure the Windows node pool
|
3430
|
+
# settings
|
3431
|
+
# Corresponds to the JSON property `windowsNodeConfig`
|
3432
|
+
# @return [Google::Apis::ContainerV1::WindowsNodeConfig]
|
3433
|
+
attr_accessor :windows_node_config
|
3434
|
+
|
3344
3435
|
# WorkloadMetadataConfig defines the metadata configuration to expose to
|
3345
3436
|
# workloads on the node pool.
|
3346
3437
|
# Corresponds to the JSON property `workloadMetadataConfig`
|
@@ -3359,6 +3450,7 @@ module Google
|
|
3359
3450
|
@confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
|
3360
3451
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
3361
3452
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
3453
|
+
@ephemeral_storage_local_ssd_config = args[:ephemeral_storage_local_ssd_config] if args.key?(:ephemeral_storage_local_ssd_config)
|
3362
3454
|
@fast_socket = args[:fast_socket] if args.key?(:fast_socket)
|
3363
3455
|
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
3364
3456
|
@gvnic = args[:gvnic] if args.key?(:gvnic)
|
@@ -3366,6 +3458,7 @@ module Google
|
|
3366
3458
|
@kubelet_config = args[:kubelet_config] if args.key?(:kubelet_config)
|
3367
3459
|
@labels = args[:labels] if args.key?(:labels)
|
3368
3460
|
@linux_node_config = args[:linux_node_config] if args.key?(:linux_node_config)
|
3461
|
+
@local_nvme_ssd_block_config = args[:local_nvme_ssd_block_config] if args.key?(:local_nvme_ssd_block_config)
|
3369
3462
|
@local_ssd_count = args[:local_ssd_count] if args.key?(:local_ssd_count)
|
3370
3463
|
@logging_config = args[:logging_config] if args.key?(:logging_config)
|
3371
3464
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
@@ -3382,6 +3475,7 @@ module Google
|
|
3382
3475
|
@spot = args[:spot] if args.key?(:spot)
|
3383
3476
|
@tags = args[:tags] if args.key?(:tags)
|
3384
3477
|
@taints = args[:taints] if args.key?(:taints)
|
3478
|
+
@windows_node_config = args[:windows_node_config] if args.key?(:windows_node_config)
|
3385
3479
|
@workload_metadata_config = args[:workload_metadata_config] if args.key?(:workload_metadata_config)
|
3386
3480
|
end
|
3387
3481
|
end
|
@@ -3616,6 +3710,13 @@ module Google
|
|
3616
3710
|
# @return [Google::Apis::ContainerV1::NodeConfig]
|
3617
3711
|
attr_accessor :config
|
3618
3712
|
|
3713
|
+
# This checksum is computed by the server based on the value of node pool fields,
|
3714
|
+
# and may be sent on update requests to ensure the client has an up-to-date
|
3715
|
+
# value before proceeding.
|
3716
|
+
# Corresponds to the JSON property `etag`
|
3717
|
+
# @return [String]
|
3718
|
+
attr_accessor :etag
|
3719
|
+
|
3619
3720
|
# The initial node count for the pool. You must ensure that your Compute Engine [
|
3620
3721
|
# resource quota](https://cloud.google.com/compute/quotas) is sufficient for
|
3621
3722
|
# this number of instances. You must also have available firewall and routes
|
@@ -3744,6 +3845,7 @@ module Google
|
|
3744
3845
|
@autoscaling = args[:autoscaling] if args.key?(:autoscaling)
|
3745
3846
|
@conditions = args[:conditions] if args.key?(:conditions)
|
3746
3847
|
@config = args[:config] if args.key?(:config)
|
3848
|
+
@etag = args[:etag] if args.key?(:etag)
|
3747
3849
|
@initial_node_count = args[:initial_node_count] if args.key?(:initial_node_count)
|
3748
3850
|
@instance_group_urls = args[:instance_group_urls] if args.key?(:instance_group_urls)
|
3749
3851
|
@locations = args[:locations] if args.key?(:locations)
|
@@ -5738,6 +5840,13 @@ module Google
|
|
5738
5840
|
# @return [Google::Apis::ContainerV1::ConfidentialNodes]
|
5739
5841
|
attr_accessor :confidential_nodes
|
5740
5842
|
|
5843
|
+
# The current etag of the node pool. If an etag is provided and does not match
|
5844
|
+
# the current etag of the node pool, update will be blocked and an ABORTED error
|
5845
|
+
# will be returned.
|
5846
|
+
# Corresponds to the JSON property `etag`
|
5847
|
+
# @return [String]
|
5848
|
+
attr_accessor :etag
|
5849
|
+
|
5741
5850
|
# Configuration of Fast Socket feature.
|
5742
5851
|
# Corresponds to the JSON property `fastSocket`
|
5743
5852
|
# @return [Google::Apis::ContainerV1::FastSocket]
|
@@ -5877,6 +5986,13 @@ module Google
|
|
5877
5986
|
# @return [Google::Apis::ContainerV1::UpgradeSettings]
|
5878
5987
|
attr_accessor :upgrade_settings
|
5879
5988
|
|
5989
|
+
# Parameters that can be configured on Windows nodes. Windows Node Config that
|
5990
|
+
# define the parameters that will be used to configure the Windows node pool
|
5991
|
+
# settings
|
5992
|
+
# Corresponds to the JSON property `windowsNodeConfig`
|
5993
|
+
# @return [Google::Apis::ContainerV1::WindowsNodeConfig]
|
5994
|
+
attr_accessor :windows_node_config
|
5995
|
+
|
5880
5996
|
# WorkloadMetadataConfig defines the metadata configuration to expose to
|
5881
5997
|
# workloads on the node pool.
|
5882
5998
|
# Corresponds to the JSON property `workloadMetadataConfig`
|
@@ -5898,6 +6014,7 @@ module Google
|
|
5898
6014
|
def update!(**args)
|
5899
6015
|
@cluster_id = args[:cluster_id] if args.key?(:cluster_id)
|
5900
6016
|
@confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
|
6017
|
+
@etag = args[:etag] if args.key?(:etag)
|
5901
6018
|
@fast_socket = args[:fast_socket] if args.key?(:fast_socket)
|
5902
6019
|
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
5903
6020
|
@gvnic = args[:gvnic] if args.key?(:gvnic)
|
@@ -5916,6 +6033,7 @@ module Google
|
|
5916
6033
|
@tags = args[:tags] if args.key?(:tags)
|
5917
6034
|
@taints = args[:taints] if args.key?(:taints)
|
5918
6035
|
@upgrade_settings = args[:upgrade_settings] if args.key?(:upgrade_settings)
|
6036
|
+
@windows_node_config = args[:windows_node_config] if args.key?(:windows_node_config)
|
5919
6037
|
@workload_metadata_config = args[:workload_metadata_config] if args.key?(:workload_metadata_config)
|
5920
6038
|
@zone = args[:zone] if args.key?(:zone)
|
5921
6039
|
end
|
@@ -6205,6 +6323,27 @@ module Google
|
|
6205
6323
|
end
|
6206
6324
|
end
|
6207
6325
|
|
6326
|
+
# Parameters that can be configured on Windows nodes. Windows Node Config that
|
6327
|
+
# define the parameters that will be used to configure the Windows node pool
|
6328
|
+
# settings
|
6329
|
+
class WindowsNodeConfig
|
6330
|
+
include Google::Apis::Core::Hashable
|
6331
|
+
|
6332
|
+
# OSVersion specifies the Windows node config to be used on the node
|
6333
|
+
# Corresponds to the JSON property `osVersion`
|
6334
|
+
# @return [String]
|
6335
|
+
attr_accessor :os_version
|
6336
|
+
|
6337
|
+
def initialize(**args)
|
6338
|
+
update!(**args)
|
6339
|
+
end
|
6340
|
+
|
6341
|
+
# Update properties of this object
|
6342
|
+
def update!(**args)
|
6343
|
+
@os_version = args[:os_version] if args.key?(:os_version)
|
6344
|
+
end
|
6345
|
+
end
|
6346
|
+
|
6208
6347
|
# Configuration for the use of Kubernetes Service Accounts in GCP IAM policies.
|
6209
6348
|
class WorkloadIdentityConfig
|
6210
6349
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContainerV1
|
18
18
|
# Version of the google-apis-container_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.43.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.11.
|
22
|
+
GENERATOR_VERSION = "0.11.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230104"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -214,6 +214,12 @@ module Google
|
|
214
214
|
include Google::Apis::Core::JsonObjectSupport
|
215
215
|
end
|
216
216
|
|
217
|
+
class EphemeralStorageLocalSsdConfig
|
218
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
|
+
|
220
|
+
include Google::Apis::Core::JsonObjectSupport
|
221
|
+
end
|
222
|
+
|
217
223
|
class FastSocket
|
218
224
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
225
|
|
@@ -364,6 +370,12 @@ module Google
|
|
364
370
|
include Google::Apis::Core::JsonObjectSupport
|
365
371
|
end
|
366
372
|
|
373
|
+
class LocalNvmeSsdBlockConfig
|
374
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
|
+
|
376
|
+
include Google::Apis::Core::JsonObjectSupport
|
377
|
+
end
|
378
|
+
|
367
379
|
class LoggingComponentConfig
|
368
380
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
381
|
|
@@ -850,6 +862,12 @@ module Google
|
|
850
862
|
include Google::Apis::Core::JsonObjectSupport
|
851
863
|
end
|
852
864
|
|
865
|
+
class WindowsNodeConfig
|
866
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
867
|
+
|
868
|
+
include Google::Apis::Core::JsonObjectSupport
|
869
|
+
end
|
870
|
+
|
853
871
|
class WorkloadIdentityConfig
|
854
872
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
855
873
|
|
@@ -1048,6 +1066,7 @@ module Google
|
|
1048
1066
|
property :enable_kubernetes_alpha, as: 'enableKubernetesAlpha'
|
1049
1067
|
property :enable_tpu, as: 'enableTpu'
|
1050
1068
|
property :endpoint, as: 'endpoint'
|
1069
|
+
property :etag, as: 'etag'
|
1051
1070
|
property :expire_time, as: 'expireTime'
|
1052
1071
|
property :id, as: 'id'
|
1053
1072
|
property :identity_service_config, as: 'identityServiceConfig', class: Google::Apis::ContainerV1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1::IdentityServiceConfig::Representation
|
@@ -1194,10 +1213,12 @@ module Google
|
|
1194
1213
|
|
1195
1214
|
property :desired_shielded_nodes, as: 'desiredShieldedNodes', class: Google::Apis::ContainerV1::ShieldedNodes, decorator: Google::Apis::ContainerV1::ShieldedNodes::Representation
|
1196
1215
|
|
1216
|
+
property :desired_stack_type, as: 'desiredStackType'
|
1197
1217
|
property :desired_vertical_pod_autoscaling, as: 'desiredVerticalPodAutoscaling', class: Google::Apis::ContainerV1::VerticalPodAutoscaling, decorator: Google::Apis::ContainerV1::VerticalPodAutoscaling::Representation
|
1198
1218
|
|
1199
1219
|
property :desired_workload_identity_config, as: 'desiredWorkloadIdentityConfig', class: Google::Apis::ContainerV1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1::WorkloadIdentityConfig::Representation
|
1200
1220
|
|
1221
|
+
property :etag, as: 'etag'
|
1201
1222
|
end
|
1202
1223
|
end
|
1203
1224
|
|
@@ -1313,6 +1334,13 @@ module Google
|
|
1313
1334
|
end
|
1314
1335
|
end
|
1315
1336
|
|
1337
|
+
class EphemeralStorageLocalSsdConfig
|
1338
|
+
# @private
|
1339
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1340
|
+
property :local_ssd_count, as: 'localSsdCount'
|
1341
|
+
end
|
1342
|
+
end
|
1343
|
+
|
1316
1344
|
class FastSocket
|
1317
1345
|
# @private
|
1318
1346
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1532,6 +1560,13 @@ module Google
|
|
1532
1560
|
end
|
1533
1561
|
end
|
1534
1562
|
|
1563
|
+
class LocalNvmeSsdBlockConfig
|
1564
|
+
# @private
|
1565
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1566
|
+
property :local_ssd_count, as: 'localSsdCount'
|
1567
|
+
end
|
1568
|
+
end
|
1569
|
+
|
1535
1570
|
class LoggingComponentConfig
|
1536
1571
|
# @private
|
1537
1572
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1714,6 +1749,8 @@ module Google
|
|
1714
1749
|
|
1715
1750
|
property :disk_size_gb, as: 'diskSizeGb'
|
1716
1751
|
property :disk_type, as: 'diskType'
|
1752
|
+
property :ephemeral_storage_local_ssd_config, as: 'ephemeralStorageLocalSsdConfig', class: Google::Apis::ContainerV1::EphemeralStorageLocalSsdConfig, decorator: Google::Apis::ContainerV1::EphemeralStorageLocalSsdConfig::Representation
|
1753
|
+
|
1717
1754
|
property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1::FastSocket, decorator: Google::Apis::ContainerV1::FastSocket::Representation
|
1718
1755
|
|
1719
1756
|
property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
|
@@ -1726,6 +1763,8 @@ module Google
|
|
1726
1763
|
hash :labels, as: 'labels'
|
1727
1764
|
property :linux_node_config, as: 'linuxNodeConfig', class: Google::Apis::ContainerV1::LinuxNodeConfig, decorator: Google::Apis::ContainerV1::LinuxNodeConfig::Representation
|
1728
1765
|
|
1766
|
+
property :local_nvme_ssd_block_config, as: 'localNvmeSsdBlockConfig', class: Google::Apis::ContainerV1::LocalNvmeSsdBlockConfig, decorator: Google::Apis::ContainerV1::LocalNvmeSsdBlockConfig::Representation
|
1767
|
+
|
1729
1768
|
property :local_ssd_count, as: 'localSsdCount'
|
1730
1769
|
property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1::NodePoolLoggingConfig::Representation
|
1731
1770
|
|
@@ -1747,6 +1786,8 @@ module Google
|
|
1747
1786
|
collection :tags, as: 'tags'
|
1748
1787
|
collection :taints, as: 'taints', class: Google::Apis::ContainerV1::NodeTaint, decorator: Google::Apis::ContainerV1::NodeTaint::Representation
|
1749
1788
|
|
1789
|
+
property :windows_node_config, as: 'windowsNodeConfig', class: Google::Apis::ContainerV1::WindowsNodeConfig, decorator: Google::Apis::ContainerV1::WindowsNodeConfig::Representation
|
1790
|
+
|
1750
1791
|
property :workload_metadata_config, as: 'workloadMetadataConfig', class: Google::Apis::ContainerV1::WorkloadMetadataConfig, decorator: Google::Apis::ContainerV1::WorkloadMetadataConfig::Representation
|
1751
1792
|
|
1752
1793
|
end
|
@@ -1810,6 +1851,7 @@ module Google
|
|
1810
1851
|
|
1811
1852
|
property :config, as: 'config', class: Google::Apis::ContainerV1::NodeConfig, decorator: Google::Apis::ContainerV1::NodeConfig::Representation
|
1812
1853
|
|
1854
|
+
property :etag, as: 'etag'
|
1813
1855
|
property :initial_node_count, as: 'initialNodeCount'
|
1814
1856
|
collection :instance_group_urls, as: 'instanceGroupUrls'
|
1815
1857
|
collection :locations, as: 'locations'
|
@@ -2331,6 +2373,7 @@ module Google
|
|
2331
2373
|
property :cluster_id, as: 'clusterId'
|
2332
2374
|
property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1::ConfidentialNodes, decorator: Google::Apis::ContainerV1::ConfidentialNodes::Representation
|
2333
2375
|
|
2376
|
+
property :etag, as: 'etag'
|
2334
2377
|
property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1::FastSocket, decorator: Google::Apis::ContainerV1::FastSocket::Representation
|
2335
2378
|
|
2336
2379
|
property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
|
@@ -2361,6 +2404,8 @@ module Google
|
|
2361
2404
|
|
2362
2405
|
property :upgrade_settings, as: 'upgradeSettings', class: Google::Apis::ContainerV1::UpgradeSettings, decorator: Google::Apis::ContainerV1::UpgradeSettings::Representation
|
2363
2406
|
|
2407
|
+
property :windows_node_config, as: 'windowsNodeConfig', class: Google::Apis::ContainerV1::WindowsNodeConfig, decorator: Google::Apis::ContainerV1::WindowsNodeConfig::Representation
|
2408
|
+
|
2364
2409
|
property :workload_metadata_config, as: 'workloadMetadataConfig', class: Google::Apis::ContainerV1::WorkloadMetadataConfig, decorator: Google::Apis::ContainerV1::WorkloadMetadataConfig::Representation
|
2365
2410
|
|
2366
2411
|
property :zone, as: 'zone'
|
@@ -2436,6 +2481,13 @@ module Google
|
|
2436
2481
|
end
|
2437
2482
|
end
|
2438
2483
|
|
2484
|
+
class WindowsNodeConfig
|
2485
|
+
# @private
|
2486
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2487
|
+
property :os_version, as: 'osVersion'
|
2488
|
+
end
|
2489
|
+
end
|
2490
|
+
|
2439
2491
|
class WorkloadIdentityConfig
|
2440
2492
|
# @private
|
2441
2493
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-container_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.43.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:
|
11
|
+
date: 2023-01-08 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.43.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.4.2
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Kubernetes Engine API V1
|