Skip to content

Commit d83775a

Browse files
feat: [Container] add confidential instance type and hyperdisk support to GKE API (googleapis#9185)
* feat: add confidential instance type and hyperdisk support to GKE API feat: add private endpoint enforcement for master authorized networks feat: add swap memory configuration for node pools feat: add custom node initialization and kernel module loading policy feat: add accurate time synchronization (PTP-KVM) support feat: add advanced Kubelet configurations including image GC and parallel pulls feat: add Topology Manager and Memory Manager configurations feat: add node management features (Slurm, readiness, creation, taints) feat: add cluster disruption budgets and maintenance window configurations feat: add security and observability enhancements (secret sync, OTel, ML diagnostics) feat: add GPU Direct and network performance configuration options feat: update authentication rules with canonical scopes for ClusterManager docs: various documentation improvements PiperOrigin-RevId: 914473416 Source-Link: googleapis/googleapis@a0cedfb Source-Link: https://github.com/googleapis/googleapis-gen/commit/724eb8212370b68017eac927e072829070d5fbc6 Copy-Tag: eyJwIjoiQ29udGFpbmVyLy5Pd2xCb3QueWFtbCIsImgiOiI3MjRlYjgyMTIzNzBiNjgwMTdlYWM5MjdlMDcyODI5MDcwZDVmYmM2In0= * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 6cf66f2 commit d83775a

59 files changed

Lines changed: 3882 additions & 143 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.

Container/metadata/V1/ClusterService.php

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

Container/samples/V1/ClusterManagerClient/fetch_node_pool_upgrade_info.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
use Google\Cloud\Container\V1\NodePoolUpgradeInfo;
3030

3131
/**
32-
* Fetch upgrade information of a specific nodepool.
32+
* Fetch upgrade information of a specific node pool.
3333
*
34-
* @param string $name The name (project, location, cluster, nodepool) of the nodepool
34+
* @param string $name The name (project, location, cluster, node pool) of the node pool
3535
* to get. Specified in the format
3636
* `projects/&#42;/locations/&#42;/clusters/&#42;/nodePools/*` or
3737
* `projects/&#42;/zones/&#42;/clusters/&#42;/nodePools/*`.

Container/src/V1/AdditionalIPRangesConfig/Status.php

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

Container/src/V1/AddonsConfig.php

Lines changed: 132 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Container/src/V1/Autopilot.php

Lines changed: 48 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Container/src/V1/BootDisk.php

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

Container/src/V1/Client/ClusterManagerClient.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,11 @@ final class ClusterManagerClient
157157
private const CODEGEN_NAME = 'gapic';
158158

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

162166
private static function getClientDefaults()
163167
{
@@ -634,7 +638,7 @@ public function fetchClusterUpgradeInfo(
634638
}
635639

636640
/**
637-
* Fetch upgrade information of a specific nodepool.
641+
* Fetch upgrade information of a specific node pool.
638642
*
639643
* The async variant is
640644
* {@see ClusterManagerClient::fetchNodePoolUpgradeInfoAsync()} .

0 commit comments

Comments
 (0)