google-apis-container_v1beta1 0.95.0 → 0.97.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 +8 -0
- data/lib/google/apis/container_v1beta1/classes.rb +383 -10
- data/lib/google/apis/container_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/container_v1beta1/representations.rb +166 -0
- data/lib/google/apis/container_v1beta1/service.rb +70 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3539dea914b0782d04fcbb013d3ae667a3c39fdedeac1d5eb92a05ee49908106
|
|
4
|
+
data.tar.gz: 9baeb7b16b49569075b65dd334c39d48e23ac066bbc36b383c86d4c2bc005c3b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e79c8c1a0c991f93817dc6fa9e3166a8a042b20839ec40378af0cc3fe3ba6c5ec07c01136b3edc5a8d54124d3acd9522a4307a246b88686a5deb8ff96f0f0f54
|
|
7
|
+
data.tar.gz: 9412fec475496882b215f987b6db62358d40e8f1255a0f545635c0ed78cfdc6ccf491b76773dd1d2b7004ecb0decab7ae751f4ae8db314f49e4b14aedd456131
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-container_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.97.0 (2025-11-16)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251104
|
|
6
|
+
|
|
7
|
+
### v0.96.0 (2025-11-09)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251028
|
|
10
|
+
|
|
3
11
|
### v0.95.0 (2025-11-02)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251021
|
|
@@ -287,6 +287,11 @@ module Google
|
|
|
287
287
|
# @return [Google::Apis::ContainerV1beta1::ParallelstoreCsiDriverConfig]
|
|
288
288
|
attr_accessor :parallelstore_csi_driver_config
|
|
289
289
|
|
|
290
|
+
# PodSnapshotConfig is the configuration for GKE Pod Snapshots feature.
|
|
291
|
+
# Corresponds to the JSON property `podSnapshotConfig`
|
|
292
|
+
# @return [Google::Apis::ContainerV1beta1::PodSnapshotConfig]
|
|
293
|
+
attr_accessor :pod_snapshot_config
|
|
294
|
+
|
|
290
295
|
# Configuration options for the Ray Operator add-on.
|
|
291
296
|
# Corresponds to the JSON property `rayOperatorConfig`
|
|
292
297
|
# @return [Google::Apis::ContainerV1beta1::RayOperatorConfig]
|
|
@@ -319,6 +324,7 @@ module Google
|
|
|
319
324
|
@lustre_csi_driver_config = args[:lustre_csi_driver_config] if args.key?(:lustre_csi_driver_config)
|
|
320
325
|
@network_policy_config = args[:network_policy_config] if args.key?(:network_policy_config)
|
|
321
326
|
@parallelstore_csi_driver_config = args[:parallelstore_csi_driver_config] if args.key?(:parallelstore_csi_driver_config)
|
|
327
|
+
@pod_snapshot_config = args[:pod_snapshot_config] if args.key?(:pod_snapshot_config)
|
|
322
328
|
@ray_operator_config = args[:ray_operator_config] if args.key?(:ray_operator_config)
|
|
323
329
|
@stateful_ha_config = args[:stateful_ha_config] if args.key?(:stateful_ha_config)
|
|
324
330
|
end
|
|
@@ -1117,6 +1123,55 @@ module Google
|
|
|
1117
1123
|
end
|
|
1118
1124
|
end
|
|
1119
1125
|
|
|
1126
|
+
# CertificateConfig configures certificate for the registry.
|
|
1127
|
+
class CertificateConfig
|
|
1128
|
+
include Google::Apis::Core::Hashable
|
|
1129
|
+
|
|
1130
|
+
# The URI configures a secret from [Secret Manager](https://cloud.google.com/
|
|
1131
|
+
# secret-manager) in the format "projects/$PROJECT_ID/secrets/$SECRET_NAME/
|
|
1132
|
+
# versions/$VERSION" for global secret or "projects/$PROJECT_ID/locations/$
|
|
1133
|
+
# REGION/secrets/$SECRET_NAME/versions/$VERSION" for regional secret. Version
|
|
1134
|
+
# can be fixed (e.g. "2") or "latest"
|
|
1135
|
+
# Corresponds to the JSON property `gcpSecretManagerSecretUri`
|
|
1136
|
+
# @return [String]
|
|
1137
|
+
attr_accessor :gcp_secret_manager_secret_uri
|
|
1138
|
+
|
|
1139
|
+
def initialize(**args)
|
|
1140
|
+
update!(**args)
|
|
1141
|
+
end
|
|
1142
|
+
|
|
1143
|
+
# Update properties of this object
|
|
1144
|
+
def update!(**args)
|
|
1145
|
+
@gcp_secret_manager_secret_uri = args[:gcp_secret_manager_secret_uri] if args.key?(:gcp_secret_manager_secret_uri)
|
|
1146
|
+
end
|
|
1147
|
+
end
|
|
1148
|
+
|
|
1149
|
+
# CertificateConfigPair configures pairs of certificates, which is used for
|
|
1150
|
+
# client certificate and key pairs under a registry.
|
|
1151
|
+
class CertificateConfigPair
|
|
1152
|
+
include Google::Apis::Core::Hashable
|
|
1153
|
+
|
|
1154
|
+
# CertificateConfig configures certificate for the registry.
|
|
1155
|
+
# Corresponds to the JSON property `cert`
|
|
1156
|
+
# @return [Google::Apis::ContainerV1beta1::CertificateConfig]
|
|
1157
|
+
attr_accessor :cert
|
|
1158
|
+
|
|
1159
|
+
# CertificateConfig configures certificate for the registry.
|
|
1160
|
+
# Corresponds to the JSON property `key`
|
|
1161
|
+
# @return [Google::Apis::ContainerV1beta1::CertificateConfig]
|
|
1162
|
+
attr_accessor :key
|
|
1163
|
+
|
|
1164
|
+
def initialize(**args)
|
|
1165
|
+
update!(**args)
|
|
1166
|
+
end
|
|
1167
|
+
|
|
1168
|
+
# Update properties of this object
|
|
1169
|
+
def update!(**args)
|
|
1170
|
+
@cert = args[:cert] if args.key?(:cert)
|
|
1171
|
+
@key = args[:key] if args.key?(:key)
|
|
1172
|
+
end
|
|
1173
|
+
end
|
|
1174
|
+
|
|
1120
1175
|
# CheckAutopilotCompatibilityResponse has a list of compatibility issues.
|
|
1121
1176
|
class CheckAutopilotCompatibilityResponse
|
|
1122
1177
|
include Google::Apis::Core::Hashable
|
|
@@ -1304,6 +1359,13 @@ module Google
|
|
|
1304
1359
|
# @return [String]
|
|
1305
1360
|
attr_accessor :create_time
|
|
1306
1361
|
|
|
1362
|
+
# Output only. The current emulated version of the master endpoint. The version
|
|
1363
|
+
# is in minor version format, e.g. 1.30. No value or empty string means the
|
|
1364
|
+
# cluster has no emulated version.
|
|
1365
|
+
# Corresponds to the JSON property `currentEmulatedVersion`
|
|
1366
|
+
# @return [String]
|
|
1367
|
+
attr_accessor :current_emulated_version
|
|
1368
|
+
|
|
1307
1369
|
# Output only. The current software version of the master endpoint.
|
|
1308
1370
|
# Corresponds to the JSON property `currentMasterVersion`
|
|
1309
1371
|
# @return [String]
|
|
@@ -1671,6 +1733,11 @@ module Google
|
|
|
1671
1733
|
# @return [Google::Apis::ContainerV1beta1::ResourceUsageExportConfig]
|
|
1672
1734
|
attr_accessor :resource_usage_export_config
|
|
1673
1735
|
|
|
1736
|
+
# RollbackSafeUpgrade is the configuration for the rollback safe upgrade.
|
|
1737
|
+
# Corresponds to the JSON property `rollbackSafeUpgrade`
|
|
1738
|
+
# @return [Google::Apis::ContainerV1beta1::RollbackSafeUpgrade]
|
|
1739
|
+
attr_accessor :rollback_safe_upgrade
|
|
1740
|
+
|
|
1674
1741
|
# Output only. Reserved for future use.
|
|
1675
1742
|
# Corresponds to the JSON property `satisfiesPzi`
|
|
1676
1743
|
# @return [Boolean]
|
|
@@ -1807,6 +1874,7 @@ module Google
|
|
|
1807
1874
|
@control_plane_endpoints_config = args[:control_plane_endpoints_config] if args.key?(:control_plane_endpoints_config)
|
|
1808
1875
|
@cost_management_config = args[:cost_management_config] if args.key?(:cost_management_config)
|
|
1809
1876
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
1877
|
+
@current_emulated_version = args[:current_emulated_version] if args.key?(:current_emulated_version)
|
|
1810
1878
|
@current_master_version = args[:current_master_version] if args.key?(:current_master_version)
|
|
1811
1879
|
@current_node_count = args[:current_node_count] if args.key?(:current_node_count)
|
|
1812
1880
|
@current_node_version = args[:current_node_version] if args.key?(:current_node_version)
|
|
@@ -1862,6 +1930,7 @@ module Google
|
|
|
1862
1930
|
@release_channel = args[:release_channel] if args.key?(:release_channel)
|
|
1863
1931
|
@resource_labels = args[:resource_labels] if args.key?(:resource_labels)
|
|
1864
1932
|
@resource_usage_export_config = args[:resource_usage_export_config] if args.key?(:resource_usage_export_config)
|
|
1933
|
+
@rollback_safe_upgrade = args[:rollback_safe_upgrade] if args.key?(:rollback_safe_upgrade)
|
|
1865
1934
|
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
|
1866
1935
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
|
1867
1936
|
@secret_manager_config = args[:secret_manager_config] if args.key?(:secret_manager_config)
|
|
@@ -2358,6 +2427,12 @@ module Google
|
|
|
2358
2427
|
# @return [String]
|
|
2359
2428
|
attr_accessor :desired_private_ipv6_google_access
|
|
2360
2429
|
|
|
2430
|
+
# PrivilegedAdmissionConfig stores the list of authorized allowlist paths for
|
|
2431
|
+
# the cluster.
|
|
2432
|
+
# Corresponds to the JSON property `desiredPrivilegedAdmissionConfig`
|
|
2433
|
+
# @return [Google::Apis::ContainerV1beta1::PrivilegedAdmissionConfig]
|
|
2434
|
+
attr_accessor :desired_privileged_admission_config
|
|
2435
|
+
|
|
2361
2436
|
# ProtectConfig defines the flags needed to enable/disable features for the
|
|
2362
2437
|
# Protect API.
|
|
2363
2438
|
# Corresponds to the JSON property `desiredProtectConfig`
|
|
@@ -2383,6 +2458,11 @@ module Google
|
|
|
2383
2458
|
# @return [Google::Apis::ContainerV1beta1::ResourceUsageExportConfig]
|
|
2384
2459
|
attr_accessor :desired_resource_usage_export_config
|
|
2385
2460
|
|
|
2461
|
+
# RollbackSafeUpgrade is the configuration for the rollback safe upgrade.
|
|
2462
|
+
# Corresponds to the JSON property `desiredRollbackSafeUpgrade`
|
|
2463
|
+
# @return [Google::Apis::ContainerV1beta1::RollbackSafeUpgrade]
|
|
2464
|
+
attr_accessor :desired_rollback_safe_upgrade
|
|
2465
|
+
|
|
2386
2466
|
# SecretManagerConfig is config for secret manager enablement.
|
|
2387
2467
|
# Corresponds to the JSON property `desiredSecretManagerConfig`
|
|
2388
2468
|
# @return [Google::Apis::ContainerV1beta1::SecretManagerConfig]
|
|
@@ -2553,10 +2633,12 @@ module Google
|
|
|
2553
2633
|
@desired_pod_security_policy_config = args[:desired_pod_security_policy_config] if args.key?(:desired_pod_security_policy_config)
|
|
2554
2634
|
@desired_private_cluster_config = args[:desired_private_cluster_config] if args.key?(:desired_private_cluster_config)
|
|
2555
2635
|
@desired_private_ipv6_google_access = args[:desired_private_ipv6_google_access] if args.key?(:desired_private_ipv6_google_access)
|
|
2636
|
+
@desired_privileged_admission_config = args[:desired_privileged_admission_config] if args.key?(:desired_privileged_admission_config)
|
|
2556
2637
|
@desired_protect_config = args[:desired_protect_config] if args.key?(:desired_protect_config)
|
|
2557
2638
|
@desired_rbac_binding_config = args[:desired_rbac_binding_config] if args.key?(:desired_rbac_binding_config)
|
|
2558
2639
|
@desired_release_channel = args[:desired_release_channel] if args.key?(:desired_release_channel)
|
|
2559
2640
|
@desired_resource_usage_export_config = args[:desired_resource_usage_export_config] if args.key?(:desired_resource_usage_export_config)
|
|
2641
|
+
@desired_rollback_safe_upgrade = args[:desired_rollback_safe_upgrade] if args.key?(:desired_rollback_safe_upgrade)
|
|
2560
2642
|
@desired_secret_manager_config = args[:desired_secret_manager_config] if args.key?(:desired_secret_manager_config)
|
|
2561
2643
|
@desired_secret_sync_config = args[:desired_secret_sync_config] if args.key?(:desired_secret_sync_config)
|
|
2562
2644
|
@desired_security_posture_config = args[:desired_security_posture_config] if args.key?(:desired_security_posture_config)
|
|
@@ -2612,6 +2694,12 @@ module Google
|
|
|
2612
2694
|
# @return [Array<String>]
|
|
2613
2695
|
attr_accessor :paused_reason
|
|
2614
2696
|
|
|
2697
|
+
# RollbackSafeUpgradeStatus contains the rollback-safe upgrade status of a
|
|
2698
|
+
# cluster.
|
|
2699
|
+
# Corresponds to the JSON property `rollbackSafeUpgradeStatus`
|
|
2700
|
+
# @return [Google::Apis::ContainerV1beta1::RollbackSafeUpgradeStatus]
|
|
2701
|
+
attr_accessor :rollback_safe_upgrade_status
|
|
2702
|
+
|
|
2615
2703
|
# The list of past auto upgrades.
|
|
2616
2704
|
# Corresponds to the JSON property `upgradeDetails`
|
|
2617
2705
|
# @return [Array<Google::Apis::ContainerV1beta1::UpgradeDetails>]
|
|
@@ -2629,10 +2717,60 @@ module Google
|
|
|
2629
2717
|
@minor_target_version = args[:minor_target_version] if args.key?(:minor_target_version)
|
|
2630
2718
|
@patch_target_version = args[:patch_target_version] if args.key?(:patch_target_version)
|
|
2631
2719
|
@paused_reason = args[:paused_reason] if args.key?(:paused_reason)
|
|
2720
|
+
@rollback_safe_upgrade_status = args[:rollback_safe_upgrade_status] if args.key?(:rollback_safe_upgrade_status)
|
|
2632
2721
|
@upgrade_details = args[:upgrade_details] if args.key?(:upgrade_details)
|
|
2633
2722
|
end
|
|
2634
2723
|
end
|
|
2635
2724
|
|
|
2725
|
+
# CompatibilityStatus is the status regarding the control plane's compatibility.
|
|
2726
|
+
class CompatibilityStatus
|
|
2727
|
+
include Google::Apis::Core::Hashable
|
|
2728
|
+
|
|
2729
|
+
# Output only. The GKE version that the cluster can be safely downgraded to if
|
|
2730
|
+
# the cluster is emulating the previous minor version. It is usually the cluster'
|
|
2731
|
+
# s previous version before a minor version upgrade.
|
|
2732
|
+
# Corresponds to the JSON property `downgradableVersion`
|
|
2733
|
+
# @return [String]
|
|
2734
|
+
attr_accessor :downgradable_version
|
|
2735
|
+
|
|
2736
|
+
# Output only. Last time the control plane became available after a minor
|
|
2737
|
+
# version binary upgrade with emulated version set. It indicates the last time
|
|
2738
|
+
# the cluster entered the rollback safe mode.
|
|
2739
|
+
# Corresponds to the JSON property `emulatedVersionTime`
|
|
2740
|
+
# @return [String]
|
|
2741
|
+
attr_accessor :emulated_version_time
|
|
2742
|
+
|
|
2743
|
+
def initialize(**args)
|
|
2744
|
+
update!(**args)
|
|
2745
|
+
end
|
|
2746
|
+
|
|
2747
|
+
# Update properties of this object
|
|
2748
|
+
def update!(**args)
|
|
2749
|
+
@downgradable_version = args[:downgradable_version] if args.key?(:downgradable_version)
|
|
2750
|
+
@emulated_version_time = args[:emulated_version_time] if args.key?(:emulated_version_time)
|
|
2751
|
+
end
|
|
2752
|
+
end
|
|
2753
|
+
|
|
2754
|
+
# CompleteControlPlaneUpgradeRequest sets the name of target cluster to complete
|
|
2755
|
+
# upgrade.
|
|
2756
|
+
class CompleteControlPlaneUpgradeRequest
|
|
2757
|
+
include Google::Apis::Core::Hashable
|
|
2758
|
+
|
|
2759
|
+
# API request version that initiates this operation.
|
|
2760
|
+
# Corresponds to the JSON property `version`
|
|
2761
|
+
# @return [String]
|
|
2762
|
+
attr_accessor :version
|
|
2763
|
+
|
|
2764
|
+
def initialize(**args)
|
|
2765
|
+
update!(**args)
|
|
2766
|
+
end
|
|
2767
|
+
|
|
2768
|
+
# Update properties of this object
|
|
2769
|
+
def update!(**args)
|
|
2770
|
+
@version = args[:version] if args.key?(:version)
|
|
2771
|
+
end
|
|
2772
|
+
end
|
|
2773
|
+
|
|
2636
2774
|
# CompleteIPRotationRequest moves the cluster master back into single-IP mode.
|
|
2637
2775
|
class CompleteIpRotationRequest
|
|
2638
2776
|
include Google::Apis::Core::Hashable
|
|
@@ -2813,6 +2951,13 @@ module Google
|
|
|
2813
2951
|
# @return [Google::Apis::ContainerV1beta1::PrivateRegistryAccessConfig]
|
|
2814
2952
|
attr_accessor :private_registry_access_config
|
|
2815
2953
|
|
|
2954
|
+
# RegistryHostConfig configures containerd registry host configuration. Each
|
|
2955
|
+
# registry_hosts represents a hosts.toml file. At most 25 registry_hosts are
|
|
2956
|
+
# allowed.
|
|
2957
|
+
# Corresponds to the JSON property `registryHosts`
|
|
2958
|
+
# @return [Array<Google::Apis::ContainerV1beta1::RegistryHostConfig>]
|
|
2959
|
+
attr_accessor :registry_hosts
|
|
2960
|
+
|
|
2816
2961
|
# Defines writable cgroups configuration.
|
|
2817
2962
|
# Corresponds to the JSON property `writableCgroups`
|
|
2818
2963
|
# @return [Google::Apis::ContainerV1beta1::WritableCgroups]
|
|
@@ -2825,6 +2970,7 @@ module Google
|
|
|
2825
2970
|
# Update properties of this object
|
|
2826
2971
|
def update!(**args)
|
|
2827
2972
|
@private_registry_access_config = args[:private_registry_access_config] if args.key?(:private_registry_access_config)
|
|
2973
|
+
@registry_hosts = args[:registry_hosts] if args.key?(:registry_hosts)
|
|
2828
2974
|
@writable_cgroups = args[:writable_cgroups] if args.key?(:writable_cgroups)
|
|
2829
2975
|
end
|
|
2830
2976
|
end
|
|
@@ -4070,6 +4216,73 @@ module Google
|
|
|
4070
4216
|
end
|
|
4071
4217
|
end
|
|
4072
4218
|
|
|
4219
|
+
# HostConfig configures the registry host under a given Server.
|
|
4220
|
+
class HostConfig
|
|
4221
|
+
include Google::Apis::Core::Hashable
|
|
4222
|
+
|
|
4223
|
+
# CA configures the registry host certificate.
|
|
4224
|
+
# Corresponds to the JSON property `ca`
|
|
4225
|
+
# @return [Array<Google::Apis::ContainerV1beta1::CertificateConfig>]
|
|
4226
|
+
attr_accessor :ca
|
|
4227
|
+
|
|
4228
|
+
# Capabilities represent the capabilities of the registry host, specifying what
|
|
4229
|
+
# operations a host is capable of performing. If not set, containerd enables all
|
|
4230
|
+
# capabilities by default.
|
|
4231
|
+
# Corresponds to the JSON property `capabilities`
|
|
4232
|
+
# @return [Array<String>]
|
|
4233
|
+
attr_accessor :capabilities
|
|
4234
|
+
|
|
4235
|
+
# Client configures the registry host client certificate and key.
|
|
4236
|
+
# Corresponds to the JSON property `client`
|
|
4237
|
+
# @return [Array<Google::Apis::ContainerV1beta1::CertificateConfigPair>]
|
|
4238
|
+
attr_accessor :client
|
|
4239
|
+
|
|
4240
|
+
# Specifies the maximum duration allowed for a connection attempt to complete. A
|
|
4241
|
+
# shorter timeout helps reduce delays when falling back to the original registry
|
|
4242
|
+
# if the mirror is unreachable. Maximum allowed value is 180s. If not set,
|
|
4243
|
+
# containerd sets default 30s. The value should be a decimal number of seconds
|
|
4244
|
+
# with an `s` suffix.
|
|
4245
|
+
# Corresponds to the JSON property `dialTimeout`
|
|
4246
|
+
# @return [String]
|
|
4247
|
+
attr_accessor :dial_timeout
|
|
4248
|
+
|
|
4249
|
+
# Header configures the registry host headers.
|
|
4250
|
+
# Corresponds to the JSON property `header`
|
|
4251
|
+
# @return [Array<Google::Apis::ContainerV1beta1::RegistryHeader>]
|
|
4252
|
+
attr_accessor :header
|
|
4253
|
+
|
|
4254
|
+
# Host configures the registry host/mirror. It supports fully qualified domain
|
|
4255
|
+
# names (FQDN) and IP addresses: Specifying port is supported. Wildcards are NOT
|
|
4256
|
+
# supported. Examples: - my.customdomain.com - 10.0.1.2:5000
|
|
4257
|
+
# Corresponds to the JSON property `host`
|
|
4258
|
+
# @return [String]
|
|
4259
|
+
attr_accessor :host
|
|
4260
|
+
|
|
4261
|
+
# OverridePath is used to indicate the host's API root endpoint is defined in
|
|
4262
|
+
# the URL path rather than by the API specification. This may be used with non-
|
|
4263
|
+
# compliant OCI registries which are missing the /v2 prefix. If not set,
|
|
4264
|
+
# containerd sets default false.
|
|
4265
|
+
# Corresponds to the JSON property `overridePath`
|
|
4266
|
+
# @return [Boolean]
|
|
4267
|
+
attr_accessor :override_path
|
|
4268
|
+
alias_method :override_path?, :override_path
|
|
4269
|
+
|
|
4270
|
+
def initialize(**args)
|
|
4271
|
+
update!(**args)
|
|
4272
|
+
end
|
|
4273
|
+
|
|
4274
|
+
# Update properties of this object
|
|
4275
|
+
def update!(**args)
|
|
4276
|
+
@ca = args[:ca] if args.key?(:ca)
|
|
4277
|
+
@capabilities = args[:capabilities] if args.key?(:capabilities)
|
|
4278
|
+
@client = args[:client] if args.key?(:client)
|
|
4279
|
+
@dial_timeout = args[:dial_timeout] if args.key?(:dial_timeout)
|
|
4280
|
+
@header = args[:header] if args.key?(:header)
|
|
4281
|
+
@host = args[:host] if args.key?(:host)
|
|
4282
|
+
@override_path = args[:override_path] if args.key?(:override_path)
|
|
4283
|
+
end
|
|
4284
|
+
end
|
|
4285
|
+
|
|
4073
4286
|
# HostMaintenancePolicy contains the maintenance policy for the hosts on which
|
|
4074
4287
|
# the GKE VMs run on.
|
|
4075
4288
|
class HostMaintenancePolicy
|
|
@@ -4728,16 +4941,20 @@ module Google
|
|
|
4728
4941
|
# busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.rmem_default
|
|
4729
4942
|
# net.core.wmem_default net.core.wmem_max net.core.optmem_max net.core.somaxconn
|
|
4730
4943
|
# net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse net.ipv4.
|
|
4731
|
-
# tcp_max_orphans net.
|
|
4732
|
-
#
|
|
4733
|
-
# netfilter.
|
|
4944
|
+
# tcp_mtu_probing net.ipv4.tcp_max_orphans net.ipv4.tcp_max_tw_buckets net.ipv4.
|
|
4945
|
+
# tcp_syn_retries net.ipv4.tcp_ecn net.ipv4.tcp_congestion_control net.netfilter.
|
|
4946
|
+
# nf_conntrack_max net.netfilter.nf_conntrack_buckets net.netfilter.
|
|
4947
|
+
# nf_conntrack_tcp_timeout_close_wait net.netfilter.
|
|
4948
|
+
# nf_conntrack_tcp_timeout_time_wait net.netfilter.
|
|
4734
4949
|
# nf_conntrack_tcp_timeout_established net.netfilter.nf_conntrack_acct kernel.
|
|
4735
|
-
# shmmni kernel.shmmax kernel.shmall
|
|
4736
|
-
#
|
|
4737
|
-
#
|
|
4738
|
-
#
|
|
4739
|
-
#
|
|
4740
|
-
# vm.
|
|
4950
|
+
# shmmni kernel.shmmax kernel.shmall kernel.perf_event_paranoid kernel.
|
|
4951
|
+
# sched_rt_runtime_us kernel.softlockup_panic kernel.yama.ptrace_scope kernel.
|
|
4952
|
+
# kptr_restrict kernel.dmesg_restrict kernel.sysrq fs.aio-max-nr fs.file-max fs.
|
|
4953
|
+
# inotify.max_user_instances fs.inotify.max_user_watches fs.nr_open vm.
|
|
4954
|
+
# dirty_background_ratio vm.dirty_background_bytes vm.dirty_expire_centisecs vm.
|
|
4955
|
+
# dirty_ratio vm.dirty_bytes vm.dirty_writeback_centisecs vm.max_map_count vm.
|
|
4956
|
+
# overcommit_memory vm.overcommit_ratio vm.vfs_cache_pressure vm.swappiness vm.
|
|
4957
|
+
# watermark_scale_factor vm.min_free_kbytes
|
|
4741
4958
|
# Corresponds to the JSON property `sysctls`
|
|
4742
4959
|
# @return [Hash<String,String>]
|
|
4743
4960
|
attr_accessor :sysctls
|
|
@@ -5033,7 +5250,10 @@ module Google
|
|
|
5033
5250
|
# port 6988. This serves as a workaround for a port conflict with the gke-
|
|
5034
5251
|
# metadata-server. This field is required ONLY under the following conditions: 1.
|
|
5035
5252
|
# The GKE node version is older than 1.33.2-gke.4655000. 2. You're connecting
|
|
5036
|
-
# to a Lustre instance that has the 'gke-support-enabled' flag.
|
|
5253
|
+
# to a Lustre instance that has the 'gke-support-enabled' flag. Deprecated: This
|
|
5254
|
+
# flag is no longer required as of GKE node version 1.33.2-gke.4655000, unless
|
|
5255
|
+
# you are connecting to a Lustre instance that has the `gke-support-enabled`
|
|
5256
|
+
# flag.
|
|
5037
5257
|
# Corresponds to the JSON property `enableLegacyLustrePort`
|
|
5038
5258
|
# @return [Boolean]
|
|
5039
5259
|
attr_accessor :enable_legacy_lustre_port
|
|
@@ -5174,12 +5394,18 @@ module Google
|
|
|
5174
5394
|
class Master
|
|
5175
5395
|
include Google::Apis::Core::Hashable
|
|
5176
5396
|
|
|
5397
|
+
# CompatibilityStatus is the status regarding the control plane's compatibility.
|
|
5398
|
+
# Corresponds to the JSON property `compatibilityStatus`
|
|
5399
|
+
# @return [Google::Apis::ContainerV1beta1::CompatibilityStatus]
|
|
5400
|
+
attr_accessor :compatibility_status
|
|
5401
|
+
|
|
5177
5402
|
def initialize(**args)
|
|
5178
5403
|
update!(**args)
|
|
5179
5404
|
end
|
|
5180
5405
|
|
|
5181
5406
|
# Update properties of this object
|
|
5182
5407
|
def update!(**args)
|
|
5408
|
+
@compatibility_status = args[:compatibility_status] if args.key?(:compatibility_status)
|
|
5183
5409
|
end
|
|
5184
5410
|
end
|
|
5185
5411
|
|
|
@@ -7402,6 +7628,26 @@ module Google
|
|
|
7402
7628
|
end
|
|
7403
7629
|
end
|
|
7404
7630
|
|
|
7631
|
+
# PodSnapshotConfig is the configuration for GKE Pod Snapshots feature.
|
|
7632
|
+
class PodSnapshotConfig
|
|
7633
|
+
include Google::Apis::Core::Hashable
|
|
7634
|
+
|
|
7635
|
+
# Whether or not the Pod Snapshots feature is enabled.
|
|
7636
|
+
# Corresponds to the JSON property `enabled`
|
|
7637
|
+
# @return [Boolean]
|
|
7638
|
+
attr_accessor :enabled
|
|
7639
|
+
alias_method :enabled?, :enabled
|
|
7640
|
+
|
|
7641
|
+
def initialize(**args)
|
|
7642
|
+
update!(**args)
|
|
7643
|
+
end
|
|
7644
|
+
|
|
7645
|
+
# Update properties of this object
|
|
7646
|
+
def update!(**args)
|
|
7647
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
|
7648
|
+
end
|
|
7649
|
+
end
|
|
7650
|
+
|
|
7405
7651
|
# Binauthz policy that applies to this cluster.
|
|
7406
7652
|
class PolicyBinding
|
|
7407
7653
|
include Google::Apis::Core::Hashable
|
|
@@ -7823,6 +8069,62 @@ module Google
|
|
|
7823
8069
|
end
|
|
7824
8070
|
end
|
|
7825
8071
|
|
|
8072
|
+
# RegistryHeader configures headers for the registry.
|
|
8073
|
+
class RegistryHeader
|
|
8074
|
+
include Google::Apis::Core::Hashable
|
|
8075
|
+
|
|
8076
|
+
# Key configures the header key.
|
|
8077
|
+
# Corresponds to the JSON property `key`
|
|
8078
|
+
# @return [String]
|
|
8079
|
+
attr_accessor :key
|
|
8080
|
+
|
|
8081
|
+
# Value configures the header value.
|
|
8082
|
+
# Corresponds to the JSON property `value`
|
|
8083
|
+
# @return [Array<String>]
|
|
8084
|
+
attr_accessor :value
|
|
8085
|
+
|
|
8086
|
+
def initialize(**args)
|
|
8087
|
+
update!(**args)
|
|
8088
|
+
end
|
|
8089
|
+
|
|
8090
|
+
# Update properties of this object
|
|
8091
|
+
def update!(**args)
|
|
8092
|
+
@key = args[:key] if args.key?(:key)
|
|
8093
|
+
@value = args[:value] if args.key?(:value)
|
|
8094
|
+
end
|
|
8095
|
+
end
|
|
8096
|
+
|
|
8097
|
+
# RegistryHostConfig configures the top-level structure for a single containerd
|
|
8098
|
+
# registry server's configuration, which represents one hosts.toml file on the
|
|
8099
|
+
# node. It will override the same fqdns in PrivateRegistryAccessConfig.
|
|
8100
|
+
class RegistryHostConfig
|
|
8101
|
+
include Google::Apis::Core::Hashable
|
|
8102
|
+
|
|
8103
|
+
# HostConfig configures a list of host-specific configurations for the server.
|
|
8104
|
+
# Each server can have at most 10 host configurations.
|
|
8105
|
+
# Corresponds to the JSON property `hosts`
|
|
8106
|
+
# @return [Array<Google::Apis::ContainerV1beta1::HostConfig>]
|
|
8107
|
+
attr_accessor :hosts
|
|
8108
|
+
|
|
8109
|
+
# Defines the host name of the registry server, which will be used to create
|
|
8110
|
+
# configuration file as /etc/containerd/hosts.d//hosts.toml. It supports fully
|
|
8111
|
+
# qualified domain names (FQDN) and IP addresses: Specifying port is supported.
|
|
8112
|
+
# Wildcards are NOT supported. Examples: - my.customdomain.com - 10.0.1.2:5000
|
|
8113
|
+
# Corresponds to the JSON property `server`
|
|
8114
|
+
# @return [String]
|
|
8115
|
+
attr_accessor :server
|
|
8116
|
+
|
|
8117
|
+
def initialize(**args)
|
|
8118
|
+
update!(**args)
|
|
8119
|
+
end
|
|
8120
|
+
|
|
8121
|
+
# Update properties of this object
|
|
8122
|
+
def update!(**args)
|
|
8123
|
+
@hosts = args[:hosts] if args.key?(:hosts)
|
|
8124
|
+
@server = args[:server] if args.key?(:server)
|
|
8125
|
+
end
|
|
8126
|
+
end
|
|
8127
|
+
|
|
7826
8128
|
# ReleaseChannel indicates which release channel a cluster is subscribed to.
|
|
7827
8129
|
# Release channels are arranged in order of risk. When a cluster is subscribed
|
|
7828
8130
|
# to a release channel, Google maintains both the master version and the node
|
|
@@ -8094,6 +8396,58 @@ module Google
|
|
|
8094
8396
|
end
|
|
8095
8397
|
end
|
|
8096
8398
|
|
|
8399
|
+
# RollbackSafeUpgrade is the configuration for the rollback safe upgrade.
|
|
8400
|
+
class RollbackSafeUpgrade
|
|
8401
|
+
include Google::Apis::Core::Hashable
|
|
8402
|
+
|
|
8403
|
+
# A user-defined period for the cluster remains in the rollbackable state. ex: `
|
|
8404
|
+
# seconds: 21600`.
|
|
8405
|
+
# Corresponds to the JSON property `controlPlaneSoakDuration`
|
|
8406
|
+
# @return [String]
|
|
8407
|
+
attr_accessor :control_plane_soak_duration
|
|
8408
|
+
|
|
8409
|
+
def initialize(**args)
|
|
8410
|
+
update!(**args)
|
|
8411
|
+
end
|
|
8412
|
+
|
|
8413
|
+
# Update properties of this object
|
|
8414
|
+
def update!(**args)
|
|
8415
|
+
@control_plane_soak_duration = args[:control_plane_soak_duration] if args.key?(:control_plane_soak_duration)
|
|
8416
|
+
end
|
|
8417
|
+
end
|
|
8418
|
+
|
|
8419
|
+
# RollbackSafeUpgradeStatus contains the rollback-safe upgrade status of a
|
|
8420
|
+
# cluster.
|
|
8421
|
+
class RollbackSafeUpgradeStatus
|
|
8422
|
+
include Google::Apis::Core::Hashable
|
|
8423
|
+
|
|
8424
|
+
# The rollback-safe mode expiration time.
|
|
8425
|
+
# Corresponds to the JSON property `controlPlaneUpgradeRollbackEndTime`
|
|
8426
|
+
# @return [String]
|
|
8427
|
+
attr_accessor :control_plane_upgrade_rollback_end_time
|
|
8428
|
+
|
|
8429
|
+
# The mode of the rollback-safe upgrade.
|
|
8430
|
+
# Corresponds to the JSON property `mode`
|
|
8431
|
+
# @return [String]
|
|
8432
|
+
attr_accessor :mode
|
|
8433
|
+
|
|
8434
|
+
# The GKE version that the cluster previously used before step-one upgrade.
|
|
8435
|
+
# Corresponds to the JSON property `previousVersion`
|
|
8436
|
+
# @return [String]
|
|
8437
|
+
attr_accessor :previous_version
|
|
8438
|
+
|
|
8439
|
+
def initialize(**args)
|
|
8440
|
+
update!(**args)
|
|
8441
|
+
end
|
|
8442
|
+
|
|
8443
|
+
# Update properties of this object
|
|
8444
|
+
def update!(**args)
|
|
8445
|
+
@control_plane_upgrade_rollback_end_time = args[:control_plane_upgrade_rollback_end_time] if args.key?(:control_plane_upgrade_rollback_end_time)
|
|
8446
|
+
@mode = args[:mode] if args.key?(:mode)
|
|
8447
|
+
@previous_version = args[:previous_version] if args.key?(:previous_version)
|
|
8448
|
+
end
|
|
8449
|
+
end
|
|
8450
|
+
|
|
8097
8451
|
# RotationConfig is config for secret manager auto rotation.
|
|
8098
8452
|
class RotationConfig
|
|
8099
8453
|
include Google::Apis::Core::Hashable
|
|
@@ -10001,6 +10355,11 @@ module Google
|
|
|
10001
10355
|
# @return [String]
|
|
10002
10356
|
attr_accessor :end_time
|
|
10003
10357
|
|
|
10358
|
+
# The emulated version before the upgrade.
|
|
10359
|
+
# Corresponds to the JSON property `initialEmulatedVersion`
|
|
10360
|
+
# @return [String]
|
|
10361
|
+
attr_accessor :initial_emulated_version
|
|
10362
|
+
|
|
10004
10363
|
# The version before the upgrade.
|
|
10005
10364
|
# Corresponds to the JSON property `initialVersion`
|
|
10006
10365
|
# @return [String]
|
|
@@ -10021,6 +10380,11 @@ module Google
|
|
|
10021
10380
|
# @return [String]
|
|
10022
10381
|
attr_accessor :state
|
|
10023
10382
|
|
|
10383
|
+
# The emulated version after the upgrade.
|
|
10384
|
+
# Corresponds to the JSON property `targetEmulatedVersion`
|
|
10385
|
+
# @return [String]
|
|
10386
|
+
attr_accessor :target_emulated_version
|
|
10387
|
+
|
|
10024
10388
|
# The version after the upgrade.
|
|
10025
10389
|
# Corresponds to the JSON property `targetVersion`
|
|
10026
10390
|
# @return [String]
|
|
@@ -10033,10 +10397,12 @@ module Google
|
|
|
10033
10397
|
# Update properties of this object
|
|
10034
10398
|
def update!(**args)
|
|
10035
10399
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
10400
|
+
@initial_emulated_version = args[:initial_emulated_version] if args.key?(:initial_emulated_version)
|
|
10036
10401
|
@initial_version = args[:initial_version] if args.key?(:initial_version)
|
|
10037
10402
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
10038
10403
|
@start_type = args[:start_type] if args.key?(:start_type)
|
|
10039
10404
|
@state = args[:state] if args.key?(:state)
|
|
10405
|
+
@target_emulated_version = args[:target_emulated_version] if args.key?(:target_emulated_version)
|
|
10040
10406
|
@target_version = args[:target_version] if args.key?(:target_version)
|
|
10041
10407
|
end
|
|
10042
10408
|
end
|
|
@@ -10375,6 +10741,12 @@ module Google
|
|
|
10375
10741
|
# @return [String]
|
|
10376
10742
|
attr_accessor :control_plane_disk_encryption_key
|
|
10377
10743
|
|
|
10744
|
+
# Output only. All of the versions of the Cloud KMS cryptoKey that are used by
|
|
10745
|
+
# Confidential Hyperdisks on the control plane nodes.
|
|
10746
|
+
# Corresponds to the JSON property `controlPlaneDiskEncryptionKeyVersions`
|
|
10747
|
+
# @return [Array<String>]
|
|
10748
|
+
attr_accessor :control_plane_disk_encryption_key_versions
|
|
10749
|
+
|
|
10378
10750
|
# Resource path of the Certificate Authority Service caPool to use for the etcd
|
|
10379
10751
|
# API CA in this cluster.
|
|
10380
10752
|
# Corresponds to the JSON property `etcdApiCa`
|
|
@@ -10416,6 +10788,7 @@ module Google
|
|
|
10416
10788
|
@aggregation_ca = args[:aggregation_ca] if args.key?(:aggregation_ca)
|
|
10417
10789
|
@cluster_ca = args[:cluster_ca] if args.key?(:cluster_ca)
|
|
10418
10790
|
@control_plane_disk_encryption_key = args[:control_plane_disk_encryption_key] if args.key?(:control_plane_disk_encryption_key)
|
|
10791
|
+
@control_plane_disk_encryption_key_versions = args[:control_plane_disk_encryption_key_versions] if args.key?(:control_plane_disk_encryption_key_versions)
|
|
10419
10792
|
@etcd_api_ca = args[:etcd_api_ca] if args.key?(:etcd_api_ca)
|
|
10420
10793
|
@etcd_peer_ca = args[:etcd_peer_ca] if args.key?(:etcd_peer_ca)
|
|
10421
10794
|
@gkeops_etcd_backup_encryption_key = args[:gkeops_etcd_backup_encryption_key] if args.key?(:gkeops_etcd_backup_encryption_key)
|
|
@@ -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.97.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251104"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -196,6 +196,18 @@ module Google
|
|
|
196
196
|
include Google::Apis::Core::JsonObjectSupport
|
|
197
197
|
end
|
|
198
198
|
|
|
199
|
+
class CertificateConfig
|
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
201
|
+
|
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
203
|
+
end
|
|
204
|
+
|
|
205
|
+
class CertificateConfigPair
|
|
206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
207
|
+
|
|
208
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
209
|
+
end
|
|
210
|
+
|
|
199
211
|
class CheckAutopilotCompatibilityResponse
|
|
200
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
201
213
|
|
|
@@ -256,6 +268,18 @@ module Google
|
|
|
256
268
|
include Google::Apis::Core::JsonObjectSupport
|
|
257
269
|
end
|
|
258
270
|
|
|
271
|
+
class CompatibilityStatus
|
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
273
|
+
|
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
275
|
+
end
|
|
276
|
+
|
|
277
|
+
class CompleteControlPlaneUpgradeRequest
|
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
279
|
+
|
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
281
|
+
end
|
|
282
|
+
|
|
259
283
|
class CompleteIpRotationRequest
|
|
260
284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
261
285
|
|
|
@@ -550,6 +574,12 @@ module Google
|
|
|
550
574
|
include Google::Apis::Core::JsonObjectSupport
|
|
551
575
|
end
|
|
552
576
|
|
|
577
|
+
class HostConfig
|
|
578
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
579
|
+
|
|
580
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
581
|
+
end
|
|
582
|
+
|
|
553
583
|
class HostMaintenancePolicy
|
|
554
584
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
555
585
|
|
|
@@ -988,6 +1018,12 @@ module Google
|
|
|
988
1018
|
include Google::Apis::Core::JsonObjectSupport
|
|
989
1019
|
end
|
|
990
1020
|
|
|
1021
|
+
class PodSnapshotConfig
|
|
1022
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1023
|
+
|
|
1024
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1025
|
+
end
|
|
1026
|
+
|
|
991
1027
|
class PolicyBinding
|
|
992
1028
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
993
1029
|
|
|
@@ -1072,6 +1108,18 @@ module Google
|
|
|
1072
1108
|
include Google::Apis::Core::JsonObjectSupport
|
|
1073
1109
|
end
|
|
1074
1110
|
|
|
1111
|
+
class RegistryHeader
|
|
1112
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1113
|
+
|
|
1114
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1115
|
+
end
|
|
1116
|
+
|
|
1117
|
+
class RegistryHostConfig
|
|
1118
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1119
|
+
|
|
1120
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1121
|
+
end
|
|
1122
|
+
|
|
1075
1123
|
class ReleaseChannel
|
|
1076
1124
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1077
1125
|
|
|
@@ -1120,6 +1168,18 @@ module Google
|
|
|
1120
1168
|
include Google::Apis::Core::JsonObjectSupport
|
|
1121
1169
|
end
|
|
1122
1170
|
|
|
1171
|
+
class RollbackSafeUpgrade
|
|
1172
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1173
|
+
|
|
1174
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1175
|
+
end
|
|
1176
|
+
|
|
1177
|
+
class RollbackSafeUpgradeStatus
|
|
1178
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1179
|
+
|
|
1180
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1181
|
+
end
|
|
1182
|
+
|
|
1123
1183
|
class RotationConfig
|
|
1124
1184
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1125
1185
|
|
|
@@ -1559,6 +1619,8 @@ module Google
|
|
|
1559
1619
|
|
|
1560
1620
|
property :parallelstore_csi_driver_config, as: 'parallelstoreCsiDriverConfig', class: Google::Apis::ContainerV1beta1::ParallelstoreCsiDriverConfig, decorator: Google::Apis::ContainerV1beta1::ParallelstoreCsiDriverConfig::Representation
|
|
1561
1621
|
|
|
1622
|
+
property :pod_snapshot_config, as: 'podSnapshotConfig', class: Google::Apis::ContainerV1beta1::PodSnapshotConfig, decorator: Google::Apis::ContainerV1beta1::PodSnapshotConfig::Representation
|
|
1623
|
+
|
|
1562
1624
|
property :ray_operator_config, as: 'rayOperatorConfig', class: Google::Apis::ContainerV1beta1::RayOperatorConfig, decorator: Google::Apis::ContainerV1beta1::RayOperatorConfig::Representation
|
|
1563
1625
|
|
|
1564
1626
|
property :stateful_ha_config, as: 'statefulHaConfig', class: Google::Apis::ContainerV1beta1::StatefulHaConfig, decorator: Google::Apis::ContainerV1beta1::StatefulHaConfig::Representation
|
|
@@ -1779,6 +1841,23 @@ module Google
|
|
|
1779
1841
|
end
|
|
1780
1842
|
end
|
|
1781
1843
|
|
|
1844
|
+
class CertificateConfig
|
|
1845
|
+
# @private
|
|
1846
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1847
|
+
property :gcp_secret_manager_secret_uri, as: 'gcpSecretManagerSecretUri'
|
|
1848
|
+
end
|
|
1849
|
+
end
|
|
1850
|
+
|
|
1851
|
+
class CertificateConfigPair
|
|
1852
|
+
# @private
|
|
1853
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1854
|
+
property :cert, as: 'cert', class: Google::Apis::ContainerV1beta1::CertificateConfig, decorator: Google::Apis::ContainerV1beta1::CertificateConfig::Representation
|
|
1855
|
+
|
|
1856
|
+
property :key, as: 'key', class: Google::Apis::ContainerV1beta1::CertificateConfig, decorator: Google::Apis::ContainerV1beta1::CertificateConfig::Representation
|
|
1857
|
+
|
|
1858
|
+
end
|
|
1859
|
+
end
|
|
1860
|
+
|
|
1782
1861
|
class CheckAutopilotCompatibilityResponse
|
|
1783
1862
|
# @private
|
|
1784
1863
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1841,6 +1920,7 @@ module Google
|
|
|
1841
1920
|
property :cost_management_config, as: 'costManagementConfig', class: Google::Apis::ContainerV1beta1::CostManagementConfig, decorator: Google::Apis::ContainerV1beta1::CostManagementConfig::Representation
|
|
1842
1921
|
|
|
1843
1922
|
property :create_time, as: 'createTime'
|
|
1923
|
+
property :current_emulated_version, as: 'currentEmulatedVersion'
|
|
1844
1924
|
property :current_master_version, as: 'currentMasterVersion'
|
|
1845
1925
|
property :current_node_count, as: 'currentNodeCount'
|
|
1846
1926
|
property :current_node_version, as: 'currentNodeVersion'
|
|
@@ -1927,6 +2007,8 @@ module Google
|
|
|
1927
2007
|
hash :resource_labels, as: 'resourceLabels'
|
|
1928
2008
|
property :resource_usage_export_config, as: 'resourceUsageExportConfig', class: Google::Apis::ContainerV1beta1::ResourceUsageExportConfig, decorator: Google::Apis::ContainerV1beta1::ResourceUsageExportConfig::Representation
|
|
1929
2009
|
|
|
2010
|
+
property :rollback_safe_upgrade, as: 'rollbackSafeUpgrade', class: Google::Apis::ContainerV1beta1::RollbackSafeUpgrade, decorator: Google::Apis::ContainerV1beta1::RollbackSafeUpgrade::Representation
|
|
2011
|
+
|
|
1930
2012
|
property :satisfies_pzi, as: 'satisfiesPzi'
|
|
1931
2013
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
|
1932
2014
|
property :secret_manager_config, as: 'secretManagerConfig', class: Google::Apis::ContainerV1beta1::SecretManagerConfig, decorator: Google::Apis::ContainerV1beta1::SecretManagerConfig::Representation
|
|
@@ -2097,6 +2179,8 @@ module Google
|
|
|
2097
2179
|
property :desired_private_cluster_config, as: 'desiredPrivateClusterConfig', class: Google::Apis::ContainerV1beta1::PrivateClusterConfig, decorator: Google::Apis::ContainerV1beta1::PrivateClusterConfig::Representation
|
|
2098
2180
|
|
|
2099
2181
|
property :desired_private_ipv6_google_access, as: 'desiredPrivateIpv6GoogleAccess'
|
|
2182
|
+
property :desired_privileged_admission_config, as: 'desiredPrivilegedAdmissionConfig', class: Google::Apis::ContainerV1beta1::PrivilegedAdmissionConfig, decorator: Google::Apis::ContainerV1beta1::PrivilegedAdmissionConfig::Representation
|
|
2183
|
+
|
|
2100
2184
|
property :desired_protect_config, as: 'desiredProtectConfig', class: Google::Apis::ContainerV1beta1::ProtectConfig, decorator: Google::Apis::ContainerV1beta1::ProtectConfig::Representation
|
|
2101
2185
|
|
|
2102
2186
|
property :desired_rbac_binding_config, as: 'desiredRbacBindingConfig', class: Google::Apis::ContainerV1beta1::RbacBindingConfig, decorator: Google::Apis::ContainerV1beta1::RbacBindingConfig::Representation
|
|
@@ -2105,6 +2189,8 @@ module Google
|
|
|
2105
2189
|
|
|
2106
2190
|
property :desired_resource_usage_export_config, as: 'desiredResourceUsageExportConfig', class: Google::Apis::ContainerV1beta1::ResourceUsageExportConfig, decorator: Google::Apis::ContainerV1beta1::ResourceUsageExportConfig::Representation
|
|
2107
2191
|
|
|
2192
|
+
property :desired_rollback_safe_upgrade, as: 'desiredRollbackSafeUpgrade', class: Google::Apis::ContainerV1beta1::RollbackSafeUpgrade, decorator: Google::Apis::ContainerV1beta1::RollbackSafeUpgrade::Representation
|
|
2193
|
+
|
|
2108
2194
|
property :desired_secret_manager_config, as: 'desiredSecretManagerConfig', class: Google::Apis::ContainerV1beta1::SecretManagerConfig, decorator: Google::Apis::ContainerV1beta1::SecretManagerConfig::Representation
|
|
2109
2195
|
|
|
2110
2196
|
property :desired_secret_sync_config, as: 'desiredSecretSyncConfig', class: Google::Apis::ContainerV1beta1::SecretSyncConfig, decorator: Google::Apis::ContainerV1beta1::SecretSyncConfig::Representation
|
|
@@ -2151,11 +2237,28 @@ module Google
|
|
|
2151
2237
|
property :minor_target_version, as: 'minorTargetVersion'
|
|
2152
2238
|
property :patch_target_version, as: 'patchTargetVersion'
|
|
2153
2239
|
collection :paused_reason, as: 'pausedReason'
|
|
2240
|
+
property :rollback_safe_upgrade_status, as: 'rollbackSafeUpgradeStatus', class: Google::Apis::ContainerV1beta1::RollbackSafeUpgradeStatus, decorator: Google::Apis::ContainerV1beta1::RollbackSafeUpgradeStatus::Representation
|
|
2241
|
+
|
|
2154
2242
|
collection :upgrade_details, as: 'upgradeDetails', class: Google::Apis::ContainerV1beta1::UpgradeDetails, decorator: Google::Apis::ContainerV1beta1::UpgradeDetails::Representation
|
|
2155
2243
|
|
|
2156
2244
|
end
|
|
2157
2245
|
end
|
|
2158
2246
|
|
|
2247
|
+
class CompatibilityStatus
|
|
2248
|
+
# @private
|
|
2249
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2250
|
+
property :downgradable_version, as: 'downgradableVersion'
|
|
2251
|
+
property :emulated_version_time, as: 'emulatedVersionTime'
|
|
2252
|
+
end
|
|
2253
|
+
end
|
|
2254
|
+
|
|
2255
|
+
class CompleteControlPlaneUpgradeRequest
|
|
2256
|
+
# @private
|
|
2257
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2258
|
+
property :version, as: 'version'
|
|
2259
|
+
end
|
|
2260
|
+
end
|
|
2261
|
+
|
|
2159
2262
|
class CompleteIpRotationRequest
|
|
2160
2263
|
# @private
|
|
2161
2264
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2215,6 +2318,8 @@ module Google
|
|
|
2215
2318
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2216
2319
|
property :private_registry_access_config, as: 'privateRegistryAccessConfig', class: Google::Apis::ContainerV1beta1::PrivateRegistryAccessConfig, decorator: Google::Apis::ContainerV1beta1::PrivateRegistryAccessConfig::Representation
|
|
2217
2320
|
|
|
2321
|
+
collection :registry_hosts, as: 'registryHosts', class: Google::Apis::ContainerV1beta1::RegistryHostConfig, decorator: Google::Apis::ContainerV1beta1::RegistryHostConfig::Representation
|
|
2322
|
+
|
|
2218
2323
|
property :writable_cgroups, as: 'writableCgroups', class: Google::Apis::ContainerV1beta1::WritableCgroups, decorator: Google::Apis::ContainerV1beta1::WritableCgroups::Representation
|
|
2219
2324
|
|
|
2220
2325
|
end
|
|
@@ -2566,6 +2671,22 @@ module Google
|
|
|
2566
2671
|
end
|
|
2567
2672
|
end
|
|
2568
2673
|
|
|
2674
|
+
class HostConfig
|
|
2675
|
+
# @private
|
|
2676
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2677
|
+
collection :ca, as: 'ca', class: Google::Apis::ContainerV1beta1::CertificateConfig, decorator: Google::Apis::ContainerV1beta1::CertificateConfig::Representation
|
|
2678
|
+
|
|
2679
|
+
collection :capabilities, as: 'capabilities'
|
|
2680
|
+
collection :client, as: 'client', class: Google::Apis::ContainerV1beta1::CertificateConfigPair, decorator: Google::Apis::ContainerV1beta1::CertificateConfigPair::Representation
|
|
2681
|
+
|
|
2682
|
+
property :dial_timeout, as: 'dialTimeout'
|
|
2683
|
+
collection :header, as: 'header', class: Google::Apis::ContainerV1beta1::RegistryHeader, decorator: Google::Apis::ContainerV1beta1::RegistryHeader::Representation
|
|
2684
|
+
|
|
2685
|
+
property :host, as: 'host'
|
|
2686
|
+
property :override_path, as: 'overridePath'
|
|
2687
|
+
end
|
|
2688
|
+
end
|
|
2689
|
+
|
|
2569
2690
|
class HostMaintenancePolicy
|
|
2570
2691
|
# @private
|
|
2571
2692
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2867,6 +2988,8 @@ module Google
|
|
|
2867
2988
|
class Master
|
|
2868
2989
|
# @private
|
|
2869
2990
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2991
|
+
property :compatibility_status, as: 'compatibilityStatus', class: Google::Apis::ContainerV1beta1::CompatibilityStatus, decorator: Google::Apis::ContainerV1beta1::CompatibilityStatus::Representation
|
|
2992
|
+
|
|
2870
2993
|
end
|
|
2871
2994
|
end
|
|
2872
2995
|
|
|
@@ -3412,6 +3535,13 @@ module Google
|
|
|
3412
3535
|
end
|
|
3413
3536
|
end
|
|
3414
3537
|
|
|
3538
|
+
class PodSnapshotConfig
|
|
3539
|
+
# @private
|
|
3540
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3541
|
+
property :enabled, as: 'enabled'
|
|
3542
|
+
end
|
|
3543
|
+
end
|
|
3544
|
+
|
|
3415
3545
|
class PolicyBinding
|
|
3416
3546
|
# @private
|
|
3417
3547
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3533,6 +3663,23 @@ module Google
|
|
|
3533
3663
|
end
|
|
3534
3664
|
end
|
|
3535
3665
|
|
|
3666
|
+
class RegistryHeader
|
|
3667
|
+
# @private
|
|
3668
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3669
|
+
property :key, as: 'key'
|
|
3670
|
+
collection :value, as: 'value'
|
|
3671
|
+
end
|
|
3672
|
+
end
|
|
3673
|
+
|
|
3674
|
+
class RegistryHostConfig
|
|
3675
|
+
# @private
|
|
3676
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3677
|
+
collection :hosts, as: 'hosts', class: Google::Apis::ContainerV1beta1::HostConfig, decorator: Google::Apis::ContainerV1beta1::HostConfig::Representation
|
|
3678
|
+
|
|
3679
|
+
property :server, as: 'server'
|
|
3680
|
+
end
|
|
3681
|
+
end
|
|
3682
|
+
|
|
3536
3683
|
class ReleaseChannel
|
|
3537
3684
|
# @private
|
|
3538
3685
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3607,6 +3754,22 @@ module Google
|
|
|
3607
3754
|
end
|
|
3608
3755
|
end
|
|
3609
3756
|
|
|
3757
|
+
class RollbackSafeUpgrade
|
|
3758
|
+
# @private
|
|
3759
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3760
|
+
property :control_plane_soak_duration, as: 'controlPlaneSoakDuration'
|
|
3761
|
+
end
|
|
3762
|
+
end
|
|
3763
|
+
|
|
3764
|
+
class RollbackSafeUpgradeStatus
|
|
3765
|
+
# @private
|
|
3766
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3767
|
+
property :control_plane_upgrade_rollback_end_time, as: 'controlPlaneUpgradeRollbackEndTime'
|
|
3768
|
+
property :mode, as: 'mode'
|
|
3769
|
+
property :previous_version, as: 'previousVersion'
|
|
3770
|
+
end
|
|
3771
|
+
end
|
|
3772
|
+
|
|
3610
3773
|
class RotationConfig
|
|
3611
3774
|
# @private
|
|
3612
3775
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4073,10 +4236,12 @@ module Google
|
|
|
4073
4236
|
# @private
|
|
4074
4237
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4075
4238
|
property :end_time, as: 'endTime'
|
|
4239
|
+
property :initial_emulated_version, as: 'initialEmulatedVersion'
|
|
4076
4240
|
property :initial_version, as: 'initialVersion'
|
|
4077
4241
|
property :start_time, as: 'startTime'
|
|
4078
4242
|
property :start_type, as: 'startType'
|
|
4079
4243
|
property :state, as: 'state'
|
|
4244
|
+
property :target_emulated_version, as: 'targetEmulatedVersion'
|
|
4080
4245
|
property :target_version, as: 'targetVersion'
|
|
4081
4246
|
end
|
|
4082
4247
|
end
|
|
@@ -4153,6 +4318,7 @@ module Google
|
|
|
4153
4318
|
property :aggregation_ca, as: 'aggregationCa'
|
|
4154
4319
|
property :cluster_ca, as: 'clusterCa'
|
|
4155
4320
|
property :control_plane_disk_encryption_key, as: 'controlPlaneDiskEncryptionKey'
|
|
4321
|
+
collection :control_plane_disk_encryption_key_versions, as: 'controlPlaneDiskEncryptionKeyVersions'
|
|
4156
4322
|
property :etcd_api_ca, as: 'etcdApiCa'
|
|
4157
4323
|
property :etcd_peer_ca, as: 'etcdPeerCa'
|
|
4158
4324
|
property :gkeops_etcd_backup_encryption_key, as: 'gkeopsEtcdBackupEncryptionKey'
|
|
@@ -203,6 +203,41 @@ module Google
|
|
|
203
203
|
execute_or_queue_command(command, &block)
|
|
204
204
|
end
|
|
205
205
|
|
|
206
|
+
# CompleteControlPlaneUpgrade completes the rollback-safe upgrade by performing
|
|
207
|
+
# the step two upgrade for a specific cluster.
|
|
208
|
+
# @param [String] name
|
|
209
|
+
# The name (project, location, cluster) of the cluster to complete upgrade.
|
|
210
|
+
# Specified in the format `projects/*/locations/*/clusters/*`.
|
|
211
|
+
# @param [Google::Apis::ContainerV1beta1::CompleteControlPlaneUpgradeRequest] complete_control_plane_upgrade_request_object
|
|
212
|
+
# @param [String] fields
|
|
213
|
+
# Selector specifying which fields to include in a partial response.
|
|
214
|
+
# @param [String] quota_user
|
|
215
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
216
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
217
|
+
# @param [Google::Apis::RequestOptions] options
|
|
218
|
+
# Request-specific options
|
|
219
|
+
#
|
|
220
|
+
# @yield [result, err] Result & error if block supplied
|
|
221
|
+
# @yieldparam result [Google::Apis::ContainerV1beta1::Operation] parsed result object
|
|
222
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
223
|
+
#
|
|
224
|
+
# @return [Google::Apis::ContainerV1beta1::Operation]
|
|
225
|
+
#
|
|
226
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
227
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
228
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
229
|
+
def complete_project_location_cluster_control_plane_upgrade(name, complete_control_plane_upgrade_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
230
|
+
command = make_simple_command(:post, 'v1beta1/{+name}:completeControlPlaneUpgrade', options)
|
|
231
|
+
command.request_representation = Google::Apis::ContainerV1beta1::CompleteControlPlaneUpgradeRequest::Representation
|
|
232
|
+
command.request_object = complete_control_plane_upgrade_request_object
|
|
233
|
+
command.response_representation = Google::Apis::ContainerV1beta1::Operation::Representation
|
|
234
|
+
command.response_class = Google::Apis::ContainerV1beta1::Operation
|
|
235
|
+
command.params['name'] = name unless name.nil?
|
|
236
|
+
command.query['fields'] = fields unless fields.nil?
|
|
237
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
238
|
+
execute_or_queue_command(command, &block)
|
|
239
|
+
end
|
|
240
|
+
|
|
206
241
|
# Completes master IP rotation.
|
|
207
242
|
# @param [String] name
|
|
208
243
|
# The name (project, location, cluster name) of the cluster to complete IP
|
|
@@ -1555,6 +1590,41 @@ module Google
|
|
|
1555
1590
|
execute_or_queue_command(command, &block)
|
|
1556
1591
|
end
|
|
1557
1592
|
|
|
1593
|
+
# CompleteControlPlaneUpgrade completes the rollback-safe upgrade by performing
|
|
1594
|
+
# the step two upgrade for a specific cluster.
|
|
1595
|
+
# @param [String] name
|
|
1596
|
+
# The name (project, location, cluster) of the cluster to complete upgrade.
|
|
1597
|
+
# Specified in the format `projects/*/locations/*/clusters/*`.
|
|
1598
|
+
# @param [Google::Apis::ContainerV1beta1::CompleteControlPlaneUpgradeRequest] complete_control_plane_upgrade_request_object
|
|
1599
|
+
# @param [String] fields
|
|
1600
|
+
# Selector specifying which fields to include in a partial response.
|
|
1601
|
+
# @param [String] quota_user
|
|
1602
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
1603
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1604
|
+
# @param [Google::Apis::RequestOptions] options
|
|
1605
|
+
# Request-specific options
|
|
1606
|
+
#
|
|
1607
|
+
# @yield [result, err] Result & error if block supplied
|
|
1608
|
+
# @yieldparam result [Google::Apis::ContainerV1beta1::Operation] parsed result object
|
|
1609
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
1610
|
+
#
|
|
1611
|
+
# @return [Google::Apis::ContainerV1beta1::Operation]
|
|
1612
|
+
#
|
|
1613
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1614
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1615
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1616
|
+
def complete_project_zone_cluster_control_plane_upgrade(name, complete_control_plane_upgrade_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1617
|
+
command = make_simple_command(:post, 'v1beta1/{+name}:completeControlPlaneUpgrade', options)
|
|
1618
|
+
command.request_representation = Google::Apis::ContainerV1beta1::CompleteControlPlaneUpgradeRequest::Representation
|
|
1619
|
+
command.request_object = complete_control_plane_upgrade_request_object
|
|
1620
|
+
command.response_representation = Google::Apis::ContainerV1beta1::Operation::Representation
|
|
1621
|
+
command.response_class = Google::Apis::ContainerV1beta1::Operation
|
|
1622
|
+
command.params['name'] = name unless name.nil?
|
|
1623
|
+
command.query['fields'] = fields unless fields.nil?
|
|
1624
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1625
|
+
execute_or_queue_command(command, &block)
|
|
1626
|
+
end
|
|
1627
|
+
|
|
1558
1628
|
# Completes master IP rotation.
|
|
1559
1629
|
# @param [String] project_id
|
|
1560
1630
|
# Deprecated. The Google Developers Console [project ID or project number](https:
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-container_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.97.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.97.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|