-
Notifications
You must be signed in to change notification settings - Fork 367
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support to modify kubelet pod pid limit in node system conf…
…iguration feat: support spot VM feat: support Tier 1 bandwidth feat: update support for node pool labels, taints and network tags feat: add Binauthz Evaluation mode support to GKE Classic feat: add GKE Identity Service feat: add network tags to autopilot cluster feat: support enabling Confidential Nodes in the node pool feat: support node pool blue-green upgrade feat: add Location Policy API feat: support GPU timesharing feat: add managed prometheus feature PiperOrigin-RevId: 458323987 Source-Link: googleapis/googleapis@c51f2ed Source-Link: googleapis/googleapis-gen@45233cb Copy-Tag: eyJwIjoiYXBpcy9Hb29nbGUuQ2xvdWQuQ29udGFpbmVyLlYxLy5Pd2xCb3QueWFtbCIsImgiOiI0NTIzM2NiZTZjNTFmMmNmNTY2ZTVkNWY1ZTYzMTI5YzdmODlmM2VkIn0=
- Loading branch information
1 parent
27b3c67
commit 33a4b1d
Showing
13 changed files
with
6,351 additions
and
1,539 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
...eratedSnippets/ClusterManagerClient.CompleteNodePoolUpgradeRequestObjectAsyncSnippet.g.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// Copyright 2022 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// Generated code. DO NOT EDIT! | ||
|
||
namespace Google.Cloud.Container.V1.Snippets | ||
{ | ||
// [START container_v1_generated_ClusterManager_CompleteNodePoolUpgrade_async] | ||
using Google.Cloud.Container.V1; | ||
using System.Threading.Tasks; | ||
|
||
public sealed partial class GeneratedClusterManagerClientSnippets | ||
{ | ||
/// <summary>Snippet for CompleteNodePoolUpgradeAsync</summary> | ||
/// <remarks> | ||
/// This snippet has been automatically generated for illustrative purposes only. | ||
/// It may require modifications to work in your environment. | ||
/// </remarks> | ||
public async Task CompleteNodePoolUpgradeRequestObjectAsync() | ||
{ | ||
// Create client | ||
ClusterManagerClient clusterManagerClient = await ClusterManagerClient.CreateAsync(); | ||
// Initialize request argument(s) | ||
CompleteNodePoolUpgradeRequest request = new CompleteNodePoolUpgradeRequest { Name = "", }; | ||
// Make the request | ||
await clusterManagerClient.CompleteNodePoolUpgradeAsync(request); | ||
} | ||
} | ||
// [END container_v1_generated_ClusterManager_CompleteNodePoolUpgrade_async] | ||
} |
40 changes: 40 additions & 0 deletions
40
...1.GeneratedSnippets/ClusterManagerClient.CompleteNodePoolUpgradeRequestObjectSnippet.g.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// Copyright 2022 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// Generated code. DO NOT EDIT! | ||
|
||
namespace Google.Cloud.Container.V1.Snippets | ||
{ | ||
// [START container_v1_generated_ClusterManager_CompleteNodePoolUpgrade_sync] | ||
using Google.Cloud.Container.V1; | ||
|
||
public sealed partial class GeneratedClusterManagerClientSnippets | ||
{ | ||
/// <summary>Snippet for CompleteNodePoolUpgrade</summary> | ||
/// <remarks> | ||
/// This snippet has been automatically generated for illustrative purposes only. | ||
/// It may require modifications to work in your environment. | ||
/// </remarks> | ||
public void CompleteNodePoolUpgradeRequestObject() | ||
{ | ||
// Create client | ||
ClusterManagerClient clusterManagerClient = ClusterManagerClient.Create(); | ||
// Initialize request argument(s) | ||
CompleteNodePoolUpgradeRequest request = new CompleteNodePoolUpgradeRequest { Name = "", }; | ||
// Make the request | ||
clusterManagerClient.CompleteNodePoolUpgrade(request); | ||
} | ||
} | ||
// [END container_v1_generated_ClusterManager_CompleteNodePoolUpgrade_sync] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.