google-apis-container_v1beta1 0.42.0 → 0.43.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 86c690cc312b5f00e75bc9236adda19c1b5f8257f989dc263920fd6ccaaba522
|
4
|
+
data.tar.gz: 8c95ee21cedf4ba26dd5b04b1022be1bf9f039c7279bb269eee210539acf6758
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df12846e0a773799b6848d620882cf51957ff2d791d655b9f8b582212fc2116fb243281d8103c3673c4798e835223a1aba243dc03d0a3ff9ea89dec62c7b7a84
|
7
|
+
data.tar.gz: 984ecb76f4eb283465b26a4c6e4e314ab06fe966eeda2e87dbdbd5e741a8378f73f98bd5c2b7263b9a7aa718f220a4f5c2ab610377a92f9b6e6c2b4e467ac9ba
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-container_v1beta1
|
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
|
+
|
3
8
|
### v0.42.0 (2022-12-12)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20221110
|
@@ -759,6 +759,13 @@ module Google
|
|
759
759
|
# @return [String]
|
760
760
|
attr_accessor :endpoint
|
761
761
|
|
762
|
+
# This checksum is computed by the server based on the value of cluster fields,
|
763
|
+
# and may be sent on update requests to ensure the client has an up-to-date
|
764
|
+
# value before proceeding.
|
765
|
+
# Corresponds to the JSON property `etag`
|
766
|
+
# @return [String]
|
767
|
+
attr_accessor :etag
|
768
|
+
|
762
769
|
# [Output only] The time the cluster will be automatically deleted in [RFC3339](
|
763
770
|
# https://www.ietf.org/rfc/rfc3339.txt) text format.
|
764
771
|
# Corresponds to the JSON property `expireTime`
|
@@ -1121,6 +1128,7 @@ module Google
|
|
1121
1128
|
@enable_kubernetes_alpha = args[:enable_kubernetes_alpha] if args.key?(:enable_kubernetes_alpha)
|
1122
1129
|
@enable_tpu = args[:enable_tpu] if args.key?(:enable_tpu)
|
1123
1130
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
1131
|
+
@etag = args[:etag] if args.key?(:etag)
|
1124
1132
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
1125
1133
|
@id = args[:id] if args.key?(:id)
|
1126
1134
|
@identity_service_config = args[:identity_service_config] if args.key?(:identity_service_config)
|
@@ -1532,6 +1540,13 @@ module Google
|
|
1532
1540
|
# @return [Google::Apis::ContainerV1beta1::WorkloadIdentityConfig]
|
1533
1541
|
attr_accessor :desired_workload_identity_config
|
1534
1542
|
|
1543
|
+
# The current etag of the cluster. If an etag is provided and does not match the
|
1544
|
+
# current etag of the cluster, update will be blocked and an ABORTED error will
|
1545
|
+
# be returned.
|
1546
|
+
# Corresponds to the JSON property `etag`
|
1547
|
+
# @return [String]
|
1548
|
+
attr_accessor :etag
|
1549
|
+
|
1535
1550
|
def initialize(**args)
|
1536
1551
|
update!(**args)
|
1537
1552
|
end
|
@@ -1584,6 +1599,7 @@ module Google
|
|
1584
1599
|
@desired_workload_alts_config = args[:desired_workload_alts_config] if args.key?(:desired_workload_alts_config)
|
1585
1600
|
@desired_workload_certificates = args[:desired_workload_certificates] if args.key?(:desired_workload_certificates)
|
1586
1601
|
@desired_workload_identity_config = args[:desired_workload_identity_config] if args.key?(:desired_workload_identity_config)
|
1602
|
+
@etag = args[:etag] if args.key?(:etag)
|
1587
1603
|
end
|
1588
1604
|
end
|
1589
1605
|
|
@@ -2039,6 +2055,30 @@ module Google
|
|
2039
2055
|
end
|
2040
2056
|
end
|
2041
2057
|
|
2058
|
+
# EphemeralStorageLocalSsdConfig contains configuration for the node ephemeral
|
2059
|
+
# storage using Local SSDs.
|
2060
|
+
class EphemeralStorageLocalSsdConfig
|
2061
|
+
include Google::Apis::Core::Hashable
|
2062
|
+
|
2063
|
+
# Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces.
|
2064
|
+
# Each local SSD is 375 GB in size. If zero, it means to disable using local
|
2065
|
+
# SSDs as ephemeral storage. The limit for this value is dependent upon the
|
2066
|
+
# maximum number of disks available on a machine per zone. See: https://cloud.
|
2067
|
+
# google.com/compute/docs/disks/local-ssd for more information.
|
2068
|
+
# Corresponds to the JSON property `localSsdCount`
|
2069
|
+
# @return [Fixnum]
|
2070
|
+
attr_accessor :local_ssd_count
|
2071
|
+
|
2072
|
+
def initialize(**args)
|
2073
|
+
update!(**args)
|
2074
|
+
end
|
2075
|
+
|
2076
|
+
# Update properties of this object
|
2077
|
+
def update!(**args)
|
2078
|
+
@local_ssd_count = args[:local_ssd_count] if args.key?(:local_ssd_count)
|
2079
|
+
end
|
2080
|
+
end
|
2081
|
+
|
2042
2082
|
# Configuration of Fast Socket feature.
|
2043
2083
|
class FastSocket
|
2044
2084
|
include Google::Apis::Core::Hashable
|
@@ -2920,6 +2960,30 @@ module Google
|
|
2920
2960
|
end
|
2921
2961
|
end
|
2922
2962
|
|
2963
|
+
# LocalNvmeSsdBlockConfig contains configuration for using raw-block local NVMe
|
2964
|
+
# SSDs
|
2965
|
+
class LocalNvmeSsdBlockConfig
|
2966
|
+
include Google::Apis::Core::Hashable
|
2967
|
+
|
2968
|
+
# The number of raw-block local NVMe SSD disks to be attached to the node. Each
|
2969
|
+
# local SSD is 375 GB in size. If zero, it means no raw-block local NVMe SSD
|
2970
|
+
# disks to be attached to the node. The limit for this value is dependent upon
|
2971
|
+
# the maximum number of disks available on a machine per zone. See: https://
|
2972
|
+
# cloud.google.com/compute/docs/disks/local-ssd for more information.
|
2973
|
+
# Corresponds to the JSON property `localSsdCount`
|
2974
|
+
# @return [Fixnum]
|
2975
|
+
attr_accessor :local_ssd_count
|
2976
|
+
|
2977
|
+
def initialize(**args)
|
2978
|
+
update!(**args)
|
2979
|
+
end
|
2980
|
+
|
2981
|
+
# Update properties of this object
|
2982
|
+
def update!(**args)
|
2983
|
+
@local_ssd_count = args[:local_ssd_count] if args.key?(:local_ssd_count)
|
2984
|
+
end
|
2985
|
+
end
|
2986
|
+
|
2923
2987
|
# Location returns the location name, and if the location is recommended for GKE
|
2924
2988
|
# cluster scheduling.
|
2925
2989
|
class Location
|
@@ -3581,6 +3645,12 @@ module Google
|
|
3581
3645
|
# @return [Google::Apis::ContainerV1beta1::EphemeralStorageConfig]
|
3582
3646
|
attr_accessor :ephemeral_storage_config
|
3583
3647
|
|
3648
|
+
# EphemeralStorageLocalSsdConfig contains configuration for the node ephemeral
|
3649
|
+
# storage using Local SSDs.
|
3650
|
+
# Corresponds to the JSON property `ephemeralStorageLocalSsdConfig`
|
3651
|
+
# @return [Google::Apis::ContainerV1beta1::EphemeralStorageLocalSsdConfig]
|
3652
|
+
attr_accessor :ephemeral_storage_local_ssd_config
|
3653
|
+
|
3584
3654
|
# Configuration of Fast Socket feature.
|
3585
3655
|
# Corresponds to the JSON property `fastSocket`
|
3586
3656
|
# @return [Google::Apis::ContainerV1beta1::FastSocket]
|
@@ -3623,6 +3693,12 @@ module Google
|
|
3623
3693
|
# @return [Google::Apis::ContainerV1beta1::LinuxNodeConfig]
|
3624
3694
|
attr_accessor :linux_node_config
|
3625
3695
|
|
3696
|
+
# LocalNvmeSsdBlockConfig contains configuration for using raw-block local NVMe
|
3697
|
+
# SSDs
|
3698
|
+
# Corresponds to the JSON property `localNvmeSsdBlockConfig`
|
3699
|
+
# @return [Google::Apis::ContainerV1beta1::LocalNvmeSsdBlockConfig]
|
3700
|
+
attr_accessor :local_nvme_ssd_block_config
|
3701
|
+
|
3626
3702
|
# The number of local SSD disks to be attached to the node. The limit for this
|
3627
3703
|
# value is dependent upon the maximum number of disks available on a machine per
|
3628
3704
|
# zone. See: https://cloud.google.com/compute/docs/disks/local-ssd for more
|
@@ -3751,6 +3827,13 @@ module Google
|
|
3751
3827
|
# @return [Array<Google::Apis::ContainerV1beta1::NodeTaint>]
|
3752
3828
|
attr_accessor :taints
|
3753
3829
|
|
3830
|
+
# Parameters that can be configured on Windows nodes. Windows Node Config that
|
3831
|
+
# define the parameters that will be used to configure the Windows node pool
|
3832
|
+
# settings
|
3833
|
+
# Corresponds to the JSON property `windowsNodeConfig`
|
3834
|
+
# @return [Google::Apis::ContainerV1beta1::WindowsNodeConfig]
|
3835
|
+
attr_accessor :windows_node_config
|
3836
|
+
|
3754
3837
|
# WorkloadMetadataConfig defines the metadata configuration to expose to
|
3755
3838
|
# workloads on the node pool.
|
3756
3839
|
# Corresponds to the JSON property `workloadMetadataConfig`
|
@@ -3770,6 +3853,7 @@ module Google
|
|
3770
3853
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
3771
3854
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
3772
3855
|
@ephemeral_storage_config = args[:ephemeral_storage_config] if args.key?(:ephemeral_storage_config)
|
3856
|
+
@ephemeral_storage_local_ssd_config = args[:ephemeral_storage_local_ssd_config] if args.key?(:ephemeral_storage_local_ssd_config)
|
3773
3857
|
@fast_socket = args[:fast_socket] if args.key?(:fast_socket)
|
3774
3858
|
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
3775
3859
|
@gvnic = args[:gvnic] if args.key?(:gvnic)
|
@@ -3777,6 +3861,7 @@ module Google
|
|
3777
3861
|
@kubelet_config = args[:kubelet_config] if args.key?(:kubelet_config)
|
3778
3862
|
@labels = args[:labels] if args.key?(:labels)
|
3779
3863
|
@linux_node_config = args[:linux_node_config] if args.key?(:linux_node_config)
|
3864
|
+
@local_nvme_ssd_block_config = args[:local_nvme_ssd_block_config] if args.key?(:local_nvme_ssd_block_config)
|
3780
3865
|
@local_ssd_count = args[:local_ssd_count] if args.key?(:local_ssd_count)
|
3781
3866
|
@logging_config = args[:logging_config] if args.key?(:logging_config)
|
3782
3867
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
@@ -3793,6 +3878,7 @@ module Google
|
|
3793
3878
|
@spot = args[:spot] if args.key?(:spot)
|
3794
3879
|
@tags = args[:tags] if args.key?(:tags)
|
3795
3880
|
@taints = args[:taints] if args.key?(:taints)
|
3881
|
+
@windows_node_config = args[:windows_node_config] if args.key?(:windows_node_config)
|
3796
3882
|
@workload_metadata_config = args[:workload_metadata_config] if args.key?(:workload_metadata_config)
|
3797
3883
|
end
|
3798
3884
|
end
|
@@ -4034,6 +4120,13 @@ module Google
|
|
4034
4120
|
# @return [Google::Apis::ContainerV1beta1::NodeConfig]
|
4035
4121
|
attr_accessor :config
|
4036
4122
|
|
4123
|
+
# This checksum is computed by the server based on the value of node pool fields,
|
4124
|
+
# and may be sent on update requests to ensure the client has an up-to-date
|
4125
|
+
# value before proceeding.
|
4126
|
+
# Corresponds to the JSON property `etag`
|
4127
|
+
# @return [String]
|
4128
|
+
attr_accessor :etag
|
4129
|
+
|
4037
4130
|
# The initial node count for the pool. You must ensure that your Compute Engine [
|
4038
4131
|
# resource quota](https://cloud.google.com/compute/quotas) is sufficient for
|
4039
4132
|
# this number of instances. You must also have available firewall and routes
|
@@ -4148,6 +4241,7 @@ module Google
|
|
4148
4241
|
@autoscaling = args[:autoscaling] if args.key?(:autoscaling)
|
4149
4242
|
@conditions = args[:conditions] if args.key?(:conditions)
|
4150
4243
|
@config = args[:config] if args.key?(:config)
|
4244
|
+
@etag = args[:etag] if args.key?(:etag)
|
4151
4245
|
@initial_node_count = args[:initial_node_count] if args.key?(:initial_node_count)
|
4152
4246
|
@instance_group_urls = args[:instance_group_urls] if args.key?(:instance_group_urls)
|
4153
4247
|
@locations = args[:locations] if args.key?(:locations)
|
@@ -6243,6 +6337,13 @@ module Google
|
|
6243
6337
|
# @return [Google::Apis::ContainerV1beta1::ConfidentialNodes]
|
6244
6338
|
attr_accessor :confidential_nodes
|
6245
6339
|
|
6340
|
+
# The current etag of the node pool. If an etag is provided and does not match
|
6341
|
+
# the current etag of the node pool, update will be blocked and an ABORTED error
|
6342
|
+
# will be returned.
|
6343
|
+
# Corresponds to the JSON property `etag`
|
6344
|
+
# @return [String]
|
6345
|
+
attr_accessor :etag
|
6346
|
+
|
6246
6347
|
# Configuration of Fast Socket feature.
|
6247
6348
|
# Corresponds to the JSON property `fastSocket`
|
6248
6349
|
# @return [Google::Apis::ContainerV1beta1::FastSocket]
|
@@ -6368,6 +6469,13 @@ module Google
|
|
6368
6469
|
# @return [Google::Apis::ContainerV1beta1::UpgradeSettings]
|
6369
6470
|
attr_accessor :upgrade_settings
|
6370
6471
|
|
6472
|
+
# Parameters that can be configured on Windows nodes. Windows Node Config that
|
6473
|
+
# define the parameters that will be used to configure the Windows node pool
|
6474
|
+
# settings
|
6475
|
+
# Corresponds to the JSON property `windowsNodeConfig`
|
6476
|
+
# @return [Google::Apis::ContainerV1beta1::WindowsNodeConfig]
|
6477
|
+
attr_accessor :windows_node_config
|
6478
|
+
|
6371
6479
|
# WorkloadMetadataConfig defines the metadata configuration to expose to
|
6372
6480
|
# workloads on the node pool.
|
6373
6481
|
# Corresponds to the JSON property `workloadMetadataConfig`
|
@@ -6389,6 +6497,7 @@ module Google
|
|
6389
6497
|
def update!(**args)
|
6390
6498
|
@cluster_id = args[:cluster_id] if args.key?(:cluster_id)
|
6391
6499
|
@confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
|
6500
|
+
@etag = args[:etag] if args.key?(:etag)
|
6392
6501
|
@fast_socket = args[:fast_socket] if args.key?(:fast_socket)
|
6393
6502
|
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
6394
6503
|
@gvnic = args[:gvnic] if args.key?(:gvnic)
|
@@ -6407,6 +6516,7 @@ module Google
|
|
6407
6516
|
@tags = args[:tags] if args.key?(:tags)
|
6408
6517
|
@taints = args[:taints] if args.key?(:taints)
|
6409
6518
|
@upgrade_settings = args[:upgrade_settings] if args.key?(:upgrade_settings)
|
6519
|
+
@windows_node_config = args[:windows_node_config] if args.key?(:windows_node_config)
|
6410
6520
|
@workload_metadata_config = args[:workload_metadata_config] if args.key?(:workload_metadata_config)
|
6411
6521
|
@zone = args[:zone] if args.key?(:zone)
|
6412
6522
|
end
|
@@ -6688,6 +6798,27 @@ module Google
|
|
6688
6798
|
end
|
6689
6799
|
end
|
6690
6800
|
|
6801
|
+
# Parameters that can be configured on Windows nodes. Windows Node Config that
|
6802
|
+
# define the parameters that will be used to configure the Windows node pool
|
6803
|
+
# settings
|
6804
|
+
class WindowsNodeConfig
|
6805
|
+
include Google::Apis::Core::Hashable
|
6806
|
+
|
6807
|
+
# OSVersion specifies the Windows node config to be used on the node
|
6808
|
+
# Corresponds to the JSON property `osVersion`
|
6809
|
+
# @return [String]
|
6810
|
+
attr_accessor :os_version
|
6811
|
+
|
6812
|
+
def initialize(**args)
|
6813
|
+
update!(**args)
|
6814
|
+
end
|
6815
|
+
|
6816
|
+
# Update properties of this object
|
6817
|
+
def update!(**args)
|
6818
|
+
@os_version = args[:os_version] if args.key?(:os_version)
|
6819
|
+
end
|
6820
|
+
end
|
6821
|
+
|
6691
6822
|
# Windows server version.
|
6692
6823
|
class WindowsVersion
|
6693
6824
|
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.
|
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
|
@@ -238,6 +238,12 @@ module Google
|
|
238
238
|
include Google::Apis::Core::JsonObjectSupport
|
239
239
|
end
|
240
240
|
|
241
|
+
class EphemeralStorageLocalSsdConfig
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
+
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
245
|
+
end
|
246
|
+
|
241
247
|
class FastSocket
|
242
248
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
249
|
|
@@ -406,6 +412,12 @@ module Google
|
|
406
412
|
include Google::Apis::Core::JsonObjectSupport
|
407
413
|
end
|
408
414
|
|
415
|
+
class LocalNvmeSsdBlockConfig
|
416
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
|
+
|
418
|
+
include Google::Apis::Core::JsonObjectSupport
|
419
|
+
end
|
420
|
+
|
409
421
|
class Location
|
410
422
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
423
|
|
@@ -922,6 +934,12 @@ module Google
|
|
922
934
|
include Google::Apis::Core::JsonObjectSupport
|
923
935
|
end
|
924
936
|
|
937
|
+
class WindowsNodeConfig
|
938
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
939
|
+
|
940
|
+
include Google::Apis::Core::JsonObjectSupport
|
941
|
+
end
|
942
|
+
|
925
943
|
class WindowsVersion
|
926
944
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
927
945
|
|
@@ -1165,6 +1183,7 @@ module Google
|
|
1165
1183
|
property :enable_kubernetes_alpha, as: 'enableKubernetesAlpha'
|
1166
1184
|
property :enable_tpu, as: 'enableTpu'
|
1167
1185
|
property :endpoint, as: 'endpoint'
|
1186
|
+
property :etag, as: 'etag'
|
1168
1187
|
property :expire_time, as: 'expireTime'
|
1169
1188
|
property :id, as: 'id'
|
1170
1189
|
property :identity_service_config, as: 'identityServiceConfig', class: Google::Apis::ContainerV1beta1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1beta1::IdentityServiceConfig::Representation
|
@@ -1351,6 +1370,7 @@ module Google
|
|
1351
1370
|
|
1352
1371
|
property :desired_workload_identity_config, as: 'desiredWorkloadIdentityConfig', class: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig::Representation
|
1353
1372
|
|
1373
|
+
property :etag, as: 'etag'
|
1354
1374
|
end
|
1355
1375
|
end
|
1356
1376
|
|
@@ -1482,6 +1502,13 @@ module Google
|
|
1482
1502
|
end
|
1483
1503
|
end
|
1484
1504
|
|
1505
|
+
class EphemeralStorageLocalSsdConfig
|
1506
|
+
# @private
|
1507
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1508
|
+
property :local_ssd_count, as: 'localSsdCount'
|
1509
|
+
end
|
1510
|
+
end
|
1511
|
+
|
1485
1512
|
class FastSocket
|
1486
1513
|
# @private
|
1487
1514
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1728,6 +1755,13 @@ module Google
|
|
1728
1755
|
end
|
1729
1756
|
end
|
1730
1757
|
|
1758
|
+
class LocalNvmeSsdBlockConfig
|
1759
|
+
# @private
|
1760
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1761
|
+
property :local_ssd_count, as: 'localSsdCount'
|
1762
|
+
end
|
1763
|
+
end
|
1764
|
+
|
1731
1765
|
class Location
|
1732
1766
|
# @private
|
1733
1767
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1928,6 +1962,8 @@ module Google
|
|
1928
1962
|
property :disk_type, as: 'diskType'
|
1929
1963
|
property :ephemeral_storage_config, as: 'ephemeralStorageConfig', class: Google::Apis::ContainerV1beta1::EphemeralStorageConfig, decorator: Google::Apis::ContainerV1beta1::EphemeralStorageConfig::Representation
|
1930
1964
|
|
1965
|
+
property :ephemeral_storage_local_ssd_config, as: 'ephemeralStorageLocalSsdConfig', class: Google::Apis::ContainerV1beta1::EphemeralStorageLocalSsdConfig, decorator: Google::Apis::ContainerV1beta1::EphemeralStorageLocalSsdConfig::Representation
|
1966
|
+
|
1931
1967
|
property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1beta1::FastSocket, decorator: Google::Apis::ContainerV1beta1::FastSocket::Representation
|
1932
1968
|
|
1933
1969
|
property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
|
@@ -1940,6 +1976,8 @@ module Google
|
|
1940
1976
|
hash :labels, as: 'labels'
|
1941
1977
|
property :linux_node_config, as: 'linuxNodeConfig', class: Google::Apis::ContainerV1beta1::LinuxNodeConfig, decorator: Google::Apis::ContainerV1beta1::LinuxNodeConfig::Representation
|
1942
1978
|
|
1979
|
+
property :local_nvme_ssd_block_config, as: 'localNvmeSsdBlockConfig', class: Google::Apis::ContainerV1beta1::LocalNvmeSsdBlockConfig, decorator: Google::Apis::ContainerV1beta1::LocalNvmeSsdBlockConfig::Representation
|
1980
|
+
|
1943
1981
|
property :local_ssd_count, as: 'localSsdCount'
|
1944
1982
|
property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig::Representation
|
1945
1983
|
|
@@ -1961,6 +1999,8 @@ module Google
|
|
1961
1999
|
collection :tags, as: 'tags'
|
1962
2000
|
collection :taints, as: 'taints', class: Google::Apis::ContainerV1beta1::NodeTaint, decorator: Google::Apis::ContainerV1beta1::NodeTaint::Representation
|
1963
2001
|
|
2002
|
+
property :windows_node_config, as: 'windowsNodeConfig', class: Google::Apis::ContainerV1beta1::WindowsNodeConfig, decorator: Google::Apis::ContainerV1beta1::WindowsNodeConfig::Representation
|
2003
|
+
|
1964
2004
|
property :workload_metadata_config, as: 'workloadMetadataConfig', class: Google::Apis::ContainerV1beta1::WorkloadMetadataConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadMetadataConfig::Representation
|
1965
2005
|
|
1966
2006
|
end
|
@@ -2024,6 +2064,7 @@ module Google
|
|
2024
2064
|
|
2025
2065
|
property :config, as: 'config', class: Google::Apis::ContainerV1beta1::NodeConfig, decorator: Google::Apis::ContainerV1beta1::NodeConfig::Representation
|
2026
2066
|
|
2067
|
+
property :etag, as: 'etag'
|
2027
2068
|
property :initial_node_count, as: 'initialNodeCount'
|
2028
2069
|
collection :instance_group_urls, as: 'instanceGroupUrls'
|
2029
2070
|
collection :locations, as: 'locations'
|
@@ -2575,6 +2616,7 @@ module Google
|
|
2575
2616
|
property :cluster_id, as: 'clusterId'
|
2576
2617
|
property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1beta1::ConfidentialNodes, decorator: Google::Apis::ContainerV1beta1::ConfidentialNodes::Representation
|
2577
2618
|
|
2619
|
+
property :etag, as: 'etag'
|
2578
2620
|
property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1beta1::FastSocket, decorator: Google::Apis::ContainerV1beta1::FastSocket::Representation
|
2579
2621
|
|
2580
2622
|
property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
|
@@ -2605,6 +2647,8 @@ module Google
|
|
2605
2647
|
|
2606
2648
|
property :upgrade_settings, as: 'upgradeSettings', class: Google::Apis::ContainerV1beta1::UpgradeSettings, decorator: Google::Apis::ContainerV1beta1::UpgradeSettings::Representation
|
2607
2649
|
|
2650
|
+
property :windows_node_config, as: 'windowsNodeConfig', class: Google::Apis::ContainerV1beta1::WindowsNodeConfig, decorator: Google::Apis::ContainerV1beta1::WindowsNodeConfig::Representation
|
2651
|
+
|
2608
2652
|
property :workload_metadata_config, as: 'workloadMetadataConfig', class: Google::Apis::ContainerV1beta1::WorkloadMetadataConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadMetadataConfig::Representation
|
2609
2653
|
|
2610
2654
|
property :zone, as: 'zone'
|
@@ -2682,6 +2726,13 @@ module Google
|
|
2682
2726
|
end
|
2683
2727
|
end
|
2684
2728
|
|
2729
|
+
class WindowsNodeConfig
|
2730
|
+
# @private
|
2731
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2732
|
+
property :os_version, as: 'osVersion'
|
2733
|
+
end
|
2734
|
+
end
|
2735
|
+
|
2685
2736
|
class WindowsVersion
|
2686
2737
|
# @private
|
2687
2738
|
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.
|
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: 2023-01-
|
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_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.43.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: []
|
@@ -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 V1beta1
|