Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Container/metadata/V1/ClusterService.php

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
use Google\Cloud\Container\V1\NodePoolUpgradeInfo;

/**
* Fetch upgrade information of a specific nodepool.
* Fetch upgrade information of a specific node pool.
*
* @param string $name The name (project, location, cluster, nodepool) of the nodepool
* @param string $name The name (project, location, cluster, node pool) of the node pool
* to get. Specified in the format
* `projects/*/locations/*/clusters/*/nodePools/*` or
* `projects/*/zones/*/clusters/*/nodePools/*`.
Expand Down
2 changes: 1 addition & 1 deletion Container/src/V1/AdditionalIPRangesConfig/Status.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

132 changes: 132 additions & 0 deletions Container/src/V1/AddonsConfig.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 48 additions & 0 deletions Container/src/V1/Autopilot.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Container/src/V1/BootDisk.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions Container/src/V1/Client/ClusterManagerClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,11 @@ final class ClusterManagerClient
private const CODEGEN_NAME = 'gapic';

/** The default scopes required by the service. */
public static $serviceScopes = ['https://www.googleapis.com/auth/cloud-platform'];
public static $serviceScopes = [
'https://www.googleapis.com/auth/cloud-platform',
'https://www.googleapis.com/auth/container',
'https://www.googleapis.com/auth/container.read-only',
];

private static function getClientDefaults()
{
Expand Down Expand Up @@ -634,7 +638,7 @@ public function fetchClusterUpgradeInfo(
}

/**
* Fetch upgrade information of a specific nodepool.
* Fetch upgrade information of a specific node pool.
*
* The async variant is
* {@see ClusterManagerClient::fetchNodePoolUpgradeInfoAsync()} .
Expand Down
Loading
Loading