google-apis-container_v1 0.81.0 → 0.82.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: 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
@@ -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]
|
@@ -1391,6 +1396,7 @@ module Google
|
|
1391
1396
|
@compliance_posture_config = args[:compliance_posture_config] if args.key?(:compliance_posture_config)
|
1392
1397
|
@conditions = args[:conditions] if args.key?(:conditions)
|
1393
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)
|
1394
1400
|
@cost_management_config = args[:cost_management_config] if args.key?(:cost_management_config)
|
1395
1401
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1396
1402
|
@current_master_version = args[:current_master_version] if args.key?(:current_master_version)
|
@@ -1578,6 +1584,11 @@ module Google
|
|
1578
1584
|
# @return [Google::Apis::ContainerV1::ContainerdConfig]
|
1579
1585
|
attr_accessor :desired_containerd_config
|
1580
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
|
+
|
1581
1592
|
# Configuration for fine-grained cost management feature.
|
1582
1593
|
# Corresponds to the JSON property `desiredCostManagementConfig`
|
1583
1594
|
# @return [Google::Apis::ContainerV1::CostManagementConfig]
|
@@ -1593,6 +1604,13 @@ module Google
|
|
1593
1604
|
# @return [String]
|
1594
1605
|
attr_accessor :desired_datapath_provider
|
1595
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
|
+
|
1596
1614
|
# DefaultSnatStatus contains the desired state of whether default sNAT should be
|
1597
1615
|
# disabled on the cluster.
|
1598
1616
|
# Corresponds to the JSON property `desiredDefaultSnatStatus`
|
@@ -1622,7 +1640,11 @@ module Google
|
|
1622
1640
|
attr_accessor :desired_enable_multi_networking
|
1623
1641
|
alias_method :desired_enable_multi_networking?, :desired_enable_multi_networking
|
1624
1642
|
|
1625
|
-
# 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.
|
1626
1648
|
# Corresponds to the JSON property `desiredEnablePrivateEndpoint`
|
1627
1649
|
# @return [Boolean]
|
1628
1650
|
attr_accessor :desired_enable_private_endpoint
|
@@ -1921,9 +1943,11 @@ module Google
|
|
1921
1943
|
@desired_cluster_autoscaling = args[:desired_cluster_autoscaling] if args.key?(:desired_cluster_autoscaling)
|
1922
1944
|
@desired_compliance_posture_config = args[:desired_compliance_posture_config] if args.key?(:desired_compliance_posture_config)
|
1923
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)
|
1924
1947
|
@desired_cost_management_config = args[:desired_cost_management_config] if args.key?(:desired_cost_management_config)
|
1925
1948
|
@desired_database_encryption = args[:desired_database_encryption] if args.key?(:desired_database_encryption)
|
1926
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)
|
1927
1951
|
@desired_default_snat_status = args[:desired_default_snat_status] if args.key?(:desired_default_snat_status)
|
1928
1952
|
@desired_dns_config = args[:desired_dns_config] if args.key?(:desired_dns_config)
|
1929
1953
|
@desired_enable_cilium_clusterwide_network_policy = args[:desired_enable_cilium_clusterwide_network_policy] if args.key?(:desired_enable_cilium_clusterwide_network_policy)
|
@@ -2161,6 +2185,31 @@ module Google
|
|
2161
2185
|
end
|
2162
2186
|
end
|
2163
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
|
+
|
2164
2213
|
# Configuration for fine-grained cost management feature.
|
2165
2214
|
class CostManagementConfig
|
2166
2215
|
include Google::Apis::Core::Hashable
|
@@ -2314,6 +2363,36 @@ module Google
|
|
2314
2363
|
end
|
2315
2364
|
end
|
2316
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
|
+
|
2317
2396
|
# Time window specified for daily maintenance operations.
|
2318
2397
|
class DailyMaintenanceWindow
|
2319
2398
|
include Google::Apis::Core::Hashable
|
@@ -3149,6 +3228,76 @@ module Google
|
|
3149
3228
|
end
|
3150
3229
|
end
|
3151
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
|
+
|
3152
3301
|
# IdentityServiceConfig is configuration for Identity Service which allows
|
3153
3302
|
# customers to use external identity providers with the K8S API
|
3154
3303
|
class IdentityServiceConfig
|
@@ -3733,6 +3882,12 @@ module Google
|
|
3733
3882
|
attr_accessor :gcp_public_cidrs_access_enabled
|
3734
3883
|
alias_method :gcp_public_cidrs_access_enabled?, :gcp_public_cidrs_access_enabled
|
3735
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
|
+
|
3736
3891
|
def initialize(**args)
|
3737
3892
|
update!(**args)
|
3738
3893
|
end
|
@@ -3742,6 +3897,7 @@ module Google
|
|
3742
3897
|
@cidr_blocks = args[:cidr_blocks] if args.key?(:cidr_blocks)
|
3743
3898
|
@enabled = args[:enabled] if args.key?(:enabled)
|
3744
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)
|
3745
3901
|
end
|
3746
3902
|
end
|
3747
3903
|
|
@@ -3888,6 +4044,15 @@ module Google
|
|
3888
4044
|
# @return [String]
|
3889
4045
|
attr_accessor :datapath_provider
|
3890
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
|
+
|
3891
4056
|
# DefaultSnatStatus contains the desired state of whether default sNAT should be
|
3892
4057
|
# disabled on the cluster.
|
3893
4058
|
# Corresponds to the JSON property `defaultSnatStatus`
|
@@ -3978,6 +4143,7 @@ module Google
|
|
3978
4143
|
# Update properties of this object
|
3979
4144
|
def update!(**args)
|
3980
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)
|
3981
4147
|
@default_snat_status = args[:default_snat_status] if args.key?(:default_snat_status)
|
3982
4148
|
@dns_config = args[:dns_config] if args.key?(:dns_config)
|
3983
4149
|
@enable_cilium_clusterwide_network_policy = args[:enable_cilium_clusterwide_network_policy] if args.key?(:enable_cilium_clusterwide_network_policy)
|
@@ -4645,8 +4811,8 @@ module Google
|
|
4645
4811
|
alias_method :create_pod_range?, :create_pod_range
|
4646
4812
|
|
4647
4813
|
# Whether nodes have internal IP addresses only. If enable_private_nodes is not
|
4648
|
-
# specified, then the value is derived from
|
4649
|
-
#
|
4814
|
+
# specified, then the value is derived from Cluster.NetworkConfig.
|
4815
|
+
# default_enable_private_nodes
|
4650
4816
|
# Corresponds to the JSON property `enablePrivateNodes`
|
4651
4817
|
# @return [Boolean]
|
4652
4818
|
attr_accessor :enable_private_nodes
|
@@ -5402,6 +5568,10 @@ module Google
|
|
5402
5568
|
include Google::Apis::Core::Hashable
|
5403
5569
|
|
5404
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.
|
5405
5575
|
# Corresponds to the JSON property `enablePrivateEndpoint`
|
5406
5576
|
# @return [Boolean]
|
5407
5577
|
attr_accessor :enable_private_endpoint
|
@@ -5409,7 +5579,7 @@ module Google
|
|
5409
5579
|
|
5410
5580
|
# Whether nodes have internal IP addresses only. If enabled, all nodes are given
|
5411
5581
|
# only RFC 1918 private addresses and communicate with the master via private
|
5412
|
-
# networking.
|
5582
|
+
# networking. Deprecated: Use NetworkConfig.default_enable_private_nodes instead.
|
5413
5583
|
# Corresponds to the JSON property `enablePrivateNodes`
|
5414
5584
|
# @return [Boolean]
|
5415
5585
|
attr_accessor :enable_private_nodes
|
@@ -5434,17 +5604,23 @@ module Google
|
|
5434
5604
|
attr_accessor :peering_name
|
5435
5605
|
|
5436
5606
|
# Output only. The internal IP address of this cluster's master endpoint.
|
5607
|
+
# Deprecated: Use ControlPlaneEndpointsConfig.IPEndpointsConfig.private_endpoint
|
5608
|
+
# instead.
|
5437
5609
|
# Corresponds to the JSON property `privateEndpoint`
|
5438
5610
|
# @return [String]
|
5439
5611
|
attr_accessor :private_endpoint
|
5440
5612
|
|
5441
5613
|
# Subnet to provision the master's private endpoint during cluster creation.
|
5442
|
-
# Specified in projects/*/regions/*/subnetworks/* format.
|
5614
|
+
# Specified in projects/*/regions/*/subnetworks/* format. Deprecated: Use
|
5615
|
+
# ControlPlaneEndpointsConfig.IPEndpointsConfig.private_endpoint_subnetwork
|
5616
|
+
# instead.
|
5443
5617
|
# Corresponds to the JSON property `privateEndpointSubnetwork`
|
5444
5618
|
# @return [String]
|
5445
5619
|
attr_accessor :private_endpoint_subnetwork
|
5446
5620
|
|
5447
5621
|
# Output only. The external IP address of this cluster's master endpoint.
|
5622
|
+
# Deprecated:Use ControlPlaneEndpointsConfig.IPEndpointsConfig.public_endpoint
|
5623
|
+
# instead.
|
5448
5624
|
# Corresponds to the JSON property `publicEndpoint`
|
5449
5625
|
# @return [String]
|
5450
5626
|
attr_accessor :public_endpoint
|
@@ -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
|
|
@@ -1375,6 +1393,8 @@ module Google
|
|
1375
1393
|
|
1376
1394
|
property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1::ConfidentialNodes, decorator: Google::Apis::ContainerV1::ConfidentialNodes::Representation
|
1377
1395
|
|
1396
|
+
property :control_plane_endpoints_config, as: 'controlPlaneEndpointsConfig', class: Google::Apis::ContainerV1::ControlPlaneEndpointsConfig, decorator: Google::Apis::ContainerV1::ControlPlaneEndpointsConfig::Representation
|
1397
|
+
|
1378
1398
|
property :cost_management_config, as: 'costManagementConfig', class: Google::Apis::ContainerV1::CostManagementConfig, decorator: Google::Apis::ContainerV1::CostManagementConfig::Representation
|
1379
1399
|
|
1380
1400
|
property :create_time, as: 'createTime'
|
@@ -1515,11 +1535,14 @@ module Google
|
|
1515
1535
|
|
1516
1536
|
property :desired_containerd_config, as: 'desiredContainerdConfig', class: Google::Apis::ContainerV1::ContainerdConfig, decorator: Google::Apis::ContainerV1::ContainerdConfig::Representation
|
1517
1537
|
|
1538
|
+
property :desired_control_plane_endpoints_config, as: 'desiredControlPlaneEndpointsConfig', class: Google::Apis::ContainerV1::ControlPlaneEndpointsConfig, decorator: Google::Apis::ContainerV1::ControlPlaneEndpointsConfig::Representation
|
1539
|
+
|
1518
1540
|
property :desired_cost_management_config, as: 'desiredCostManagementConfig', class: Google::Apis::ContainerV1::CostManagementConfig, decorator: Google::Apis::ContainerV1::CostManagementConfig::Representation
|
1519
1541
|
|
1520
1542
|
property :desired_database_encryption, as: 'desiredDatabaseEncryption', class: Google::Apis::ContainerV1::DatabaseEncryption, decorator: Google::Apis::ContainerV1::DatabaseEncryption::Representation
|
1521
1543
|
|
1522
1544
|
property :desired_datapath_provider, as: 'desiredDatapathProvider'
|
1545
|
+
property :desired_default_enable_private_nodes, as: 'desiredDefaultEnablePrivateNodes'
|
1523
1546
|
property :desired_default_snat_status, as: 'desiredDefaultSnatStatus', class: Google::Apis::ContainerV1::DefaultSnatStatus, decorator: Google::Apis::ContainerV1::DefaultSnatStatus::Representation
|
1524
1547
|
|
1525
1548
|
property :desired_dns_config, as: 'desiredDnsConfig', class: Google::Apis::ContainerV1::DnsConfig, decorator: Google::Apis::ContainerV1::DnsConfig::Representation
|
@@ -1669,6 +1692,16 @@ module Google
|
|
1669
1692
|
end
|
1670
1693
|
end
|
1671
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
|
+
|
1672
1705
|
class CostManagementConfig
|
1673
1706
|
# @private
|
1674
1707
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1709,6 +1742,14 @@ module Google
|
|
1709
1742
|
end
|
1710
1743
|
end
|
1711
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
|
+
|
1712
1753
|
class DailyMaintenanceWindow
|
1713
1754
|
# @private
|
1714
1755
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1941,6 +1982,20 @@ module Google
|
|
1941
1982
|
end
|
1942
1983
|
end
|
1943
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
|
+
|
1944
1999
|
class IdentityServiceConfig
|
1945
2000
|
# @private
|
1946
2001
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2120,6 +2175,7 @@ module Google
|
|
2120
2175
|
|
2121
2176
|
property :enabled, as: 'enabled'
|
2122
2177
|
property :gcp_public_cidrs_access_enabled, as: 'gcpPublicCidrsAccessEnabled'
|
2178
|
+
property :private_endpoint_enforcement_enabled, as: 'privateEndpointEnforcementEnabled'
|
2123
2179
|
end
|
2124
2180
|
end
|
2125
2181
|
|
@@ -2170,6 +2226,7 @@ module Google
|
|
2170
2226
|
# @private
|
2171
2227
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2172
2228
|
property :datapath_provider, as: 'datapathProvider'
|
2229
|
+
property :default_enable_private_nodes, as: 'defaultEnablePrivateNodes'
|
2173
2230
|
property :default_snat_status, as: 'defaultSnatStatus', class: Google::Apis::ContainerV1::DefaultSnatStatus, decorator: Google::Apis::ContainerV1::DefaultSnatStatus::Representation
|
2174
2231
|
|
2175
2232
|
property :dns_config, as: 'dnsConfig', class: Google::Apis::ContainerV1::DnsConfig, decorator: Google::Apis::ContainerV1::DnsConfig::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.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-10-
|
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
|