google-cloud-container-v1beta1 0.54.0 → 0.55.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: 3d6bd2ad5283cb45284a9fc34e45ea5aa19af087293cb77072474db3da1a51c9
4
- data.tar.gz: e66b1037a4cd0c7dd0d49daf0433f931cf2564c90a9e60539f65b9ae6d837bf2
3
+ metadata.gz: 755773ec2f4fdef320666c4d031e31273f2772b5e11f2cf87331c1671732f844
4
+ data.tar.gz: 9c41a5e7ce6167f857ea0ea807d9505c449d2f370492eb39093a9c68f5262b65
5
5
  SHA512:
6
- metadata.gz: 52db747051dbbf9f7ebb471f37c2e5286df726344380aeb28768423ffcea602877aa7be680daf687155e3b9d8c6eb17f7722fb169417ca29ee12f7ad5cf0bb9b
7
- data.tar.gz: ff8275b066303721c4edccc004289618e9293bfbf1c051e45726207b875dd2d4fc42604b0d4e28224a9924d3235e04773f8e1f6ae5e2821aa26a1102bd2fcd42
6
+ metadata.gz: 8c9eb6a8ffc6366b54045cfabacf9b578bbc6796322699d27894c0d6ba6c7071ef06a5a26ca4e0fab777b4080081ecefff9b8bea0758b7de6aa51494c0c6080d
7
+ data.tar.gz: 812fcc551989de9d147849ca2fba398732ade42913134f950f188dabdda08dad66a2df2d6fc0c97b32ece078be62702a9906e1f545ffb698e2a11f3aba68776b
@@ -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, 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).
@@ -840,6 +840,8 @@ module Google
840
840
  # Consolidation delay defines duration after which the Cluster Autoscaler can
841
841
  # scale down underutilized nodes. If not set, nodes are scaled down by
842
842
  # default behavior, i.e. according to the chosen autoscaling profile.
843
+ # @param taint_config [::Google::Cloud::Container::V1beta1::TaintConfig, ::Hash]
844
+ # The taint configuration for the node pool.
843
845
  #
844
846
  # @yield [response, operation] Access the result along with the RPC operation
845
847
  # @yieldparam response [::Google::Cloud::Container::V1beta1::Operation]
@@ -4013,7 +4015,7 @@ module Google
4013
4015
  end
4014
4016
 
4015
4017
  ##
4016
- # Fetch upgrade information of a specific nodepool.
4018
+ # Fetch upgrade information of a specific node pool.
4017
4019
  #
4018
4020
  # @overload fetch_node_pool_upgrade_info(request, options = nil)
4019
4021
  # Pass arguments to `fetch_node_pool_upgrade_info` via a request object, either of type
@@ -4031,7 +4033,7 @@ module Google
4031
4033
  # the default parameter values, pass an empty Hash as a request object (see above).
4032
4034
  #
4033
4035
  # @param name [::String]
4034
- # Required. The name (project, location, cluster, nodepool) of the nodepool
4036
+ # Required. The name (project, location, cluster, node pool) of the node pool
4035
4037
  # to get. Specified in the format
4036
4038
  # `projects/*/locations/*/clusters/*/nodePools/*` or
4037
4039
  # `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",
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Container
23
23
  module V1beta1
24
- VERSION = "0.54.0"
24
+ VERSION = "0.55.0"
25
25
  end
26
26
  end
27
27
  end