google-cloud-container-v1 1.14.0 → 1.15.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: 64a3ef1b32600c438d8bce0fb9c58707169ad40a13f34e78081758e9a9ca8b10
4
- data.tar.gz: 4a8fdc1e8562a17b884bd11adefd83c63c8dc14750c36b98de15e27a0dc0a57c
3
+ metadata.gz: 7c9625240d9218e3e19beb78557ce27af5566629256b2ae3e0da4ad0e913a104
4
+ data.tar.gz: 3149165ff43252b682ecbc587026d51aea3648943479bb18737324c5eecf671f
5
5
  SHA512:
6
- metadata.gz: 4ecd5d7ea1254295fed42f7fb40e4c1e4950f07ee6971c3ddb5ade8459fa026d6edf48cecd9bc2436171f8e20e868f7362f15d3217f405bcc5e9a13bed83b161
7
- data.tar.gz: 0cd5b3a62e2c1ad57e6d0c7b13bf53572ee6cfdc0e918b5a592d867b6774a54bcf0cb6a76c2a77d55ba456e94849d4aaa9dd3d8e8b3b240b2a05b84585a642f9
6
+ metadata.gz: f14b286bbf0bfbac7d16b448973b964bfb7d564b9f265c0beeb0e2ba93df5c9ce6d7355c2a0e36060e7c26ac812c134993f33966057114965ddcd9edf29014ea
7
+ data.tar.gz: 7a2011e79495c12183a530cb5ba8b69ab801c6726ad09ed550f824ce9a6d2669ef878b9c8ea93177ab6d522ba975c732190930917c04dd6f465cd52fe7e05282
@@ -689,7 +689,7 @@ module Google
689
689
  # @param options [::Gapic::CallOptions, ::Hash]
690
690
  # Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
691
691
  #
692
- # @overload update_node_pool(project_id: nil, zone: nil, cluster_id: nil, node_pool_id: nil, node_version: nil, image_type: nil, name: nil, locations: nil, workload_metadata_config: 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)
692
+ # @overload update_node_pool(project_id: nil, zone: nil, cluster_id: nil, node_pool_id: nil, node_version: nil, image_type: nil, name: nil, locations: nil, workload_metadata_config: 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)
693
693
  # Pass arguments to `update_node_pool` via keyword arguments. Note that at
694
694
  # least one keyword argument is required. To specify no parameters, or to keep all
695
695
  # the default parameter values, pass an empty Hash as a request object (see above).
@@ -833,6 +833,8 @@ module Google
833
833
  # Consolidation delay defines duration after which the Cluster Autoscaler can
834
834
  # scale down underutilized nodes. If not set, nodes are scaled down by
835
835
  # default behavior, i.e. according to the chosen autoscaling profile.
836
+ # @param taint_config [::Google::Cloud::Container::V1::TaintConfig, ::Hash]
837
+ # The taint configuration for the node pool.
836
838
  #
837
839
  # @yield [response, operation] Access the result along with the RPC operation
838
840
  # @yieldparam response [::Google::Cloud::Container::V1::Operation]
@@ -3920,7 +3922,7 @@ module Google
3920
3922
  end
3921
3923
 
3922
3924
  ##
3923
- # Fetch upgrade information of a specific nodepool.
3925
+ # Fetch upgrade information of a specific node pool.
3924
3926
  #
3925
3927
  # @overload fetch_node_pool_upgrade_info(request, options = nil)
3926
3928
  # Pass arguments to `fetch_node_pool_upgrade_info` via a request object, either of type
@@ -3938,7 +3940,7 @@ module Google
3938
3940
  # the default parameter values, pass an empty Hash as a request object (see above).
3939
3941
  #
3940
3942
  # @param name [::String]
3941
- # Required. The name (project, location, cluster, nodepool) of the nodepool
3943
+ # Required. The name (project, location, cluster, node pool) of the node pool
3942
3944
  # to get. Specified in the format
3943
3945
  # `projects/*/locations/*/clusters/*/nodePools/*` or
3944
3946
  # `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",
@@ -654,7 +654,7 @@ module Google
654
654
  # @param options [::Gapic::CallOptions, ::Hash]
655
655
  # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
656
656
  #
657
- # @overload update_node_pool(project_id: nil, zone: nil, cluster_id: nil, node_pool_id: nil, node_version: nil, image_type: nil, name: nil, locations: nil, workload_metadata_config: 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)
657
+ # @overload update_node_pool(project_id: nil, zone: nil, cluster_id: nil, node_pool_id: nil, node_version: nil, image_type: nil, name: nil, locations: nil, workload_metadata_config: 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)
658
658
  # Pass arguments to `update_node_pool` via keyword arguments. Note that at
659
659
  # least one keyword argument is required. To specify no parameters, or to keep all
660
660
  # the default parameter values, pass an empty Hash as a request object (see above).
@@ -798,6 +798,8 @@ module Google
798
798
  # Consolidation delay defines duration after which the Cluster Autoscaler can
799
799
  # scale down underutilized nodes. If not set, nodes are scaled down by
800
800
  # default behavior, i.e. according to the chosen autoscaling profile.
801
+ # @param taint_config [::Google::Cloud::Container::V1::TaintConfig, ::Hash]
802
+ # The taint configuration for the node pool.
801
803
  # @yield [result, operation] Access the result along with the TransportOperation object
802
804
  # @yieldparam result [::Google::Cloud::Container::V1::Operation]
803
805
  # @yieldparam operation [::Gapic::Rest::TransportOperation]
@@ -3666,7 +3668,7 @@ module Google
3666
3668
  end
3667
3669
 
3668
3670
  ##
3669
- # Fetch upgrade information of a specific nodepool.
3671
+ # Fetch upgrade information of a specific node pool.
3670
3672
  #
3671
3673
  # @overload fetch_node_pool_upgrade_info(request, options = nil)
3672
3674
  # Pass arguments to `fetch_node_pool_upgrade_info` via a request object, either of type
@@ -3684,7 +3686,7 @@ module Google
3684
3686
  # the default parameter values, pass an empty Hash as a request object (see above).
3685
3687
  #
3686
3688
  # @param name [::String]
3687
- # Required. The name (project, location, cluster, nodepool) of the nodepool
3689
+ # Required. The name (project, location, cluster, node pool) of the node pool
3688
3690
  # to get. Specified in the format
3689
3691
  # `projects/*/locations/*/clusters/*/nodePools/*` or
3690
3692
  # `projects/*/zones/*/clusters/*/nodePools/*`.
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Container
23
23
  module V1
24
- VERSION = "1.14.0"
24
+ VERSION = "1.15.0"
25
25
  end
26
26
  end
27
27
  end