google-apis-container_v1beta1 0.84.0 → 0.86.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/container_v1beta1/classes.rb +620 -348
- data/lib/google/apis/container_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/container_v1beta1/representations.rb +100 -0
- data/lib/google/apis/container_v1beta1/service.rb +398 -324
- metadata +2 -2
@@ -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.86.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250603"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,12 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class AdditionalIpRangesConfig
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class AdditionalNodeNetworkConfig
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -64,12 +70,24 @@ module Google
|
|
64
70
|
include Google::Apis::Core::JsonObjectSupport
|
65
71
|
end
|
66
72
|
|
73
|
+
class AnonymousAuthenticationConfig
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
67
79
|
class AuthenticatorGroupsConfig
|
68
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
81
|
|
70
82
|
include Google::Apis::Core::JsonObjectSupport
|
71
83
|
end
|
72
84
|
|
85
|
+
class AutoIpamConfig
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
|
+
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
89
|
+
end
|
90
|
+
|
73
91
|
class AutoMonitoringConfig
|
74
92
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
93
|
|
@@ -334,6 +352,12 @@ module Google
|
|
334
352
|
include Google::Apis::Core::JsonObjectSupport
|
335
353
|
end
|
336
354
|
|
355
|
+
class DesiredAdditionalIpRangesConfig
|
356
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
357
|
+
|
358
|
+
include Google::Apis::Core::JsonObjectSupport
|
359
|
+
end
|
360
|
+
|
337
361
|
class DesiredEnterpriseConfig
|
338
362
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
363
|
|
@@ -448,12 +472,24 @@ module Google
|
|
448
472
|
include Google::Apis::Core::JsonObjectSupport
|
449
473
|
end
|
450
474
|
|
475
|
+
class GkeAutoUpgradeConfig
|
476
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
477
|
+
|
478
|
+
include Google::Apis::Core::JsonObjectSupport
|
479
|
+
end
|
480
|
+
|
451
481
|
class GkeBackupAgentConfig
|
452
482
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
453
483
|
|
454
484
|
include Google::Apis::Core::JsonObjectSupport
|
455
485
|
end
|
456
486
|
|
487
|
+
class HighScaleCheckpointingConfig
|
488
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
489
|
+
|
490
|
+
include Google::Apis::Core::JsonObjectSupport
|
491
|
+
end
|
492
|
+
|
457
493
|
class HorizontalPodAutoscaling
|
458
494
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
459
495
|
|
@@ -1350,6 +1386,14 @@ module Google
|
|
1350
1386
|
end
|
1351
1387
|
end
|
1352
1388
|
|
1389
|
+
class AdditionalIpRangesConfig
|
1390
|
+
# @private
|
1391
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1392
|
+
collection :pod_ipv4_range_names, as: 'podIpv4RangeNames'
|
1393
|
+
property :subnetwork, as: 'subnetwork'
|
1394
|
+
end
|
1395
|
+
end
|
1396
|
+
|
1353
1397
|
class AdditionalNodeNetworkConfig
|
1354
1398
|
# @private
|
1355
1399
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1395,6 +1439,8 @@ module Google
|
|
1395
1439
|
|
1396
1440
|
property :gke_backup_agent_config, as: 'gkeBackupAgentConfig', class: Google::Apis::ContainerV1beta1::GkeBackupAgentConfig, decorator: Google::Apis::ContainerV1beta1::GkeBackupAgentConfig::Representation
|
1397
1441
|
|
1442
|
+
property :high_scale_checkpointing_config, as: 'highScaleCheckpointingConfig', class: Google::Apis::ContainerV1beta1::HighScaleCheckpointingConfig, decorator: Google::Apis::ContainerV1beta1::HighScaleCheckpointingConfig::Representation
|
1443
|
+
|
1398
1444
|
property :horizontal_pod_autoscaling, as: 'horizontalPodAutoscaling', class: Google::Apis::ContainerV1beta1::HorizontalPodAutoscaling, decorator: Google::Apis::ContainerV1beta1::HorizontalPodAutoscaling::Representation
|
1399
1445
|
|
1400
1446
|
property :http_load_balancing, as: 'httpLoadBalancing', class: Google::Apis::ContainerV1beta1::HttpLoadBalancing, decorator: Google::Apis::ContainerV1beta1::HttpLoadBalancing::Representation
|
@@ -1429,10 +1475,18 @@ module Google
|
|
1429
1475
|
# @private
|
1430
1476
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1431
1477
|
property :enable_nested_virtualization, as: 'enableNestedVirtualization'
|
1478
|
+
property :performance_monitoring_unit, as: 'performanceMonitoringUnit'
|
1432
1479
|
property :threads_per_core, :numeric_string => true, as: 'threadsPerCore'
|
1433
1480
|
end
|
1434
1481
|
end
|
1435
1482
|
|
1483
|
+
class AnonymousAuthenticationConfig
|
1484
|
+
# @private
|
1485
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1486
|
+
property :mode, as: 'mode'
|
1487
|
+
end
|
1488
|
+
end
|
1489
|
+
|
1436
1490
|
class AuthenticatorGroupsConfig
|
1437
1491
|
# @private
|
1438
1492
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1441,6 +1495,12 @@ module Google
|
|
1441
1495
|
end
|
1442
1496
|
end
|
1443
1497
|
|
1498
|
+
class AutoIpamConfig
|
1499
|
+
# @private
|
1500
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1501
|
+
end
|
1502
|
+
end
|
1503
|
+
|
1444
1504
|
class AutoMonitoringConfig
|
1445
1505
|
# @private
|
1446
1506
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1631,6 +1691,8 @@ module Google
|
|
1631
1691
|
property :addons_config, as: 'addonsConfig', class: Google::Apis::ContainerV1beta1::AddonsConfig, decorator: Google::Apis::ContainerV1beta1::AddonsConfig::Representation
|
1632
1692
|
|
1633
1693
|
collection :alpha_cluster_feature_gates, as: 'alphaClusterFeatureGates'
|
1694
|
+
property :anonymous_authentication_config, as: 'anonymousAuthenticationConfig', class: Google::Apis::ContainerV1beta1::AnonymousAuthenticationConfig, decorator: Google::Apis::ContainerV1beta1::AnonymousAuthenticationConfig::Representation
|
1695
|
+
|
1634
1696
|
property :authenticator_groups_config, as: 'authenticatorGroupsConfig', class: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig::Representation
|
1635
1697
|
|
1636
1698
|
property :autopilot, as: 'autopilot', class: Google::Apis::ContainerV1beta1::Autopilot, decorator: Google::Apis::ContainerV1beta1::Autopilot::Representation
|
@@ -1672,6 +1734,8 @@ module Google
|
|
1672
1734
|
property :expire_time, as: 'expireTime'
|
1673
1735
|
property :fleet, as: 'fleet', class: Google::Apis::ContainerV1beta1::Fleet, decorator: Google::Apis::ContainerV1beta1::Fleet::Representation
|
1674
1736
|
|
1737
|
+
property :gke_auto_upgrade_config, as: 'gkeAutoUpgradeConfig', class: Google::Apis::ContainerV1beta1::GkeAutoUpgradeConfig, decorator: Google::Apis::ContainerV1beta1::GkeAutoUpgradeConfig::Representation
|
1738
|
+
|
1675
1739
|
property :id, as: 'id'
|
1676
1740
|
property :identity_service_config, as: 'identityServiceConfig', class: Google::Apis::ContainerV1beta1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1beta1::IdentityServiceConfig::Representation
|
1677
1741
|
|
@@ -1799,10 +1863,16 @@ module Google
|
|
1799
1863
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1800
1864
|
property :additional_pod_ranges_config, as: 'additionalPodRangesConfig', class: Google::Apis::ContainerV1beta1::AdditionalPodRangesConfig, decorator: Google::Apis::ContainerV1beta1::AdditionalPodRangesConfig::Representation
|
1801
1865
|
|
1866
|
+
property :desired_additional_ip_ranges_config, as: 'desiredAdditionalIpRangesConfig', class: Google::Apis::ContainerV1beta1::DesiredAdditionalIpRangesConfig, decorator: Google::Apis::ContainerV1beta1::DesiredAdditionalIpRangesConfig::Representation
|
1867
|
+
|
1802
1868
|
property :desired_addons_config, as: 'desiredAddonsConfig', class: Google::Apis::ContainerV1beta1::AddonsConfig, decorator: Google::Apis::ContainerV1beta1::AddonsConfig::Representation
|
1803
1869
|
|
1870
|
+
property :desired_anonymous_authentication_config, as: 'desiredAnonymousAuthenticationConfig', class: Google::Apis::ContainerV1beta1::AnonymousAuthenticationConfig, decorator: Google::Apis::ContainerV1beta1::AnonymousAuthenticationConfig::Representation
|
1871
|
+
|
1804
1872
|
property :desired_authenticator_groups_config, as: 'desiredAuthenticatorGroupsConfig', class: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig::Representation
|
1805
1873
|
|
1874
|
+
property :desired_auto_ipam_config, as: 'desiredAutoIpamConfig', class: Google::Apis::ContainerV1beta1::AutoIpamConfig, decorator: Google::Apis::ContainerV1beta1::AutoIpamConfig::Representation
|
1875
|
+
|
1806
1876
|
property :desired_autopilot_workload_policy_config, as: 'desiredAutopilotWorkloadPolicyConfig', class: Google::Apis::ContainerV1beta1::WorkloadPolicyConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadPolicyConfig::Representation
|
1807
1877
|
|
1808
1878
|
property :desired_binary_authorization, as: 'desiredBinaryAuthorization', class: Google::Apis::ContainerV1beta1::BinaryAuthorization, decorator: Google::Apis::ContainerV1beta1::BinaryAuthorization::Representation
|
@@ -1914,6 +1984,8 @@ module Google
|
|
1914
1984
|
property :desired_stack_type, as: 'desiredStackType'
|
1915
1985
|
property :desired_tpu_config, as: 'desiredTpuConfig', class: Google::Apis::ContainerV1beta1::TpuConfig, decorator: Google::Apis::ContainerV1beta1::TpuConfig::Representation
|
1916
1986
|
|
1987
|
+
property :desired_user_managed_keys_config, as: 'desiredUserManagedKeysConfig', class: Google::Apis::ContainerV1beta1::UserManagedKeysConfig, decorator: Google::Apis::ContainerV1beta1::UserManagedKeysConfig::Representation
|
1988
|
+
|
1917
1989
|
property :desired_vertical_pod_autoscaling, as: 'desiredVerticalPodAutoscaling', class: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling, decorator: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling::Representation
|
1918
1990
|
|
1919
1991
|
property :desired_workload_alts_config, as: 'desiredWorkloadAltsConfig', class: Google::Apis::ContainerV1beta1::WorkloadAltsConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadAltsConfig::Representation
|
@@ -1925,6 +1997,8 @@ module Google
|
|
1925
1997
|
property :enable_k8s_beta_apis, as: 'enableK8sBetaApis', class: Google::Apis::ContainerV1beta1::K8sBetaApiConfig, decorator: Google::Apis::ContainerV1beta1::K8sBetaApiConfig::Representation
|
1926
1998
|
|
1927
1999
|
property :etag, as: 'etag'
|
2000
|
+
property :gke_auto_upgrade_config, as: 'gkeAutoUpgradeConfig', class: Google::Apis::ContainerV1beta1::GkeAutoUpgradeConfig, decorator: Google::Apis::ContainerV1beta1::GkeAutoUpgradeConfig::Representation
|
2001
|
+
|
1928
2002
|
property :private_cluster_config, as: 'privateClusterConfig', class: Google::Apis::ContainerV1beta1::PrivateClusterConfig, decorator: Google::Apis::ContainerV1beta1::PrivateClusterConfig::Representation
|
1929
2003
|
|
1930
2004
|
property :removed_additional_pod_ranges_config, as: 'removedAdditionalPodRangesConfig', class: Google::Apis::ContainerV1beta1::AdditionalPodRangesConfig, decorator: Google::Apis::ContainerV1beta1::AdditionalPodRangesConfig::Representation
|
@@ -2104,6 +2178,14 @@ module Google
|
|
2104
2178
|
end
|
2105
2179
|
end
|
2106
2180
|
|
2181
|
+
class DesiredAdditionalIpRangesConfig
|
2182
|
+
# @private
|
2183
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2184
|
+
collection :additional_ip_ranges_configs, as: 'additionalIpRangesConfigs', class: Google::Apis::ContainerV1beta1::AdditionalIpRangesConfig, decorator: Google::Apis::ContainerV1beta1::AdditionalIpRangesConfig::Representation
|
2185
|
+
|
2186
|
+
end
|
2187
|
+
end
|
2188
|
+
|
2107
2189
|
class DesiredEnterpriseConfig
|
2108
2190
|
# @private
|
2109
2191
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2252,6 +2334,13 @@ module Google
|
|
2252
2334
|
end
|
2253
2335
|
end
|
2254
2336
|
|
2337
|
+
class GkeAutoUpgradeConfig
|
2338
|
+
# @private
|
2339
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2340
|
+
property :patch_mode, as: 'patchMode'
|
2341
|
+
end
|
2342
|
+
end
|
2343
|
+
|
2255
2344
|
class GkeBackupAgentConfig
|
2256
2345
|
# @private
|
2257
2346
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2259,6 +2348,13 @@ module Google
|
|
2259
2348
|
end
|
2260
2349
|
end
|
2261
2350
|
|
2351
|
+
class HighScaleCheckpointingConfig
|
2352
|
+
# @private
|
2353
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2354
|
+
property :enabled, as: 'enabled'
|
2355
|
+
end
|
2356
|
+
end
|
2357
|
+
|
2262
2358
|
class HorizontalPodAutoscaling
|
2263
2359
|
# @private
|
2264
2360
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2309,9 +2405,13 @@ module Google
|
|
2309
2405
|
class IpAllocationPolicy
|
2310
2406
|
# @private
|
2311
2407
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2408
|
+
collection :additional_ip_ranges_configs, as: 'additionalIpRangesConfigs', class: Google::Apis::ContainerV1beta1::AdditionalIpRangesConfig, decorator: Google::Apis::ContainerV1beta1::AdditionalIpRangesConfig::Representation
|
2409
|
+
|
2312
2410
|
property :additional_pod_ranges_config, as: 'additionalPodRangesConfig', class: Google::Apis::ContainerV1beta1::AdditionalPodRangesConfig, decorator: Google::Apis::ContainerV1beta1::AdditionalPodRangesConfig::Representation
|
2313
2411
|
|
2314
2412
|
property :allow_route_overlap, as: 'allowRouteOverlap'
|
2413
|
+
property :auto_ipam_config, as: 'autoIpamConfig', class: Google::Apis::ContainerV1beta1::AutoIpamConfig, decorator: Google::Apis::ContainerV1beta1::AutoIpamConfig::Representation
|
2414
|
+
|
2315
2415
|
property :cluster_ipv4_cidr, as: 'clusterIpv4Cidr'
|
2316
2416
|
property :cluster_ipv4_cidr_block, as: 'clusterIpv4CidrBlock'
|
2317
2417
|
property :cluster_secondary_range_name, as: 'clusterSecondaryRangeName'
|