Skip to content

Commit 4bbb230

Browse files
1 parent cc465a5 commit 4bbb230

90 files changed

Lines changed: 553 additions & 23718 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

‎google-cloud-container-v1beta1/.owlbot-manifest.json‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"proto_docs/README.md",
2626
"proto_docs/google/api/client.rb",
2727
"proto_docs/google/api/field_behavior.rb",
28+
"proto_docs/google/api/field_info.rb",
2829
"proto_docs/google/api/launch_stage.rb",
2930
"proto_docs/google/api/resource.rb",
3031
"proto_docs/google/container/v1beta1/cluster_service.rb",
@@ -36,6 +37,7 @@
3637
"proto_docs/google/rpc/code.rb",
3738
"proto_docs/google/rpc/status.rb",
3839
"proto_docs/google/type/date.rb",
40+
"proto_docs/google/type/timeofday.rb",
3941
"snippets/Gemfile",
4042
"snippets/cluster_manager/cancel_operation.rb",
4143
"snippets/cluster_manager/check_autopilot_compatibility.rb",

‎google-cloud-container-v1beta1/lib/google/cloud/container/v1beta1/cluster_manager/client.rb‎

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,7 @@ def update_cluster request, options = nil
699699
# @param options [::Gapic::CallOptions, ::Hash]
700700
# Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
701701
#
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)
703703
# Pass arguments to `update_node_pool` via keyword arguments. Note that at
704704
# least one keyword argument is required. To specify no parameters, or to keep all
705705
# the default parameter values, pass an empty Hash as a request object (see above).
@@ -840,6 +840,8 @@ def update_cluster request, options = nil
840840
# Consolidation delay defines duration after which the Cluster Autoscaler can
841841
# scale down underutilized nodes. If not set, nodes are scaled down by
842842
# 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.
843845
#
844846
# @yield [response, operation] Access the result along with the RPC operation
845847
# @yieldparam response [::Google::Cloud::Container::V1beta1::Operation]
@@ -4013,7 +4015,7 @@ def fetch_cluster_upgrade_info request, options = nil
40134015
end
40144016

40154017
##
4016-
# Fetch upgrade information of a specific nodepool.
4018+
# Fetch upgrade information of a specific node pool.
40174019
#
40184020
# @overload fetch_node_pool_upgrade_info(request, options = nil)
40194021
# Pass arguments to `fetch_node_pool_upgrade_info` via a request object, either of type
@@ -4031,7 +4033,7 @@ def fetch_cluster_upgrade_info request, options = nil
40314033
# the default parameter values, pass an empty Hash as a request object (see above).
40324034
#
40334035
# @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
40354037
# to get. Specified in the format
40364038
# `projects/*/locations/*/clusters/*/nodePools/*` or
40374039
# `projects/*/zones/*/clusters/*/nodePools/*`.

‎google-cloud-container-v1beta1/lib/google/cloud/container/v1beta1/cluster_manager/credentials.rb‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ module ClusterManager
2626
# Credentials for the ClusterManager API.
2727
class Credentials < ::Google::Auth::Credentials
2828
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"
3032
]
3133
self.env_vars = [
3234
"CONTAINER_CREDENTIALS",

‎google-cloud-container-v1beta1/lib/google/container/v1beta1/cluster_service_pb.rb‎

Lines changed: 24 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎google-cloud-container-v1beta1/lib/google/container/v1beta1/cluster_service_services_pb.rb‎

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎google-cloud-container-v1beta1/proto_docs/google/api/client.rb‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ module Api
3131
# @!attribute [rw] selective_gapic_generation
3232
# @return [::Google::Api::SelectiveGapicGeneration]
3333
# Configuration for which RPCs should be generated in the GAPIC client.
34+
#
35+
# Note: This field should not be used in most cases.
3436
class CommonLanguageSettings
3537
include ::Google::Protobuf::MessageExts
3638
extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -441,6 +443,8 @@ class LongRunning
441443

442444
# This message is used to configure the generation of a subset of the RPCs in
443445
# a service for client libraries.
446+
#
447+
# Note: This feature should not be used in most cases.
444448
# @!attribute [rw] methods
445449
# @return [::Array<::String>]
446450
# An allowlist of the fully qualified names of RPCs that should be included
File renamed without changes.

0 commit comments

Comments
 (0)