google-apis-container_v1 0.80.0 → 0.82.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: d73d1bece6d1f3aab0ca8200fde0f7d6659ca896243fb3057c69688541b6d3e3
|
4
|
+
data.tar.gz: 3a3dc3f627edb9e17c691921a934537a87237a8d231a479c6d1a348bb52e6e2f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df4bbc1d84ef3458e34dd5dcc0edae576b040405abd1d45ec16973fc22e186ced2eaeee35554b643518164898ff2922495c48508e5303727aaefd89407c0a796
|
7
|
+
data.tar.gz: 4ccc54fd0697c2b69acae276bc2eaf1ec633c10b1379fa9368efbe7ea5cfe35d0c8eecb2cb41a59e539c8db7f90c51094ef773dc117107d658dfd7dd103f7745
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-container_v1
|
2
2
|
|
3
|
+
### v0.82.0 (2024-10-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240923
|
6
|
+
|
7
|
+
### v0.81.0 (2024-10-06)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240912
|
10
|
+
|
3
11
|
### v0.80.0 (2024-09-22)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240905
|
@@ -956,6 +956,11 @@ module Google
|
|
956
956
|
# @return [Google::Apis::ContainerV1::ConfidentialNodes]
|
957
957
|
attr_accessor :confidential_nodes
|
958
958
|
|
959
|
+
# Configuration for all of the cluster's control plane endpoints.
|
960
|
+
# Corresponds to the JSON property `controlPlaneEndpointsConfig`
|
961
|
+
# @return [Google::Apis::ContainerV1::ControlPlaneEndpointsConfig]
|
962
|
+
attr_accessor :control_plane_endpoints_config
|
963
|
+
|
959
964
|
# Configuration for fine-grained cost management feature.
|
960
965
|
# Corresponds to the JSON property `costManagementConfig`
|
961
966
|
# @return [Google::Apis::ContainerV1::CostManagementConfig]
|
@@ -1351,6 +1356,12 @@ module Google
|
|
1351
1356
|
# @return [String]
|
1352
1357
|
attr_accessor :tpu_ipv4_cidr_block
|
1353
1358
|
|
1359
|
+
# UserManagedKeysConfig holds the resource address to Keys which are used for
|
1360
|
+
# signing certs and token that are used for communication within cluster.
|
1361
|
+
# Corresponds to the JSON property `userManagedKeysConfig`
|
1362
|
+
# @return [Google::Apis::ContainerV1::UserManagedKeysConfig]
|
1363
|
+
attr_accessor :user_managed_keys_config
|
1364
|
+
|
1354
1365
|
# VerticalPodAutoscaling contains global, per-cluster information required by
|
1355
1366
|
# Vertical Pod Autoscaler to automatically adjust the resources of pods
|
1356
1367
|
# controlled by it.
|
@@ -1385,6 +1396,7 @@ module Google
|
|
1385
1396
|
@compliance_posture_config = args[:compliance_posture_config] if args.key?(:compliance_posture_config)
|
1386
1397
|
@conditions = args[:conditions] if args.key?(:conditions)
|
1387
1398
|
@confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
|
1399
|
+
@control_plane_endpoints_config = args[:control_plane_endpoints_config] if args.key?(:control_plane_endpoints_config)
|
1388
1400
|
@cost_management_config = args[:cost_management_config] if args.key?(:cost_management_config)
|
1389
1401
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1390
1402
|
@current_master_version = args[:current_master_version] if args.key?(:current_master_version)
|
@@ -1446,6 +1458,7 @@ module Google
|
|
1446
1458
|
@status_message = args[:status_message] if args.key?(:status_message)
|
1447
1459
|
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
1448
1460
|
@tpu_ipv4_cidr_block = args[:tpu_ipv4_cidr_block] if args.key?(:tpu_ipv4_cidr_block)
|
1461
|
+
@user_managed_keys_config = args[:user_managed_keys_config] if args.key?(:user_managed_keys_config)
|
1449
1462
|
@vertical_pod_autoscaling = args[:vertical_pod_autoscaling] if args.key?(:vertical_pod_autoscaling)
|
1450
1463
|
@workload_identity_config = args[:workload_identity_config] if args.key?(:workload_identity_config)
|
1451
1464
|
@zone = args[:zone] if args.key?(:zone)
|
@@ -1571,6 +1584,11 @@ module Google
|
|
1571
1584
|
# @return [Google::Apis::ContainerV1::ContainerdConfig]
|
1572
1585
|
attr_accessor :desired_containerd_config
|
1573
1586
|
|
1587
|
+
# Configuration for all of the cluster's control plane endpoints.
|
1588
|
+
# Corresponds to the JSON property `desiredControlPlaneEndpointsConfig`
|
1589
|
+
# @return [Google::Apis::ContainerV1::ControlPlaneEndpointsConfig]
|
1590
|
+
attr_accessor :desired_control_plane_endpoints_config
|
1591
|
+
|
1574
1592
|
# Configuration for fine-grained cost management feature.
|
1575
1593
|
# Corresponds to the JSON property `desiredCostManagementConfig`
|
1576
1594
|
# @return [Google::Apis::ContainerV1::CostManagementConfig]
|
@@ -1586,6 +1604,13 @@ module Google
|
|
1586
1604
|
# @return [String]
|
1587
1605
|
attr_accessor :desired_datapath_provider
|
1588
1606
|
|
1607
|
+
# Override the default setting of whether future created nodes have private IP
|
1608
|
+
# addresses only, namely NetworkConfig.default_enable_private_nodes
|
1609
|
+
# Corresponds to the JSON property `desiredDefaultEnablePrivateNodes`
|
1610
|
+
# @return [Boolean]
|
1611
|
+
attr_accessor :desired_default_enable_private_nodes
|
1612
|
+
alias_method :desired_default_enable_private_nodes?, :desired_default_enable_private_nodes
|
1613
|
+
|
1589
1614
|
# DefaultSnatStatus contains the desired state of whether default sNAT should be
|
1590
1615
|
# disabled on the cluster.
|
1591
1616
|
# Corresponds to the JSON property `desiredDefaultSnatStatus`
|
@@ -1615,7 +1640,11 @@ module Google
|
|
1615
1640
|
attr_accessor :desired_enable_multi_networking
|
1616
1641
|
alias_method :desired_enable_multi_networking?, :desired_enable_multi_networking
|
1617
1642
|
|
1618
|
-
# Enable/Disable private endpoint for the cluster's master.
|
1643
|
+
# Enable/Disable private endpoint for the cluster's master. Deprecated: Use
|
1644
|
+
# desired_control_plane_endpoints_config.ip_endpoints_config.
|
1645
|
+
# enable_public_endpoint instead. Note that the value of enable_public_endpoint
|
1646
|
+
# is reversed: if enable_private_endpoint is false, then enable_public_endpoint
|
1647
|
+
# will be true.
|
1619
1648
|
# Corresponds to the JSON property `desiredEnablePrivateEndpoint`
|
1620
1649
|
# @return [Boolean]
|
1621
1650
|
attr_accessor :desired_enable_private_endpoint
|
@@ -1894,6 +1923,12 @@ module Google
|
|
1894
1923
|
# @return [Google::Apis::ContainerV1::AdditionalPodRangesConfig]
|
1895
1924
|
attr_accessor :removed_additional_pod_ranges_config
|
1896
1925
|
|
1926
|
+
# UserManagedKeysConfig holds the resource address to Keys which are used for
|
1927
|
+
# signing certs and token that are used for communication within cluster.
|
1928
|
+
# Corresponds to the JSON property `userManagedKeysConfig`
|
1929
|
+
# @return [Google::Apis::ContainerV1::UserManagedKeysConfig]
|
1930
|
+
attr_accessor :user_managed_keys_config
|
1931
|
+
|
1897
1932
|
def initialize(**args)
|
1898
1933
|
update!(**args)
|
1899
1934
|
end
|
@@ -1908,9 +1943,11 @@ module Google
|
|
1908
1943
|
@desired_cluster_autoscaling = args[:desired_cluster_autoscaling] if args.key?(:desired_cluster_autoscaling)
|
1909
1944
|
@desired_compliance_posture_config = args[:desired_compliance_posture_config] if args.key?(:desired_compliance_posture_config)
|
1910
1945
|
@desired_containerd_config = args[:desired_containerd_config] if args.key?(:desired_containerd_config)
|
1946
|
+
@desired_control_plane_endpoints_config = args[:desired_control_plane_endpoints_config] if args.key?(:desired_control_plane_endpoints_config)
|
1911
1947
|
@desired_cost_management_config = args[:desired_cost_management_config] if args.key?(:desired_cost_management_config)
|
1912
1948
|
@desired_database_encryption = args[:desired_database_encryption] if args.key?(:desired_database_encryption)
|
1913
1949
|
@desired_datapath_provider = args[:desired_datapath_provider] if args.key?(:desired_datapath_provider)
|
1950
|
+
@desired_default_enable_private_nodes = args[:desired_default_enable_private_nodes] if args.key?(:desired_default_enable_private_nodes)
|
1914
1951
|
@desired_default_snat_status = args[:desired_default_snat_status] if args.key?(:desired_default_snat_status)
|
1915
1952
|
@desired_dns_config = args[:desired_dns_config] if args.key?(:desired_dns_config)
|
1916
1953
|
@desired_enable_cilium_clusterwide_network_policy = args[:desired_enable_cilium_clusterwide_network_policy] if args.key?(:desired_enable_cilium_clusterwide_network_policy)
|
@@ -1960,6 +1997,7 @@ module Google
|
|
1960
1997
|
@enable_k8s_beta_apis = args[:enable_k8s_beta_apis] if args.key?(:enable_k8s_beta_apis)
|
1961
1998
|
@etag = args[:etag] if args.key?(:etag)
|
1962
1999
|
@removed_additional_pod_ranges_config = args[:removed_additional_pod_ranges_config] if args.key?(:removed_additional_pod_ranges_config)
|
2000
|
+
@user_managed_keys_config = args[:user_managed_keys_config] if args.key?(:user_managed_keys_config)
|
1963
2001
|
end
|
1964
2002
|
end
|
1965
2003
|
|
@@ -2147,6 +2185,31 @@ module Google
|
|
2147
2185
|
end
|
2148
2186
|
end
|
2149
2187
|
|
2188
|
+
# Configuration for all of the cluster's control plane endpoints.
|
2189
|
+
class ControlPlaneEndpointsConfig
|
2190
|
+
include Google::Apis::Core::Hashable
|
2191
|
+
|
2192
|
+
# Describes the configuration of a DNS endpoint.
|
2193
|
+
# Corresponds to the JSON property `dnsEndpointConfig`
|
2194
|
+
# @return [Google::Apis::ContainerV1::DnsEndpointConfig]
|
2195
|
+
attr_accessor :dns_endpoint_config
|
2196
|
+
|
2197
|
+
# IP endpoints configuration.
|
2198
|
+
# Corresponds to the JSON property `ipEndpointsConfig`
|
2199
|
+
# @return [Google::Apis::ContainerV1::IpEndpointsConfig]
|
2200
|
+
attr_accessor :ip_endpoints_config
|
2201
|
+
|
2202
|
+
def initialize(**args)
|
2203
|
+
update!(**args)
|
2204
|
+
end
|
2205
|
+
|
2206
|
+
# Update properties of this object
|
2207
|
+
def update!(**args)
|
2208
|
+
@dns_endpoint_config = args[:dns_endpoint_config] if args.key?(:dns_endpoint_config)
|
2209
|
+
@ip_endpoints_config = args[:ip_endpoints_config] if args.key?(:ip_endpoints_config)
|
2210
|
+
end
|
2211
|
+
end
|
2212
|
+
|
2150
2213
|
# Configuration for fine-grained cost management feature.
|
2151
2214
|
class CostManagementConfig
|
2152
2215
|
include Google::Apis::Core::Hashable
|
@@ -2300,6 +2363,36 @@ module Google
|
|
2300
2363
|
end
|
2301
2364
|
end
|
2302
2365
|
|
2366
|
+
# Describes the configuration of a DNS endpoint.
|
2367
|
+
class DnsEndpointConfig
|
2368
|
+
include Google::Apis::Core::Hashable
|
2369
|
+
|
2370
|
+
# Controls whether user traffic is allowed over this endpoint. Note that GCP-
|
2371
|
+
# managed services may still use the endpoint even if this is false.
|
2372
|
+
# Corresponds to the JSON property `allowExternalTraffic`
|
2373
|
+
# @return [Boolean]
|
2374
|
+
attr_accessor :allow_external_traffic
|
2375
|
+
alias_method :allow_external_traffic?, :allow_external_traffic
|
2376
|
+
|
2377
|
+
# Output only. The cluster's DNS endpoint configuration. A DNS format address.
|
2378
|
+
# This is accessible from the public internet. Ex: uid.us-central1.gke.goog.
|
2379
|
+
# Always present, but the behavior may change according to the value of
|
2380
|
+
# DNSEndpointConfig.allow_external_traffic.
|
2381
|
+
# Corresponds to the JSON property `endpoint`
|
2382
|
+
# @return [String]
|
2383
|
+
attr_accessor :endpoint
|
2384
|
+
|
2385
|
+
def initialize(**args)
|
2386
|
+
update!(**args)
|
2387
|
+
end
|
2388
|
+
|
2389
|
+
# Update properties of this object
|
2390
|
+
def update!(**args)
|
2391
|
+
@allow_external_traffic = args[:allow_external_traffic] if args.key?(:allow_external_traffic)
|
2392
|
+
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
2393
|
+
end
|
2394
|
+
end
|
2395
|
+
|
2303
2396
|
# Time window specified for daily maintenance operations.
|
2304
2397
|
class DailyMaintenanceWindow
|
2305
2398
|
include Google::Apis::Core::Hashable
|
@@ -3135,6 +3228,76 @@ module Google
|
|
3135
3228
|
end
|
3136
3229
|
end
|
3137
3230
|
|
3231
|
+
# IP endpoints configuration.
|
3232
|
+
class IpEndpointsConfig
|
3233
|
+
include Google::Apis::Core::Hashable
|
3234
|
+
|
3235
|
+
# Configuration options for the master authorized networks feature. Enabled
|
3236
|
+
# master authorized networks will disallow all external traffic to access
|
3237
|
+
# Kubernetes master through HTTPS except traffic from the given CIDR blocks,
|
3238
|
+
# Google Compute Engine Public IPs and Google Prod IPs.
|
3239
|
+
# Corresponds to the JSON property `authorizedNetworksConfig`
|
3240
|
+
# @return [Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig]
|
3241
|
+
attr_accessor :authorized_networks_config
|
3242
|
+
|
3243
|
+
# Controls whether the control plane allows access through a public IP. It is
|
3244
|
+
# invalid to specify both PrivateClusterConfig.enablePrivateEndpoint and this
|
3245
|
+
# field at the same time.
|
3246
|
+
# Corresponds to the JSON property `enablePublicEndpoint`
|
3247
|
+
# @return [Boolean]
|
3248
|
+
attr_accessor :enable_public_endpoint
|
3249
|
+
alias_method :enable_public_endpoint?, :enable_public_endpoint
|
3250
|
+
|
3251
|
+
# Controls whether to allow direct IP access.
|
3252
|
+
# Corresponds to the JSON property `enabled`
|
3253
|
+
# @return [Boolean]
|
3254
|
+
attr_accessor :enabled
|
3255
|
+
alias_method :enabled?, :enabled
|
3256
|
+
|
3257
|
+
# Controls whether the control plane's private endpoint is accessible from
|
3258
|
+
# sources in other regions. It is invalid to specify both
|
3259
|
+
# PrivateClusterMasterGlobalAccessConfig.enabled and this field at the same time.
|
3260
|
+
# Corresponds to the JSON property `globalAccess`
|
3261
|
+
# @return [Boolean]
|
3262
|
+
attr_accessor :global_access
|
3263
|
+
alias_method :global_access?, :global_access
|
3264
|
+
|
3265
|
+
# Output only. The internal IP address of this cluster's control plane. Only
|
3266
|
+
# populated if enabled.
|
3267
|
+
# Corresponds to the JSON property `privateEndpoint`
|
3268
|
+
# @return [String]
|
3269
|
+
attr_accessor :private_endpoint
|
3270
|
+
|
3271
|
+
# Subnet to provision the master's private endpoint during cluster creation.
|
3272
|
+
# Specified in projects/*/regions/*/subnetworks/* format. It is invalid to
|
3273
|
+
# specify both PrivateClusterConfig.privateEndpointSubnetwork and this field at
|
3274
|
+
# the same time.
|
3275
|
+
# Corresponds to the JSON property `privateEndpointSubnetwork`
|
3276
|
+
# @return [String]
|
3277
|
+
attr_accessor :private_endpoint_subnetwork
|
3278
|
+
|
3279
|
+
# Output only. The external IP address of this cluster's control plane. Only
|
3280
|
+
# populated if enabled.
|
3281
|
+
# Corresponds to the JSON property `publicEndpoint`
|
3282
|
+
# @return [String]
|
3283
|
+
attr_accessor :public_endpoint
|
3284
|
+
|
3285
|
+
def initialize(**args)
|
3286
|
+
update!(**args)
|
3287
|
+
end
|
3288
|
+
|
3289
|
+
# Update properties of this object
|
3290
|
+
def update!(**args)
|
3291
|
+
@authorized_networks_config = args[:authorized_networks_config] if args.key?(:authorized_networks_config)
|
3292
|
+
@enable_public_endpoint = args[:enable_public_endpoint] if args.key?(:enable_public_endpoint)
|
3293
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
3294
|
+
@global_access = args[:global_access] if args.key?(:global_access)
|
3295
|
+
@private_endpoint = args[:private_endpoint] if args.key?(:private_endpoint)
|
3296
|
+
@private_endpoint_subnetwork = args[:private_endpoint_subnetwork] if args.key?(:private_endpoint_subnetwork)
|
3297
|
+
@public_endpoint = args[:public_endpoint] if args.key?(:public_endpoint)
|
3298
|
+
end
|
3299
|
+
end
|
3300
|
+
|
3138
3301
|
# IdentityServiceConfig is configuration for Identity Service which allows
|
3139
3302
|
# customers to use external identity providers with the K8S API
|
3140
3303
|
class IdentityServiceConfig
|
@@ -3719,6 +3882,12 @@ module Google
|
|
3719
3882
|
attr_accessor :gcp_public_cidrs_access_enabled
|
3720
3883
|
alias_method :gcp_public_cidrs_access_enabled?, :gcp_public_cidrs_access_enabled
|
3721
3884
|
|
3885
|
+
# Whether master authorized networks is enforced on private endpoint or not.
|
3886
|
+
# Corresponds to the JSON property `privateEndpointEnforcementEnabled`
|
3887
|
+
# @return [Boolean]
|
3888
|
+
attr_accessor :private_endpoint_enforcement_enabled
|
3889
|
+
alias_method :private_endpoint_enforcement_enabled?, :private_endpoint_enforcement_enabled
|
3890
|
+
|
3722
3891
|
def initialize(**args)
|
3723
3892
|
update!(**args)
|
3724
3893
|
end
|
@@ -3728,6 +3897,7 @@ module Google
|
|
3728
3897
|
@cidr_blocks = args[:cidr_blocks] if args.key?(:cidr_blocks)
|
3729
3898
|
@enabled = args[:enabled] if args.key?(:enabled)
|
3730
3899
|
@gcp_public_cidrs_access_enabled = args[:gcp_public_cidrs_access_enabled] if args.key?(:gcp_public_cidrs_access_enabled)
|
3900
|
+
@private_endpoint_enforcement_enabled = args[:private_endpoint_enforcement_enabled] if args.key?(:private_endpoint_enforcement_enabled)
|
3731
3901
|
end
|
3732
3902
|
end
|
3733
3903
|
|
@@ -3874,6 +4044,15 @@ module Google
|
|
3874
4044
|
# @return [String]
|
3875
4045
|
attr_accessor :datapath_provider
|
3876
4046
|
|
4047
|
+
# Controls whether by default nodes have private IP addresses only. It is
|
4048
|
+
# invalid to specify both PrivateClusterConfig.enablePrivateNodes and this field
|
4049
|
+
# at the same time. To update the default setting, use ClusterUpdate.
|
4050
|
+
# desired_default_enable_private_nodes
|
4051
|
+
# Corresponds to the JSON property `defaultEnablePrivateNodes`
|
4052
|
+
# @return [Boolean]
|
4053
|
+
attr_accessor :default_enable_private_nodes
|
4054
|
+
alias_method :default_enable_private_nodes?, :default_enable_private_nodes
|
4055
|
+
|
3877
4056
|
# DefaultSnatStatus contains the desired state of whether default sNAT should be
|
3878
4057
|
# disabled on the cluster.
|
3879
4058
|
# Corresponds to the JSON property `defaultSnatStatus`
|
@@ -3964,6 +4143,7 @@ module Google
|
|
3964
4143
|
# Update properties of this object
|
3965
4144
|
def update!(**args)
|
3966
4145
|
@datapath_provider = args[:datapath_provider] if args.key?(:datapath_provider)
|
4146
|
+
@default_enable_private_nodes = args[:default_enable_private_nodes] if args.key?(:default_enable_private_nodes)
|
3967
4147
|
@default_snat_status = args[:default_snat_status] if args.key?(:default_snat_status)
|
3968
4148
|
@dns_config = args[:dns_config] if args.key?(:dns_config)
|
3969
4149
|
@enable_cilium_clusterwide_network_policy = args[:enable_cilium_clusterwide_network_policy] if args.key?(:enable_cilium_clusterwide_network_policy)
|
@@ -4151,6 +4331,14 @@ module Google
|
|
4151
4331
|
# @return [String]
|
4152
4332
|
attr_accessor :disk_type
|
4153
4333
|
|
4334
|
+
# Output only. effective_cgroup_mode is the cgroup mode actually used by the
|
4335
|
+
# node pool. It is determined by the cgroup mode specified in the
|
4336
|
+
# LinuxNodeConfig or the default cgroup mode based on the cluster creation
|
4337
|
+
# version.
|
4338
|
+
# Corresponds to the JSON property `effectiveCgroupMode`
|
4339
|
+
# @return [String]
|
4340
|
+
attr_accessor :effective_cgroup_mode
|
4341
|
+
|
4154
4342
|
# Optional. Reserved for future use.
|
4155
4343
|
# Corresponds to the JSON property `enableConfidentialStorage`
|
4156
4344
|
# @return [Boolean]
|
@@ -4398,6 +4586,7 @@ module Google
|
|
4398
4586
|
@containerd_config = args[:containerd_config] if args.key?(:containerd_config)
|
4399
4587
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
4400
4588
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
4589
|
+
@effective_cgroup_mode = args[:effective_cgroup_mode] if args.key?(:effective_cgroup_mode)
|
4401
4590
|
@enable_confidential_storage = args[:enable_confidential_storage] if args.key?(:enable_confidential_storage)
|
4402
4591
|
@ephemeral_storage_local_ssd_config = args[:ephemeral_storage_local_ssd_config] if args.key?(:ephemeral_storage_local_ssd_config)
|
4403
4592
|
@fast_socket = args[:fast_socket] if args.key?(:fast_socket)
|
@@ -4622,8 +4811,8 @@ module Google
|
|
4622
4811
|
alias_method :create_pod_range?, :create_pod_range
|
4623
4812
|
|
4624
4813
|
# Whether nodes have internal IP addresses only. If enable_private_nodes is not
|
4625
|
-
# specified, then the value is derived from
|
4626
|
-
#
|
4814
|
+
# specified, then the value is derived from Cluster.NetworkConfig.
|
4815
|
+
# default_enable_private_nodes
|
4627
4816
|
# Corresponds to the JSON property `enablePrivateNodes`
|
4628
4817
|
# @return [Boolean]
|
4629
4818
|
attr_accessor :enable_private_nodes
|
@@ -5379,6 +5568,10 @@ module Google
|
|
5379
5568
|
include Google::Apis::Core::Hashable
|
5380
5569
|
|
5381
5570
|
# Whether the master's internal IP address is used as the cluster endpoint.
|
5571
|
+
# Deprecated: Use ControlPlaneEndpointsConfig.IPEndpointsConfig.
|
5572
|
+
# enable_public_endpoint instead. Note that the value of enable_public_endpoint
|
5573
|
+
# is reversed: if enable_private_endpoint is false, then enable_public_endpoint
|
5574
|
+
# will be true.
|
5382
5575
|
# Corresponds to the JSON property `enablePrivateEndpoint`
|
5383
5576
|
# @return [Boolean]
|
5384
5577
|
attr_accessor :enable_private_endpoint
|
@@ -5386,7 +5579,7 @@ module Google
|
|
5386
5579
|
|
5387
5580
|
# Whether nodes have internal IP addresses only. If enabled, all nodes are given
|
5388
5581
|
# only RFC 1918 private addresses and communicate with the master via private
|
5389
|
-
# networking.
|
5582
|
+
# networking. Deprecated: Use NetworkConfig.default_enable_private_nodes instead.
|
5390
5583
|
# Corresponds to the JSON property `enablePrivateNodes`
|
5391
5584
|
# @return [Boolean]
|
5392
5585
|
attr_accessor :enable_private_nodes
|
@@ -5411,17 +5604,23 @@ module Google
|
|
5411
5604
|
attr_accessor :peering_name
|
5412
5605
|
|
5413
5606
|
# Output only. The internal IP address of this cluster's master endpoint.
|
5607
|
+
# Deprecated: Use ControlPlaneEndpointsConfig.IPEndpointsConfig.private_endpoint
|
5608
|
+
# instead.
|
5414
5609
|
# Corresponds to the JSON property `privateEndpoint`
|
5415
5610
|
# @return [String]
|
5416
5611
|
attr_accessor :private_endpoint
|
5417
5612
|
|
5418
5613
|
# Subnet to provision the master's private endpoint during cluster creation.
|
5419
|
-
# Specified in projects/*/regions/*/subnetworks/* format.
|
5614
|
+
# Specified in projects/*/regions/*/subnetworks/* format. Deprecated: Use
|
5615
|
+
# ControlPlaneEndpointsConfig.IPEndpointsConfig.private_endpoint_subnetwork
|
5616
|
+
# instead.
|
5420
5617
|
# Corresponds to the JSON property `privateEndpointSubnetwork`
|
5421
5618
|
# @return [String]
|
5422
5619
|
attr_accessor :private_endpoint_subnetwork
|
5423
5620
|
|
5424
5621
|
# Output only. The external IP address of this cluster's master endpoint.
|
5622
|
+
# Deprecated:Use ControlPlaneEndpointsConfig.IPEndpointsConfig.public_endpoint
|
5623
|
+
# instead.
|
5425
5624
|
# Corresponds to the JSON property `publicEndpoint`
|
5426
5625
|
# @return [String]
|
5427
5626
|
attr_accessor :public_endpoint
|
@@ -7805,6 +8004,78 @@ module Google
|
|
7805
8004
|
end
|
7806
8005
|
end
|
7807
8006
|
|
8007
|
+
# UserManagedKeysConfig holds the resource address to Keys which are used for
|
8008
|
+
# signing certs and token that are used for communication within cluster.
|
8009
|
+
class UserManagedKeysConfig
|
8010
|
+
include Google::Apis::Core::Hashable
|
8011
|
+
|
8012
|
+
# The Certificate Authority Service caPool to use for the aggregation CA in this
|
8013
|
+
# cluster.
|
8014
|
+
# Corresponds to the JSON property `aggregationCa`
|
8015
|
+
# @return [String]
|
8016
|
+
attr_accessor :aggregation_ca
|
8017
|
+
|
8018
|
+
# The Certificate Authority Service caPool to use for the cluster CA in this
|
8019
|
+
# cluster.
|
8020
|
+
# Corresponds to the JSON property `clusterCa`
|
8021
|
+
# @return [String]
|
8022
|
+
attr_accessor :cluster_ca
|
8023
|
+
|
8024
|
+
# The Cloud KMS cryptoKey to use for Confidential Hyperdisk on the control plane
|
8025
|
+
# nodes.
|
8026
|
+
# Corresponds to the JSON property `controlPlaneDiskEncryptionKey`
|
8027
|
+
# @return [String]
|
8028
|
+
attr_accessor :control_plane_disk_encryption_key
|
8029
|
+
|
8030
|
+
# Resource path of the Certificate Authority Service caPool to use for the etcd
|
8031
|
+
# API CA in this cluster.
|
8032
|
+
# Corresponds to the JSON property `etcdApiCa`
|
8033
|
+
# @return [String]
|
8034
|
+
attr_accessor :etcd_api_ca
|
8035
|
+
|
8036
|
+
# Resource path of the Certificate Authority Service caPool to use for the etcd
|
8037
|
+
# peer CA in this cluster.
|
8038
|
+
# Corresponds to the JSON property `etcdPeerCa`
|
8039
|
+
# @return [String]
|
8040
|
+
attr_accessor :etcd_peer_ca
|
8041
|
+
|
8042
|
+
# Resource path of the Cloud KMS cryptoKey to use for encryption of internal
|
8043
|
+
# etcd backups.
|
8044
|
+
# Corresponds to the JSON property `gkeopsEtcdBackupEncryptionKey`
|
8045
|
+
# @return [String]
|
8046
|
+
attr_accessor :gkeops_etcd_backup_encryption_key
|
8047
|
+
|
8048
|
+
# The Cloud KMS cryptoKeyVersions to use for signing service account JWTs issued
|
8049
|
+
# by this cluster. Format: `projects/`project`/locations/`location`/keyRings/`
|
8050
|
+
# keyring`/cryptoKeys/`cryptoKey`/cryptoKeyVersions/`cryptoKeyVersion``
|
8051
|
+
# Corresponds to the JSON property `serviceAccountSigningKeys`
|
8052
|
+
# @return [Array<String>]
|
8053
|
+
attr_accessor :service_account_signing_keys
|
8054
|
+
|
8055
|
+
# The Cloud KMS cryptoKeyVersions to use for verifying service account JWTs
|
8056
|
+
# issued by this cluster. Format: `projects/`project`/locations/`location`/
|
8057
|
+
# keyRings/`keyring`/cryptoKeys/`cryptoKey`/cryptoKeyVersions/`cryptoKeyVersion``
|
8058
|
+
# Corresponds to the JSON property `serviceAccountVerificationKeys`
|
8059
|
+
# @return [Array<String>]
|
8060
|
+
attr_accessor :service_account_verification_keys
|
8061
|
+
|
8062
|
+
def initialize(**args)
|
8063
|
+
update!(**args)
|
8064
|
+
end
|
8065
|
+
|
8066
|
+
# Update properties of this object
|
8067
|
+
def update!(**args)
|
8068
|
+
@aggregation_ca = args[:aggregation_ca] if args.key?(:aggregation_ca)
|
8069
|
+
@cluster_ca = args[:cluster_ca] if args.key?(:cluster_ca)
|
8070
|
+
@control_plane_disk_encryption_key = args[:control_plane_disk_encryption_key] if args.key?(:control_plane_disk_encryption_key)
|
8071
|
+
@etcd_api_ca = args[:etcd_api_ca] if args.key?(:etcd_api_ca)
|
8072
|
+
@etcd_peer_ca = args[:etcd_peer_ca] if args.key?(:etcd_peer_ca)
|
8073
|
+
@gkeops_etcd_backup_encryption_key = args[:gkeops_etcd_backup_encryption_key] if args.key?(:gkeops_etcd_backup_encryption_key)
|
8074
|
+
@service_account_signing_keys = args[:service_account_signing_keys] if args.key?(:service_account_signing_keys)
|
8075
|
+
@service_account_verification_keys = args[:service_account_verification_keys] if args.key?(:service_account_verification_keys)
|
8076
|
+
end
|
8077
|
+
end
|
8078
|
+
|
7808
8079
|
# VerticalPodAutoscaling contains global, per-cluster information required by
|
7809
8080
|
# Vertical Pod Autoscaler to automatically adjust the resources of pods
|
7810
8081
|
# controlled by it.
|
@@ -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.82.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240923"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -232,6 +232,12 @@ module Google
|
|
232
232
|
include Google::Apis::Core::JsonObjectSupport
|
233
233
|
end
|
234
234
|
|
235
|
+
class ControlPlaneEndpointsConfig
|
236
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
|
+
|
238
|
+
include Google::Apis::Core::JsonObjectSupport
|
239
|
+
end
|
240
|
+
|
235
241
|
class CostManagementConfig
|
236
242
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
243
|
|
@@ -256,6 +262,12 @@ module Google
|
|
256
262
|
include Google::Apis::Core::JsonObjectSupport
|
257
263
|
end
|
258
264
|
|
265
|
+
class DnsEndpointConfig
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
259
271
|
class DailyMaintenanceWindow
|
260
272
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
273
|
|
@@ -418,6 +430,12 @@ module Google
|
|
418
430
|
include Google::Apis::Core::JsonObjectSupport
|
419
431
|
end
|
420
432
|
|
433
|
+
class IpEndpointsConfig
|
434
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
435
|
+
|
436
|
+
include Google::Apis::Core::JsonObjectSupport
|
437
|
+
end
|
438
|
+
|
421
439
|
class IdentityServiceConfig
|
422
440
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
441
|
|
@@ -1072,6 +1090,12 @@ module Google
|
|
1072
1090
|
include Google::Apis::Core::JsonObjectSupport
|
1073
1091
|
end
|
1074
1092
|
|
1093
|
+
class UserManagedKeysConfig
|
1094
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1095
|
+
|
1096
|
+
include Google::Apis::Core::JsonObjectSupport
|
1097
|
+
end
|
1098
|
+
|
1075
1099
|
class VerticalPodAutoscaling
|
1076
1100
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1077
1101
|
|
@@ -1369,6 +1393,8 @@ module Google
|
|
1369
1393
|
|
1370
1394
|
property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1::ConfidentialNodes, decorator: Google::Apis::ContainerV1::ConfidentialNodes::Representation
|
1371
1395
|
|
1396
|
+
property :control_plane_endpoints_config, as: 'controlPlaneEndpointsConfig', class: Google::Apis::ContainerV1::ControlPlaneEndpointsConfig, decorator: Google::Apis::ContainerV1::ControlPlaneEndpointsConfig::Representation
|
1397
|
+
|
1372
1398
|
property :cost_management_config, as: 'costManagementConfig', class: Google::Apis::ContainerV1::CostManagementConfig, decorator: Google::Apis::ContainerV1::CostManagementConfig::Representation
|
1373
1399
|
|
1374
1400
|
property :create_time, as: 'createTime'
|
@@ -1460,6 +1486,8 @@ module Google
|
|
1460
1486
|
property :status_message, as: 'statusMessage'
|
1461
1487
|
property :subnetwork, as: 'subnetwork'
|
1462
1488
|
property :tpu_ipv4_cidr_block, as: 'tpuIpv4CidrBlock'
|
1489
|
+
property :user_managed_keys_config, as: 'userManagedKeysConfig', class: Google::Apis::ContainerV1::UserManagedKeysConfig, decorator: Google::Apis::ContainerV1::UserManagedKeysConfig::Representation
|
1490
|
+
|
1463
1491
|
property :vertical_pod_autoscaling, as: 'verticalPodAutoscaling', class: Google::Apis::ContainerV1::VerticalPodAutoscaling, decorator: Google::Apis::ContainerV1::VerticalPodAutoscaling::Representation
|
1464
1492
|
|
1465
1493
|
property :workload_identity_config, as: 'workloadIdentityConfig', class: Google::Apis::ContainerV1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1::WorkloadIdentityConfig::Representation
|
@@ -1507,11 +1535,14 @@ module Google
|
|
1507
1535
|
|
1508
1536
|
property :desired_containerd_config, as: 'desiredContainerdConfig', class: Google::Apis::ContainerV1::ContainerdConfig, decorator: Google::Apis::ContainerV1::ContainerdConfig::Representation
|
1509
1537
|
|
1538
|
+
property :desired_control_plane_endpoints_config, as: 'desiredControlPlaneEndpointsConfig', class: Google::Apis::ContainerV1::ControlPlaneEndpointsConfig, decorator: Google::Apis::ContainerV1::ControlPlaneEndpointsConfig::Representation
|
1539
|
+
|
1510
1540
|
property :desired_cost_management_config, as: 'desiredCostManagementConfig', class: Google::Apis::ContainerV1::CostManagementConfig, decorator: Google::Apis::ContainerV1::CostManagementConfig::Representation
|
1511
1541
|
|
1512
1542
|
property :desired_database_encryption, as: 'desiredDatabaseEncryption', class: Google::Apis::ContainerV1::DatabaseEncryption, decorator: Google::Apis::ContainerV1::DatabaseEncryption::Representation
|
1513
1543
|
|
1514
1544
|
property :desired_datapath_provider, as: 'desiredDatapathProvider'
|
1545
|
+
property :desired_default_enable_private_nodes, as: 'desiredDefaultEnablePrivateNodes'
|
1515
1546
|
property :desired_default_snat_status, as: 'desiredDefaultSnatStatus', class: Google::Apis::ContainerV1::DefaultSnatStatus, decorator: Google::Apis::ContainerV1::DefaultSnatStatus::Representation
|
1516
1547
|
|
1517
1548
|
property :desired_dns_config, as: 'desiredDnsConfig', class: Google::Apis::ContainerV1::DnsConfig, decorator: Google::Apis::ContainerV1::DnsConfig::Representation
|
@@ -1595,6 +1626,8 @@ module Google
|
|
1595
1626
|
property :etag, as: 'etag'
|
1596
1627
|
property :removed_additional_pod_ranges_config, as: 'removedAdditionalPodRangesConfig', class: Google::Apis::ContainerV1::AdditionalPodRangesConfig, decorator: Google::Apis::ContainerV1::AdditionalPodRangesConfig::Representation
|
1597
1628
|
|
1629
|
+
property :user_managed_keys_config, as: 'userManagedKeysConfig', class: Google::Apis::ContainerV1::UserManagedKeysConfig, decorator: Google::Apis::ContainerV1::UserManagedKeysConfig::Representation
|
1630
|
+
|
1598
1631
|
end
|
1599
1632
|
end
|
1600
1633
|
|
@@ -1659,6 +1692,16 @@ module Google
|
|
1659
1692
|
end
|
1660
1693
|
end
|
1661
1694
|
|
1695
|
+
class ControlPlaneEndpointsConfig
|
1696
|
+
# @private
|
1697
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1698
|
+
property :dns_endpoint_config, as: 'dnsEndpointConfig', class: Google::Apis::ContainerV1::DnsEndpointConfig, decorator: Google::Apis::ContainerV1::DnsEndpointConfig::Representation
|
1699
|
+
|
1700
|
+
property :ip_endpoints_config, as: 'ipEndpointsConfig', class: Google::Apis::ContainerV1::IpEndpointsConfig, decorator: Google::Apis::ContainerV1::IpEndpointsConfig::Representation
|
1701
|
+
|
1702
|
+
end
|
1703
|
+
end
|
1704
|
+
|
1662
1705
|
class CostManagementConfig
|
1663
1706
|
# @private
|
1664
1707
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1699,6 +1742,14 @@ module Google
|
|
1699
1742
|
end
|
1700
1743
|
end
|
1701
1744
|
|
1745
|
+
class DnsEndpointConfig
|
1746
|
+
# @private
|
1747
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1748
|
+
property :allow_external_traffic, as: 'allowExternalTraffic'
|
1749
|
+
property :endpoint, as: 'endpoint'
|
1750
|
+
end
|
1751
|
+
end
|
1752
|
+
|
1702
1753
|
class DailyMaintenanceWindow
|
1703
1754
|
# @private
|
1704
1755
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1931,6 +1982,20 @@ module Google
|
|
1931
1982
|
end
|
1932
1983
|
end
|
1933
1984
|
|
1985
|
+
class IpEndpointsConfig
|
1986
|
+
# @private
|
1987
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1988
|
+
property :authorized_networks_config, as: 'authorizedNetworksConfig', class: Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig, decorator: Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig::Representation
|
1989
|
+
|
1990
|
+
property :enable_public_endpoint, as: 'enablePublicEndpoint'
|
1991
|
+
property :enabled, as: 'enabled'
|
1992
|
+
property :global_access, as: 'globalAccess'
|
1993
|
+
property :private_endpoint, as: 'privateEndpoint'
|
1994
|
+
property :private_endpoint_subnetwork, as: 'privateEndpointSubnetwork'
|
1995
|
+
property :public_endpoint, as: 'publicEndpoint'
|
1996
|
+
end
|
1997
|
+
end
|
1998
|
+
|
1934
1999
|
class IdentityServiceConfig
|
1935
2000
|
# @private
|
1936
2001
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2110,6 +2175,7 @@ module Google
|
|
2110
2175
|
|
2111
2176
|
property :enabled, as: 'enabled'
|
2112
2177
|
property :gcp_public_cidrs_access_enabled, as: 'gcpPublicCidrsAccessEnabled'
|
2178
|
+
property :private_endpoint_enforcement_enabled, as: 'privateEndpointEnforcementEnabled'
|
2113
2179
|
end
|
2114
2180
|
end
|
2115
2181
|
|
@@ -2160,6 +2226,7 @@ module Google
|
|
2160
2226
|
# @private
|
2161
2227
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2162
2228
|
property :datapath_provider, as: 'datapathProvider'
|
2229
|
+
property :default_enable_private_nodes, as: 'defaultEnablePrivateNodes'
|
2163
2230
|
property :default_snat_status, as: 'defaultSnatStatus', class: Google::Apis::ContainerV1::DefaultSnatStatus, decorator: Google::Apis::ContainerV1::DefaultSnatStatus::Representation
|
2164
2231
|
|
2165
2232
|
property :dns_config, as: 'dnsConfig', class: Google::Apis::ContainerV1::DnsConfig, decorator: Google::Apis::ContainerV1::DnsConfig::Representation
|
@@ -2234,6 +2301,7 @@ module Google
|
|
2234
2301
|
|
2235
2302
|
property :disk_size_gb, as: 'diskSizeGb'
|
2236
2303
|
property :disk_type, as: 'diskType'
|
2304
|
+
property :effective_cgroup_mode, as: 'effectiveCgroupMode'
|
2237
2305
|
property :enable_confidential_storage, as: 'enableConfidentialStorage'
|
2238
2306
|
property :ephemeral_storage_local_ssd_config, as: 'ephemeralStorageLocalSsdConfig', class: Google::Apis::ContainerV1::EphemeralStorageLocalSsdConfig, decorator: Google::Apis::ContainerV1::EphemeralStorageLocalSsdConfig::Representation
|
2239
2307
|
|
@@ -3128,6 +3196,20 @@ module Google
|
|
3128
3196
|
end
|
3129
3197
|
end
|
3130
3198
|
|
3199
|
+
class UserManagedKeysConfig
|
3200
|
+
# @private
|
3201
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3202
|
+
property :aggregation_ca, as: 'aggregationCa'
|
3203
|
+
property :cluster_ca, as: 'clusterCa'
|
3204
|
+
property :control_plane_disk_encryption_key, as: 'controlPlaneDiskEncryptionKey'
|
3205
|
+
property :etcd_api_ca, as: 'etcdApiCa'
|
3206
|
+
property :etcd_peer_ca, as: 'etcdPeerCa'
|
3207
|
+
property :gkeops_etcd_backup_encryption_key, as: 'gkeopsEtcdBackupEncryptionKey'
|
3208
|
+
collection :service_account_signing_keys, as: 'serviceAccountSigningKeys'
|
3209
|
+
collection :service_account_verification_keys, as: 'serviceAccountVerificationKeys'
|
3210
|
+
end
|
3211
|
+
end
|
3212
|
+
|
3131
3213
|
class VerticalPodAutoscaling
|
3132
3214
|
# @private
|
3133
3215
|
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.82.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: 2024-
|
11
|
+
date: 2024-10-13 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.82.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.5.
|
78
|
+
rubygems_version: 3.5.21
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Kubernetes Engine API V1
|