google-apis-container_v1 0.103.0 → 0.104.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6489391d147638e8737b7557c36f5befeb8ec8373c6e4749d697fda911ccdf8a
|
4
|
+
data.tar.gz: 38eb5e79f6001564f18e305f1e6b25ba8dba78230ca731ae0c1c6ff6a1d9043f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 39dd42150276f66e6ff167272d16fe79d0768b5848434c794fb9f40d43f5511d5e93f261e34edcc4eb77a0a74b158148cfac1db05085e905da19d44d54860803
|
7
|
+
data.tar.gz: 5e7fc46202ee92bb95bf18282ced48bd321e517492060876eab00d9f970b6f4aa00a92d5ca2ee0a40c8141ddc24c95d6730cebd4f74b935d604d696eda1a90da
|
data/CHANGELOG.md
CHANGED
@@ -216,7 +216,7 @@ module Google
|
|
216
216
|
# @return [Google::Apis::ContainerV1::GcePersistentDiskCsiDriverConfig]
|
217
217
|
attr_accessor :gce_persistent_disk_csi_driver_config
|
218
218
|
|
219
|
-
# Configuration for the
|
219
|
+
# Configuration for the Filestore CSI driver.
|
220
220
|
# Corresponds to the JSON property `gcpFilestoreCsiDriverConfig`
|
221
221
|
# @return [Google::Apis::ContainerV1::GcpFilestoreCsiDriverConfig]
|
222
222
|
attr_accessor :gcp_filestore_csi_driver_config
|
@@ -724,6 +724,27 @@ module Google
|
|
724
724
|
end
|
725
725
|
end
|
726
726
|
|
727
|
+
# Autoscaled rollout policy utilizes the cluster autoscaler during blue-green
|
728
|
+
# upgrade to scale both the blue and green pools.
|
729
|
+
class AutoscaledRolloutPolicy
|
730
|
+
include Google::Apis::Core::Hashable
|
731
|
+
|
732
|
+
# Optional. Time to wait after cordoning the blue pool before draining the nodes.
|
733
|
+
# Defaults to 3 days. The value can be set between 0 and 7 days, inclusive.
|
734
|
+
# Corresponds to the JSON property `waitForDrainDuration`
|
735
|
+
# @return [String]
|
736
|
+
attr_accessor :wait_for_drain_duration
|
737
|
+
|
738
|
+
def initialize(**args)
|
739
|
+
update!(**args)
|
740
|
+
end
|
741
|
+
|
742
|
+
# Update properties of this object
|
743
|
+
def update!(**args)
|
744
|
+
@wait_for_drain_duration = args[:wait_for_drain_duration] if args.key?(:wait_for_drain_duration)
|
745
|
+
end
|
746
|
+
end
|
747
|
+
|
727
748
|
# Best effort provisioning.
|
728
749
|
class BestEffortProvisioning
|
729
750
|
include Google::Apis::Core::Hashable
|
@@ -852,6 +873,12 @@ module Google
|
|
852
873
|
class BlueGreenSettings
|
853
874
|
include Google::Apis::Core::Hashable
|
854
875
|
|
876
|
+
# Autoscaled rollout policy utilizes the cluster autoscaler during blue-green
|
877
|
+
# upgrade to scale both the blue and green pools.
|
878
|
+
# Corresponds to the JSON property `autoscaledRolloutPolicy`
|
879
|
+
# @return [Google::Apis::ContainerV1::AutoscaledRolloutPolicy]
|
880
|
+
attr_accessor :autoscaled_rollout_policy
|
881
|
+
|
855
882
|
# Time needed after draining entire blue pool. After this period, blue pool will
|
856
883
|
# be cleaned up.
|
857
884
|
# Corresponds to the JSON property `nodePoolSoakDuration`
|
@@ -869,6 +896,7 @@ module Google
|
|
869
896
|
|
870
897
|
# Update properties of this object
|
871
898
|
def update!(**args)
|
899
|
+
@autoscaled_rollout_policy = args[:autoscaled_rollout_policy] if args.key?(:autoscaled_rollout_policy)
|
872
900
|
@node_pool_soak_duration = args[:node_pool_soak_duration] if args.key?(:node_pool_soak_duration)
|
873
901
|
@standard_rollout_policy = args[:standard_rollout_policy] if args.key?(:standard_rollout_policy)
|
874
902
|
end
|
@@ -1234,7 +1262,8 @@ module Google
|
|
1234
1262
|
# @return [String]
|
1235
1263
|
attr_accessor :endpoint
|
1236
1264
|
|
1237
|
-
# EnterpriseConfig is the cluster enterprise configuration.
|
1265
|
+
# EnterpriseConfig is the cluster enterprise configuration. Deprecated: GKE
|
1266
|
+
# Enterprise features are now available without an Enterprise tier.
|
1238
1267
|
# Corresponds to the JSON property `enterpriseConfig`
|
1239
1268
|
# @return [Google::Apis::ContainerV1::EnterpriseConfig]
|
1240
1269
|
attr_accessor :enterprise_config
|
@@ -1585,7 +1614,7 @@ module Google
|
|
1585
1614
|
# @return [Google::Apis::ContainerV1::VerticalPodAutoscaling]
|
1586
1615
|
attr_accessor :vertical_pod_autoscaling
|
1587
1616
|
|
1588
|
-
# Configuration for the use of Kubernetes Service Accounts in
|
1617
|
+
# Configuration for the use of Kubernetes Service Accounts in IAM policies.
|
1589
1618
|
# Corresponds to the JSON property `workloadIdentityConfig`
|
1590
1619
|
# @return [Google::Apis::ContainerV1::WorkloadIdentityConfig]
|
1591
1620
|
attr_accessor :workload_identity_config
|
@@ -1900,6 +1929,8 @@ module Google
|
|
1900
1929
|
alias_method :desired_enable_private_endpoint?, :desired_enable_private_endpoint
|
1901
1930
|
|
1902
1931
|
# DesiredEnterpriseConfig is a wrapper used for updating enterprise_config.
|
1932
|
+
# Deprecated: GKE Enterprise features are now available without an Enterprise
|
1933
|
+
# tier.
|
1903
1934
|
# Corresponds to the JSON property `desiredEnterpriseConfig`
|
1904
1935
|
# @return [Google::Apis::ContainerV1::DesiredEnterpriseConfig]
|
1905
1936
|
attr_accessor :desired_enterprise_config
|
@@ -2177,7 +2208,7 @@ module Google
|
|
2177
2208
|
# @return [Google::Apis::ContainerV1::VerticalPodAutoscaling]
|
2178
2209
|
attr_accessor :desired_vertical_pod_autoscaling
|
2179
2210
|
|
2180
|
-
# Configuration for the use of Kubernetes Service Accounts in
|
2211
|
+
# Configuration for the use of Kubernetes Service Accounts in IAM policies.
|
2181
2212
|
# Corresponds to the JSON property `desiredWorkloadIdentityConfig`
|
2182
2213
|
# @return [Google::Apis::ContainerV1::WorkloadIdentityConfig]
|
2183
2214
|
attr_accessor :desired_workload_identity_config
|
@@ -2726,13 +2757,25 @@ module Google
|
|
2726
2757
|
class DnsEndpointConfig
|
2727
2758
|
include Google::Apis::Core::Hashable
|
2728
2759
|
|
2729
|
-
# Controls whether user traffic is allowed over this endpoint. Note that
|
2760
|
+
# Controls whether user traffic is allowed over this endpoint. Note that Google-
|
2730
2761
|
# managed services may still use the endpoint even if this is false.
|
2731
2762
|
# Corresponds to the JSON property `allowExternalTraffic`
|
2732
2763
|
# @return [Boolean]
|
2733
2764
|
attr_accessor :allow_external_traffic
|
2734
2765
|
alias_method :allow_external_traffic?, :allow_external_traffic
|
2735
2766
|
|
2767
|
+
# Controls whether the k8s certs auth is allowed via DNS.
|
2768
|
+
# Corresponds to the JSON property `enableK8sCertsViaDns`
|
2769
|
+
# @return [Boolean]
|
2770
|
+
attr_accessor :enable_k8s_certs_via_dns
|
2771
|
+
alias_method :enable_k8s_certs_via_dns?, :enable_k8s_certs_via_dns
|
2772
|
+
|
2773
|
+
# Controls whether the k8s token auth is allowed via DNS.
|
2774
|
+
# Corresponds to the JSON property `enableK8sTokensViaDns`
|
2775
|
+
# @return [Boolean]
|
2776
|
+
attr_accessor :enable_k8s_tokens_via_dns
|
2777
|
+
alias_method :enable_k8s_tokens_via_dns?, :enable_k8s_tokens_via_dns
|
2778
|
+
|
2736
2779
|
# Output only. The cluster's DNS endpoint configuration. A DNS format address.
|
2737
2780
|
# This is accessible from the public internet. Ex: uid.us-central1.gke.goog.
|
2738
2781
|
# Always present, but the behavior may change according to the value of
|
@@ -2748,6 +2791,8 @@ module Google
|
|
2748
2791
|
# Update properties of this object
|
2749
2792
|
def update!(**args)
|
2750
2793
|
@allow_external_traffic = args[:allow_external_traffic] if args.key?(:allow_external_traffic)
|
2794
|
+
@enable_k8s_certs_via_dns = args[:enable_k8s_certs_via_dns] if args.key?(:enable_k8s_certs_via_dns)
|
2795
|
+
@enable_k8s_tokens_via_dns = args[:enable_k8s_tokens_via_dns] if args.key?(:enable_k8s_tokens_via_dns)
|
2751
2796
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
2752
2797
|
end
|
2753
2798
|
end
|
@@ -2889,6 +2934,8 @@ module Google
|
|
2889
2934
|
end
|
2890
2935
|
|
2891
2936
|
# DesiredEnterpriseConfig is a wrapper used for updating enterprise_config.
|
2937
|
+
# Deprecated: GKE Enterprise features are now available without an Enterprise
|
2938
|
+
# tier.
|
2892
2939
|
class DesiredEnterpriseConfig
|
2893
2940
|
include Google::Apis::Core::Hashable
|
2894
2941
|
|
@@ -2943,7 +2990,8 @@ module Google
|
|
2943
2990
|
end
|
2944
2991
|
end
|
2945
2992
|
|
2946
|
-
# EnterpriseConfig is the cluster enterprise configuration.
|
2993
|
+
# EnterpriseConfig is the cluster enterprise configuration. Deprecated: GKE
|
2994
|
+
# Enterprise features are now available without an Enterprise tier.
|
2947
2995
|
class EnterpriseConfig
|
2948
2996
|
include Google::Apis::Core::Hashable
|
2949
2997
|
|
@@ -3431,11 +3479,11 @@ module Google
|
|
3431
3479
|
end
|
3432
3480
|
end
|
3433
3481
|
|
3434
|
-
# Configuration for the
|
3482
|
+
# Configuration for the Filestore CSI driver.
|
3435
3483
|
class GcpFilestoreCsiDriverConfig
|
3436
3484
|
include Google::Apis::Core::Hashable
|
3437
3485
|
|
3438
|
-
# Whether the
|
3486
|
+
# Whether the Filestore CSI driver is enabled for this cluster.
|
3439
3487
|
# Corresponds to the JSON property `enabled`
|
3440
3488
|
# @return [Boolean]
|
3441
3489
|
attr_accessor :enabled
|
@@ -7167,7 +7215,7 @@ module Google
|
|
7167
7215
|
end
|
7168
7216
|
end
|
7169
7217
|
|
7170
|
-
# Collection of [
|
7218
|
+
# Collection of [Resource Manager labels](https://`$universe.dns_names.
|
7171
7219
|
# final_documentation_domain`/resource-manager/docs/creating-managing-labels).
|
7172
7220
|
class ResourceLabels
|
7173
7221
|
include Google::Apis::Core::Hashable
|
@@ -8941,7 +8989,7 @@ module Google
|
|
8941
8989
|
# @return [Google::Apis::ContainerV1::QueuedProvisioning]
|
8942
8990
|
attr_accessor :queued_provisioning
|
8943
8991
|
|
8944
|
-
# Collection of [
|
8992
|
+
# Collection of [Resource Manager labels](https://`$universe.dns_names.
|
8945
8993
|
# final_documentation_domain`/resource-manager/docs/creating-managing-labels).
|
8946
8994
|
# Corresponds to the JSON property `resourceLabels`
|
8947
8995
|
# @return [Google::Apis::ContainerV1::ResourceLabels]
|
@@ -9589,7 +9637,7 @@ module Google
|
|
9589
9637
|
end
|
9590
9638
|
end
|
9591
9639
|
|
9592
|
-
# Configuration for the use of Kubernetes Service Accounts in
|
9640
|
+
# Configuration for the use of Kubernetes Service Accounts in IAM policies.
|
9593
9641
|
class WorkloadIdentityConfig
|
9594
9642
|
include Google::Apis::Core::Hashable
|
9595
9643
|
|
@@ -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.104.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 = "20250923"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -124,6 +124,12 @@ module Google
|
|
124
124
|
include Google::Apis::Core::JsonObjectSupport
|
125
125
|
end
|
126
126
|
|
127
|
+
class AutoscaledRolloutPolicy
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
|
+
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
131
|
+
end
|
132
|
+
|
127
133
|
class BestEffortProvisioning
|
128
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
135
|
|
@@ -1480,6 +1486,13 @@ module Google
|
|
1480
1486
|
end
|
1481
1487
|
end
|
1482
1488
|
|
1489
|
+
class AutoscaledRolloutPolicy
|
1490
|
+
# @private
|
1491
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1492
|
+
property :wait_for_drain_duration, as: 'waitForDrainDuration'
|
1493
|
+
end
|
1494
|
+
end
|
1495
|
+
|
1483
1496
|
class BestEffortProvisioning
|
1484
1497
|
# @private
|
1485
1498
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1517,6 +1530,8 @@ module Google
|
|
1517
1530
|
class BlueGreenSettings
|
1518
1531
|
# @private
|
1519
1532
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1533
|
+
property :autoscaled_rollout_policy, as: 'autoscaledRolloutPolicy', class: Google::Apis::ContainerV1::AutoscaledRolloutPolicy, decorator: Google::Apis::ContainerV1::AutoscaledRolloutPolicy::Representation
|
1534
|
+
|
1520
1535
|
property :node_pool_soak_duration, as: 'nodePoolSoakDuration'
|
1521
1536
|
property :standard_rollout_policy, as: 'standardRolloutPolicy', class: Google::Apis::ContainerV1::StandardRolloutPolicy, decorator: Google::Apis::ContainerV1::StandardRolloutPolicy::Representation
|
1522
1537
|
|
@@ -2000,6 +2015,8 @@ module Google
|
|
2000
2015
|
# @private
|
2001
2016
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2002
2017
|
property :allow_external_traffic, as: 'allowExternalTraffic'
|
2018
|
+
property :enable_k8s_certs_via_dns, as: 'enableK8sCertsViaDns'
|
2019
|
+
property :enable_k8s_tokens_via_dns, as: 'enableK8sTokensViaDns'
|
2003
2020
|
property :endpoint, as: 'endpoint'
|
2004
2021
|
end
|
2005
2022
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.104.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_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.104.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|