google-apis-container_v1 0.38.0 → 0.39.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: da326e47b11a25febd89bf3950049489f95a318135fd00f8e848d459e3efb676
|
4
|
+
data.tar.gz: 9d0683b99773e45dbbbae4d995e62565b98f1a921e3f1fd204e6e695e501eb5b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 15d5948bfed78b62b32efe9c0a7b0c4b23708fbff58dcd5b5cce09b332d4944bd9f76b7e6cc294bc7befbb870ba5cf5bfb1af03a11ee027644e864adb81c2220
|
7
|
+
data.tar.gz: 43054295dd17e44fe8e6aeb577bc0f691aacceb631e872a6c8e955e17ea0e0b205b0ad5e87d93cda20b166f8b75ee2abaae8a09b962a03475bc76f47972bef60
|
data/CHANGELOG.md
CHANGED
@@ -1174,6 +1174,17 @@ module Google
|
|
1174
1174
|
# @return [Google::Apis::ContainerV1::DnsConfig]
|
1175
1175
|
attr_accessor :desired_dns_config
|
1176
1176
|
|
1177
|
+
# Enable/Disable private endpoint for the cluster's master.
|
1178
|
+
# Corresponds to the JSON property `desiredEnablePrivateEndpoint`
|
1179
|
+
# @return [Boolean]
|
1180
|
+
attr_accessor :desired_enable_private_endpoint
|
1181
|
+
alias_method :desired_enable_private_endpoint?, :desired_enable_private_endpoint
|
1182
|
+
|
1183
|
+
# GatewayAPIConfig contains the desired config of Gateway API on this cluster.
|
1184
|
+
# Corresponds to the JSON property `desiredGatewayApiConfig`
|
1185
|
+
# @return [Google::Apis::ContainerV1::GatewayApiConfig]
|
1186
|
+
attr_accessor :desired_gateway_api_config
|
1187
|
+
|
1177
1188
|
# GcfsConfig contains configurations of Google Container File System (image
|
1178
1189
|
# streaming).
|
1179
1190
|
# Corresponds to the JSON property `desiredGcfsConfig`
|
@@ -1369,6 +1380,8 @@ module Google
|
|
1369
1380
|
@desired_datapath_provider = args[:desired_datapath_provider] if args.key?(:desired_datapath_provider)
|
1370
1381
|
@desired_default_snat_status = args[:desired_default_snat_status] if args.key?(:desired_default_snat_status)
|
1371
1382
|
@desired_dns_config = args[:desired_dns_config] if args.key?(:desired_dns_config)
|
1383
|
+
@desired_enable_private_endpoint = args[:desired_enable_private_endpoint] if args.key?(:desired_enable_private_endpoint)
|
1384
|
+
@desired_gateway_api_config = args[:desired_gateway_api_config] if args.key?(:desired_gateway_api_config)
|
1372
1385
|
@desired_gcfs_config = args[:desired_gcfs_config] if args.key?(:desired_gcfs_config)
|
1373
1386
|
@desired_identity_service_config = args[:desired_identity_service_config] if args.key?(:desired_identity_service_config)
|
1374
1387
|
@desired_image_type = args[:desired_image_type] if args.key?(:desired_image_type)
|
@@ -1825,6 +1838,25 @@ module Google
|
|
1825
1838
|
end
|
1826
1839
|
end
|
1827
1840
|
|
1841
|
+
# GatewayAPIConfig contains the desired config of Gateway API on this cluster.
|
1842
|
+
class GatewayApiConfig
|
1843
|
+
include Google::Apis::Core::Hashable
|
1844
|
+
|
1845
|
+
# The Gateway API release channel to use for Gateway API.
|
1846
|
+
# Corresponds to the JSON property `channel`
|
1847
|
+
# @return [String]
|
1848
|
+
attr_accessor :channel
|
1849
|
+
|
1850
|
+
def initialize(**args)
|
1851
|
+
update!(**args)
|
1852
|
+
end
|
1853
|
+
|
1854
|
+
# Update properties of this object
|
1855
|
+
def update!(**args)
|
1856
|
+
@channel = args[:channel] if args.key?(:channel)
|
1857
|
+
end
|
1858
|
+
end
|
1859
|
+
|
1828
1860
|
# Configuration for the Compute Engine PD CSI driver.
|
1829
1861
|
class GcePersistentDiskCsiDriverConfig
|
1830
1862
|
include Google::Apis::Core::Hashable
|
@@ -2393,6 +2425,11 @@ module Google
|
|
2393
2425
|
class LinuxNodeConfig
|
2394
2426
|
include Google::Apis::Core::Hashable
|
2395
2427
|
|
2428
|
+
# cgroup_mode specifies the cgroup mode to be used on the node.
|
2429
|
+
# Corresponds to the JSON property `cgroupMode`
|
2430
|
+
# @return [String]
|
2431
|
+
attr_accessor :cgroup_mode
|
2432
|
+
|
2396
2433
|
# The Linux kernel parameters to be applied to the nodes and all pods running on
|
2397
2434
|
# the nodes. The following parameters are supported. net.core.busy_poll net.core.
|
2398
2435
|
# busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.wmem_default
|
@@ -2408,6 +2445,7 @@ module Google
|
|
2408
2445
|
|
2409
2446
|
# Update properties of this object
|
2410
2447
|
def update!(**args)
|
2448
|
+
@cgroup_mode = args[:cgroup_mode] if args.key?(:cgroup_mode)
|
2411
2449
|
@sysctls = args[:sysctls] if args.key?(:sysctls)
|
2412
2450
|
end
|
2413
2451
|
end
|
@@ -2753,6 +2791,12 @@ module Google
|
|
2753
2791
|
attr_accessor :enabled
|
2754
2792
|
alias_method :enabled?, :enabled
|
2755
2793
|
|
2794
|
+
# Whether master is accessbile via Google Compute Engine Public IP addresses.
|
2795
|
+
# Corresponds to the JSON property `gcpPublicCidrsAccessEnabled`
|
2796
|
+
# @return [Boolean]
|
2797
|
+
attr_accessor :gcp_public_cidrs_access_enabled
|
2798
|
+
alias_method :gcp_public_cidrs_access_enabled?, :gcp_public_cidrs_access_enabled
|
2799
|
+
|
2756
2800
|
def initialize(**args)
|
2757
2801
|
update!(**args)
|
2758
2802
|
end
|
@@ -2761,6 +2805,7 @@ module Google
|
|
2761
2805
|
def update!(**args)
|
2762
2806
|
@cidr_blocks = args[:cidr_blocks] if args.key?(:cidr_blocks)
|
2763
2807
|
@enabled = args[:enabled] if args.key?(:enabled)
|
2808
|
+
@gcp_public_cidrs_access_enabled = args[:gcp_public_cidrs_access_enabled] if args.key?(:gcp_public_cidrs_access_enabled)
|
2764
2809
|
end
|
2765
2810
|
end
|
2766
2811
|
|
@@ -2924,6 +2969,11 @@ module Google
|
|
2924
2969
|
attr_accessor :enable_l4ilb_subsetting
|
2925
2970
|
alias_method :enable_l4ilb_subsetting?, :enable_l4ilb_subsetting
|
2926
2971
|
|
2972
|
+
# GatewayAPIConfig contains the desired config of Gateway API on this cluster.
|
2973
|
+
# Corresponds to the JSON property `gatewayApiConfig`
|
2974
|
+
# @return [Google::Apis::ContainerV1::GatewayApiConfig]
|
2975
|
+
attr_accessor :gateway_api_config
|
2976
|
+
|
2927
2977
|
# Output only. The relative name of the Google Compute Engine network(https://
|
2928
2978
|
# cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the
|
2929
2979
|
# cluster is connected. Example: projects/my-project/global/networks/my-network
|
@@ -2960,6 +3010,7 @@ module Google
|
|
2960
3010
|
@dns_config = args[:dns_config] if args.key?(:dns_config)
|
2961
3011
|
@enable_intra_node_visibility = args[:enable_intra_node_visibility] if args.key?(:enable_intra_node_visibility)
|
2962
3012
|
@enable_l4ilb_subsetting = args[:enable_l4ilb_subsetting] if args.key?(:enable_l4ilb_subsetting)
|
3013
|
+
@gateway_api_config = args[:gateway_api_config] if args.key?(:gateway_api_config)
|
2963
3014
|
@network = args[:network] if args.key?(:network)
|
2964
3015
|
@private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
|
2965
3016
|
@service_external_ips_config = args[:service_external_ips_config] if args.key?(:service_external_ips_config)
|
@@ -3220,6 +3271,12 @@ module Google
|
|
3220
3271
|
# @return [Google::Apis::ContainerV1::ReservationAffinity]
|
3221
3272
|
attr_accessor :reservation_affinity
|
3222
3273
|
|
3274
|
+
# The resource labels for the node pool to use to annotate any related Google
|
3275
|
+
# Compute Engine resources.
|
3276
|
+
# Corresponds to the JSON property `resourceLabels`
|
3277
|
+
# @return [Hash<String,String>]
|
3278
|
+
attr_accessor :resource_labels
|
3279
|
+
|
3223
3280
|
# SandboxConfig contains configurations of the sandbox to use for the node.
|
3224
3281
|
# Corresponds to the JSON property `sandboxConfig`
|
3225
3282
|
# @return [Google::Apis::ContainerV1::SandboxConfig]
|
@@ -3292,6 +3349,7 @@ module Google
|
|
3292
3349
|
@oauth_scopes = args[:oauth_scopes] if args.key?(:oauth_scopes)
|
3293
3350
|
@preemptible = args[:preemptible] if args.key?(:preemptible)
|
3294
3351
|
@reservation_affinity = args[:reservation_affinity] if args.key?(:reservation_affinity)
|
3352
|
+
@resource_labels = args[:resource_labels] if args.key?(:resource_labels)
|
3295
3353
|
@sandbox_config = args[:sandbox_config] if args.key?(:sandbox_config)
|
3296
3354
|
@service_account = args[:service_account] if args.key?(:service_account)
|
3297
3355
|
@shielded_instance_config = args[:shielded_instance_config] if args.key?(:shielded_instance_config)
|
@@ -3458,6 +3516,14 @@ module Google
|
|
3458
3516
|
attr_accessor :create_pod_range
|
3459
3517
|
alias_method :create_pod_range?, :create_pod_range
|
3460
3518
|
|
3519
|
+
# Whether nodes have internal IP addresses only. If enable_private_nodes is not
|
3520
|
+
# specified, then the value is derived from cluster.privateClusterConfig.
|
3521
|
+
# enablePrivateNodes
|
3522
|
+
# Corresponds to the JSON property `enablePrivateNodes`
|
3523
|
+
# @return [Boolean]
|
3524
|
+
attr_accessor :enable_private_nodes
|
3525
|
+
alias_method :enable_private_nodes?, :enable_private_nodes
|
3526
|
+
|
3461
3527
|
# Configuration of all network bandwidth tiers
|
3462
3528
|
# Corresponds to the JSON property `networkPerformanceConfig`
|
3463
3529
|
# @return [Google::Apis::ContainerV1::NetworkPerformanceConfig]
|
@@ -3490,6 +3556,7 @@ module Google
|
|
3490
3556
|
# Update properties of this object
|
3491
3557
|
def update!(**args)
|
3492
3558
|
@create_pod_range = args[:create_pod_range] if args.key?(:create_pod_range)
|
3559
|
+
@enable_private_nodes = args[:enable_private_nodes] if args.key?(:enable_private_nodes)
|
3493
3560
|
@network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
|
3494
3561
|
@pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
|
3495
3562
|
@pod_range = args[:pod_range] if args.key?(:pod_range)
|
@@ -4060,6 +4127,12 @@ module Google
|
|
4060
4127
|
# @return [String]
|
4061
4128
|
attr_accessor :private_endpoint
|
4062
4129
|
|
4130
|
+
# Subnet to provision the master's private endpoint during cluster creation.
|
4131
|
+
# Specified in projects/*/regions/*/subnetworks/* format.
|
4132
|
+
# Corresponds to the JSON property `privateEndpointSubnetwork`
|
4133
|
+
# @return [String]
|
4134
|
+
attr_accessor :private_endpoint_subnetwork
|
4135
|
+
|
4063
4136
|
# Output only. The external IP address of this cluster's master endpoint.
|
4064
4137
|
# Corresponds to the JSON property `publicEndpoint`
|
4065
4138
|
# @return [String]
|
@@ -4077,6 +4150,7 @@ module Google
|
|
4077
4150
|
@master_ipv4_cidr_block = args[:master_ipv4_cidr_block] if args.key?(:master_ipv4_cidr_block)
|
4078
4151
|
@peering_name = args[:peering_name] if args.key?(:peering_name)
|
4079
4152
|
@private_endpoint = args[:private_endpoint] if args.key?(:private_endpoint)
|
4153
|
+
@private_endpoint_subnetwork = args[:private_endpoint_subnetwork] if args.key?(:private_endpoint_subnetwork)
|
4080
4154
|
@public_endpoint = args[:public_endpoint] if args.key?(:public_endpoint)
|
4081
4155
|
end
|
4082
4156
|
end
|
@@ -4264,6 +4338,26 @@ module Google
|
|
4264
4338
|
end
|
4265
4339
|
end
|
4266
4340
|
|
4341
|
+
# Collection of [GCP labels](https://cloud.google.com/resource-manager/docs/
|
4342
|
+
# creating-managing-labels).
|
4343
|
+
class ResourceLabels
|
4344
|
+
include Google::Apis::Core::Hashable
|
4345
|
+
|
4346
|
+
# Map of node label keys and node label values.
|
4347
|
+
# Corresponds to the JSON property `labels`
|
4348
|
+
# @return [Hash<String,String>]
|
4349
|
+
attr_accessor :labels
|
4350
|
+
|
4351
|
+
def initialize(**args)
|
4352
|
+
update!(**args)
|
4353
|
+
end
|
4354
|
+
|
4355
|
+
# Update properties of this object
|
4356
|
+
def update!(**args)
|
4357
|
+
@labels = args[:labels] if args.key?(:labels)
|
4358
|
+
end
|
4359
|
+
end
|
4360
|
+
|
4267
4361
|
# Contains information about amount of some resource in the cluster. For memory,
|
4268
4362
|
# value should be in GB.
|
4269
4363
|
class ResourceLimit
|
@@ -5274,7 +5368,7 @@ module Google
|
|
5274
5368
|
# @return [Fixnum]
|
5275
5369
|
attr_accessor :batch_node_count
|
5276
5370
|
|
5277
|
-
# Percentage of the
|
5371
|
+
# Percentage of the blue pool nodes to drain in a batch. The range of this field
|
5278
5372
|
# should be (0.0, 1.0].
|
5279
5373
|
# Corresponds to the JSON property `batchPercentage`
|
5280
5374
|
# @return [Float]
|
@@ -5674,6 +5768,12 @@ module Google
|
|
5674
5768
|
# @return [String]
|
5675
5769
|
attr_accessor :project_id
|
5676
5770
|
|
5771
|
+
# Collection of [GCP labels](https://cloud.google.com/resource-manager/docs/
|
5772
|
+
# creating-managing-labels).
|
5773
|
+
# Corresponds to the JSON property `resourceLabels`
|
5774
|
+
# @return [Google::Apis::ContainerV1::ResourceLabels]
|
5775
|
+
attr_accessor :resource_labels
|
5776
|
+
|
5677
5777
|
# Collection of Compute Engine network tags that can be applied to a node's
|
5678
5778
|
# underlying VM instance.
|
5679
5779
|
# Corresponds to the JSON property `tags`
|
@@ -5755,6 +5855,7 @@ module Google
|
|
5755
5855
|
@node_pool_id = args[:node_pool_id] if args.key?(:node_pool_id)
|
5756
5856
|
@node_version = args[:node_version] if args.key?(:node_version)
|
5757
5857
|
@project_id = args[:project_id] if args.key?(:project_id)
|
5858
|
+
@resource_labels = args[:resource_labels] if args.key?(:resource_labels)
|
5758
5859
|
@tags = args[:tags] if args.key?(:tags)
|
5759
5860
|
@taints = args[:taints] if args.key?(:taints)
|
5760
5861
|
@upgrade_settings = args[:upgrade_settings] if args.key?(:upgrade_settings)
|
@@ -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.39.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221017"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -226,6 +226,12 @@ module Google
|
|
226
226
|
include Google::Apis::Core::JsonObjectSupport
|
227
227
|
end
|
228
228
|
|
229
|
+
class GatewayApiConfig
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
229
235
|
class GcePersistentDiskCsiDriverConfig
|
230
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
237
|
|
@@ -604,6 +610,12 @@ module Google
|
|
604
610
|
include Google::Apis::Core::JsonObjectSupport
|
605
611
|
end
|
606
612
|
|
613
|
+
class ResourceLabels
|
614
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
615
|
+
|
616
|
+
include Google::Apis::Core::JsonObjectSupport
|
617
|
+
end
|
618
|
+
|
607
619
|
class ResourceLimit
|
608
620
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
609
621
|
|
@@ -1125,6 +1137,9 @@ module Google
|
|
1125
1137
|
|
1126
1138
|
property :desired_dns_config, as: 'desiredDnsConfig', class: Google::Apis::ContainerV1::DnsConfig, decorator: Google::Apis::ContainerV1::DnsConfig::Representation
|
1127
1139
|
|
1140
|
+
property :desired_enable_private_endpoint, as: 'desiredEnablePrivateEndpoint'
|
1141
|
+
property :desired_gateway_api_config, as: 'desiredGatewayApiConfig', class: Google::Apis::ContainerV1::GatewayApiConfig, decorator: Google::Apis::ContainerV1::GatewayApiConfig::Representation
|
1142
|
+
|
1128
1143
|
property :desired_gcfs_config, as: 'desiredGcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
|
1129
1144
|
|
1130
1145
|
property :desired_identity_service_config, as: 'desiredIdentityServiceConfig', class: Google::Apis::ContainerV1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1::IdentityServiceConfig::Representation
|
@@ -1301,6 +1316,13 @@ module Google
|
|
1301
1316
|
end
|
1302
1317
|
end
|
1303
1318
|
|
1319
|
+
class GatewayApiConfig
|
1320
|
+
# @private
|
1321
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1322
|
+
property :channel, as: 'channel'
|
1323
|
+
end
|
1324
|
+
end
|
1325
|
+
|
1304
1326
|
class GcePersistentDiskCsiDriverConfig
|
1305
1327
|
# @private
|
1306
1328
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1451,6 +1473,7 @@ module Google
|
|
1451
1473
|
class LinuxNodeConfig
|
1452
1474
|
# @private
|
1453
1475
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1476
|
+
property :cgroup_mode, as: 'cgroupMode'
|
1454
1477
|
hash :sysctls, as: 'sysctls'
|
1455
1478
|
end
|
1456
1479
|
end
|
@@ -1566,6 +1589,7 @@ module Google
|
|
1566
1589
|
collection :cidr_blocks, as: 'cidrBlocks', class: Google::Apis::ContainerV1::CidrBlock, decorator: Google::Apis::ContainerV1::CidrBlock::Representation
|
1567
1590
|
|
1568
1591
|
property :enabled, as: 'enabled'
|
1592
|
+
property :gcp_public_cidrs_access_enabled, as: 'gcpPublicCidrsAccessEnabled'
|
1569
1593
|
end
|
1570
1594
|
end
|
1571
1595
|
|
@@ -1620,6 +1644,8 @@ module Google
|
|
1620
1644
|
|
1621
1645
|
property :enable_intra_node_visibility, as: 'enableIntraNodeVisibility'
|
1622
1646
|
property :enable_l4ilb_subsetting, as: 'enableL4ilbSubsetting'
|
1647
|
+
property :gateway_api_config, as: 'gatewayApiConfig', class: Google::Apis::ContainerV1::GatewayApiConfig, decorator: Google::Apis::ContainerV1::GatewayApiConfig::Representation
|
1648
|
+
|
1623
1649
|
property :network, as: 'network'
|
1624
1650
|
property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
|
1625
1651
|
property :service_external_ips_config, as: 'serviceExternalIpsConfig', class: Google::Apis::ContainerV1::ServiceExternalIPsConfig, decorator: Google::Apis::ContainerV1::ServiceExternalIPsConfig::Representation
|
@@ -1690,6 +1716,7 @@ module Google
|
|
1690
1716
|
property :preemptible, as: 'preemptible'
|
1691
1717
|
property :reservation_affinity, as: 'reservationAffinity', class: Google::Apis::ContainerV1::ReservationAffinity, decorator: Google::Apis::ContainerV1::ReservationAffinity::Representation
|
1692
1718
|
|
1719
|
+
hash :resource_labels, as: 'resourceLabels'
|
1693
1720
|
property :sandbox_config, as: 'sandboxConfig', class: Google::Apis::ContainerV1::SandboxConfig, decorator: Google::Apis::ContainerV1::SandboxConfig::Representation
|
1694
1721
|
|
1695
1722
|
property :service_account, as: 'serviceAccount'
|
@@ -1745,6 +1772,7 @@ module Google
|
|
1745
1772
|
# @private
|
1746
1773
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1747
1774
|
property :create_pod_range, as: 'createPodRange'
|
1775
|
+
property :enable_private_nodes, as: 'enablePrivateNodes'
|
1748
1776
|
property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ContainerV1::NetworkPerformanceConfig, decorator: Google::Apis::ContainerV1::NetworkPerformanceConfig::Representation
|
1749
1777
|
|
1750
1778
|
property :pod_ipv4_cidr_block, as: 'podIpv4CidrBlock'
|
@@ -1892,6 +1920,7 @@ module Google
|
|
1892
1920
|
property :master_ipv4_cidr_block, as: 'masterIpv4CidrBlock'
|
1893
1921
|
property :peering_name, as: 'peeringName'
|
1894
1922
|
property :private_endpoint, as: 'privateEndpoint'
|
1923
|
+
property :private_endpoint_subnetwork, as: 'privateEndpointSubnetwork'
|
1895
1924
|
property :public_endpoint, as: 'publicEndpoint'
|
1896
1925
|
end
|
1897
1926
|
end
|
@@ -1947,6 +1976,13 @@ module Google
|
|
1947
1976
|
end
|
1948
1977
|
end
|
1949
1978
|
|
1979
|
+
class ResourceLabels
|
1980
|
+
# @private
|
1981
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1982
|
+
hash :labels, as: 'labels'
|
1983
|
+
end
|
1984
|
+
end
|
1985
|
+
|
1950
1986
|
class ResourceLimit
|
1951
1987
|
# @private
|
1952
1988
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2285,6 +2321,8 @@ module Google
|
|
2285
2321
|
property :node_pool_id, as: 'nodePoolId'
|
2286
2322
|
property :node_version, as: 'nodeVersion'
|
2287
2323
|
property :project_id, as: 'projectId'
|
2324
|
+
property :resource_labels, as: 'resourceLabels', class: Google::Apis::ContainerV1::ResourceLabels, decorator: Google::Apis::ContainerV1::ResourceLabels::Representation
|
2325
|
+
|
2288
2326
|
property :tags, as: 'tags', class: Google::Apis::ContainerV1::NetworkTags, decorator: Google::Apis::ContainerV1::NetworkTags::Representation
|
2289
2327
|
|
2290
2328
|
property :taints, as: 'taints', class: Google::Apis::ContainerV1::NodeTaints, decorator: Google::Apis::ContainerV1::NodeTaints::Representation
|
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.39.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: 2022-
|
11
|
+
date: 2022-11-07 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.39.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: []
|