|
| 1 | +// Copyright 2022 Google LLC |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// https://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | + |
| 15 | +// Generated code. DO NOT EDIT! |
| 16 | + |
| 17 | +namespace Google.Cloud.Notebooks.V1.Snippets |
| 18 | +{ |
| 19 | + // [START notebooks_v1_generated_ManagedNotebookService_RefreshRuntimeTokenInternal_async] |
| 20 | + using Google.Cloud.Notebooks.V1; |
| 21 | + using System.Threading.Tasks; |
| 22 | + |
| 23 | + public sealed partial class GeneratedManagedNotebookServiceClientSnippets |
| 24 | + { |
| 25 | + /// <summary>Snippet for RefreshRuntimeTokenInternalAsync</summary> |
| 26 | + /// <remarks> |
| 27 | + /// This snippet has been automatically generated for illustrative purposes only. |
| 28 | + /// It may require modifications to work in your environment. |
| 29 | + /// </remarks> |
| 30 | + public async Task RefreshRuntimeTokenInternalRequestObjectAsync() |
| 31 | + { |
| 32 | + // Create client |
| 33 | + ManagedNotebookServiceClient managedNotebookServiceClient = await ManagedNotebookServiceClient.CreateAsync(); |
| 34 | + // Initialize request argument(s) |
| 35 | + RefreshRuntimeTokenInternalRequest request = new RefreshRuntimeTokenInternalRequest |
| 36 | + { |
| 37 | + RuntimeName = RuntimeName.FromProjectLocationRuntime("[PROJECT]", "[LOCATION]", "[RUNTIME]"), |
| 38 | + VmId = "", |
| 39 | + }; |
| 40 | + // Make the request |
| 41 | + RefreshRuntimeTokenInternalResponse response = await managedNotebookServiceClient.RefreshRuntimeTokenInternalAsync(request); |
| 42 | + } |
| 43 | + } |
| 44 | + // [END notebooks_v1_generated_ManagedNotebookService_RefreshRuntimeTokenInternal_async] |
| 45 | +} |
0 commit comments