google-cloud-container-v1beta1 0.54.0 → 0.56.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/lib/google/cloud/container/v1beta1/cluster_manager/client.rb +11 -3
- data/lib/google/cloud/container/v1beta1/cluster_manager/credentials.rb +3 -1
- data/lib/google/cloud/container/v1beta1/version.rb +1 -1
- data/lib/google/container/v1beta1/cluster_service_pb.rb +27 -1
- data/lib/google/container/v1beta1/cluster_service_services_pb.rb +1 -1
- data/proto_docs/google/api/client.rb +4 -0
- data/proto_docs/google/api/field_info.rb +88 -0
- data/proto_docs/google/container/v1beta1/cluster_service.rb +558 -45
- data/proto_docs/google/type/date.rb +10 -7
- data/proto_docs/google/type/timeofday.rb +49 -0
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '028b5cf54708539d877a102525cd7709ace6959c3510ca5c75229a33375f875a'
|
|
4
|
+
data.tar.gz: 5956550eff1c8ec4ddcea718aa410a3dd70f9bf75c7f7d555e49b9e85eacfdfa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6a470a21a7638f9be07b5863880b60d1b7b6624e149e97cd4b08a835dcbedfc9094a3f028f14c74a0812d174fd4ec2ae14702d2c0cf9439f320f1f5a2061849f
|
|
7
|
+
data.tar.gz: 210d0d26069a4681cc752be073ab5de0ac850b8c91c3d39040a1a840cc6115487844e195cb6540693af6f6c68123d54da7fe0e969edf738f79a99a39c35e032f
|
|
@@ -699,7 +699,7 @@ module Google
|
|
|
699
699
|
# @param options [::Gapic::CallOptions, ::Hash]
|
|
700
700
|
# Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
|
|
701
701
|
#
|
|
702
|
-
# @overload update_node_pool(project_id: nil, zone: nil, cluster_id: nil, node_pool_id: nil, node_version: nil, image_type: nil, locations: nil, workload_metadata_config: nil, name: nil, upgrade_settings: nil, tags: nil, taints: nil, labels: nil, linux_node_config: nil, kubelet_config: nil, node_network_config: nil, gcfs_config: nil, confidential_nodes: nil, gvnic: nil, etag: nil, fast_socket: nil, logging_config: nil, resource_labels: nil, windows_node_config: nil, accelerators: nil, machine_type: nil, disk_type: nil, disk_size_gb: nil, resource_manager_tags: nil, containerd_config: nil, queued_provisioning: nil, storage_pools: nil, max_run_duration: nil, flex_start: nil, boot_disk: nil, node_drain_config: nil, consolidation_delay: nil)
|
|
702
|
+
# @overload update_node_pool(project_id: nil, zone: nil, cluster_id: nil, node_pool_id: nil, node_version: nil, image_type: nil, image: nil, image_project: nil, locations: nil, workload_metadata_config: nil, name: nil, upgrade_settings: nil, tags: nil, taints: nil, labels: nil, linux_node_config: nil, kubelet_config: nil, node_network_config: nil, gcfs_config: nil, confidential_nodes: nil, gvnic: nil, etag: nil, fast_socket: nil, logging_config: nil, resource_labels: nil, windows_node_config: nil, accelerators: nil, machine_type: nil, disk_type: nil, disk_size_gb: nil, resource_manager_tags: nil, containerd_config: nil, queued_provisioning: nil, storage_pools: nil, max_run_duration: nil, flex_start: nil, boot_disk: nil, node_drain_config: nil, consolidation_delay: nil, taint_config: nil)
|
|
703
703
|
# Pass arguments to `update_node_pool` via keyword arguments. Note that at
|
|
704
704
|
# least one keyword argument is required. To specify no parameters, or to keep all
|
|
705
705
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
|
@@ -735,6 +735,12 @@ module Google
|
|
|
735
735
|
# Required. The desired image type for the node pool. Please see
|
|
736
736
|
# https://cloud.google.com/kubernetes-engine/docs/concepts/node-images
|
|
737
737
|
# for available image types.
|
|
738
|
+
# @param image [::String]
|
|
739
|
+
# The desired name of the image name to use for this node.
|
|
740
|
+
# This is used to create clusters using a custom image.
|
|
741
|
+
# @param image_project [::String]
|
|
742
|
+
# The project containing the desired image to use for this node pool.
|
|
743
|
+
# This is used to create clusters using a custom image.
|
|
738
744
|
# @param locations [::Array<::String>]
|
|
739
745
|
# The desired list of Google Compute Engine
|
|
740
746
|
# [zones](https://cloud.google.com/compute/docs/zones#available)
|
|
@@ -840,6 +846,8 @@ module Google
|
|
|
840
846
|
# Consolidation delay defines duration after which the Cluster Autoscaler can
|
|
841
847
|
# scale down underutilized nodes. If not set, nodes are scaled down by
|
|
842
848
|
# default behavior, i.e. according to the chosen autoscaling profile.
|
|
849
|
+
# @param taint_config [::Google::Cloud::Container::V1beta1::TaintConfig, ::Hash]
|
|
850
|
+
# The taint configuration for the node pool.
|
|
843
851
|
#
|
|
844
852
|
# @yield [response, operation] Access the result along with the RPC operation
|
|
845
853
|
# @yieldparam response [::Google::Cloud::Container::V1beta1::Operation]
|
|
@@ -4013,7 +4021,7 @@ module Google
|
|
|
4013
4021
|
end
|
|
4014
4022
|
|
|
4015
4023
|
##
|
|
4016
|
-
# Fetch upgrade information of a specific
|
|
4024
|
+
# Fetch upgrade information of a specific node pool.
|
|
4017
4025
|
#
|
|
4018
4026
|
# @overload fetch_node_pool_upgrade_info(request, options = nil)
|
|
4019
4027
|
# Pass arguments to `fetch_node_pool_upgrade_info` via a request object, either of type
|
|
@@ -4031,7 +4039,7 @@ module Google
|
|
|
4031
4039
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
|
4032
4040
|
#
|
|
4033
4041
|
# @param name [::String]
|
|
4034
|
-
# Required. The name (project, location, cluster,
|
|
4042
|
+
# Required. The name (project, location, cluster, node pool) of the node pool
|
|
4035
4043
|
# to get. Specified in the format
|
|
4036
4044
|
# `projects/*/locations/*/clusters/*/nodePools/*` or
|
|
4037
4045
|
# `projects/*/zones/*/clusters/*/nodePools/*`.
|
|
@@ -26,7 +26,9 @@ module Google
|
|
|
26
26
|
# Credentials for the ClusterManager API.
|
|
27
27
|
class Credentials < ::Google::Auth::Credentials
|
|
28
28
|
self.scope = [
|
|
29
|
-
"https://www.googleapis.com/auth/cloud-platform"
|
|
29
|
+
"https://www.googleapis.com/auth/cloud-platform",
|
|
30
|
+
"https://www.googleapis.com/auth/container",
|
|
31
|
+
"https://www.googleapis.com/auth/container.read-only"
|
|
30
32
|
]
|
|
31
33
|
self.env_vars = [
|
|
32
34
|
"CONTAINER_CREDENTIALS",
|