Skip to content

Commit bfb3a24

Browse files
gcf-owl-bot[bot]jskeet
authored andcommitted
feat: Update Notebooks API for clients libraries
PiperOrigin-RevId: 442854284 Source-Link: googleapis/googleapis@38b542a Source-Link: googleapis/googleapis-gen@048bf8e Copy-Tag: eyJwIjoiYXBpcy9Hb29nbGUuQ2xvdWQuTm90ZWJvb2tzLlYxLy5Pd2xCb3QueWFtbCIsImgiOiIwNDhiZjhlZWU4ODJhMzJmZGIyNTBlM2FhMjFmZjgzYmRkZTAyNmNjIn0=
1 parent 52734a8 commit bfb3a24

File tree

45 files changed

+4636
-714
lines changed

Some content is hidden

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

45 files changed

+4636
-714
lines changed

apis/Google.Cloud.Notebooks.V1/Google.Cloud.Notebooks.V1.GeneratedSnippets/ManagedNotebookServiceClient.CreateRuntimeRequestObjectAsyncSnippet.g.cs

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ public async Task CreateRuntimeRequestObjectAsync()
3838
ParentAsRuntimeName = RuntimeName.FromProjectLocationRuntime("[PROJECT]", "[LOCATION]", "[RUNTIME]"),
3939
RuntimeId = "",
4040
Runtime = new Runtime(),
41+
RequestId = "",
4142
};
4243
// Make the request
4344
Operation<Runtime, OperationMetadata> response = await managedNotebookServiceClient.CreateRuntimeAsync(request);

apis/Google.Cloud.Notebooks.V1/Google.Cloud.Notebooks.V1.GeneratedSnippets/ManagedNotebookServiceClient.CreateRuntimeRequestObjectSnippet.g.cs

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ public void CreateRuntimeRequestObject()
3737
ParentAsRuntimeName = RuntimeName.FromProjectLocationRuntime("[PROJECT]", "[LOCATION]", "[RUNTIME]"),
3838
RuntimeId = "",
3939
Runtime = new Runtime(),
40+
RequestId = "",
4041
};
4142
// Make the request
4243
Operation<Runtime, OperationMetadata> response = managedNotebookServiceClient.CreateRuntime(request);

apis/Google.Cloud.Notebooks.V1/Google.Cloud.Notebooks.V1.GeneratedSnippets/ManagedNotebookServiceClient.DeleteRuntimeRequestObjectAsyncSnippet.g.cs

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ public async Task DeleteRuntimeRequestObjectAsync()
3737
DeleteRuntimeRequest request = new DeleteRuntimeRequest
3838
{
3939
RuntimeName = RuntimeName.FromProjectLocationRuntime("[PROJECT]", "[LOCATION]", "[RUNTIME]"),
40+
RequestId = "",
4041
};
4142
// Make the request
4243
Operation<Empty, OperationMetadata> response = await managedNotebookServiceClient.DeleteRuntimeAsync(request);

apis/Google.Cloud.Notebooks.V1/Google.Cloud.Notebooks.V1.GeneratedSnippets/ManagedNotebookServiceClient.DeleteRuntimeRequestObjectSnippet.g.cs

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public void DeleteRuntimeRequestObject()
3636
DeleteRuntimeRequest request = new DeleteRuntimeRequest
3737
{
3838
RuntimeName = RuntimeName.FromProjectLocationRuntime("[PROJECT]", "[LOCATION]", "[RUNTIME]"),
39+
RequestId = "",
3940
};
4041
// Make the request
4142
Operation<Empty, OperationMetadata> response = managedNotebookServiceClient.DeleteRuntime(request);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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_flattened]
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 RefreshRuntimeTokenInternalAsync()
31+
{
32+
// Create client
33+
ManagedNotebookServiceClient managedNotebookServiceClient = await ManagedNotebookServiceClient.CreateAsync();
34+
// Initialize request argument(s)
35+
string name = "projects/[PROJECT]/locations/[LOCATION]/runtimes/[RUNTIME]";
36+
string vmId = "";
37+
// Make the request
38+
RefreshRuntimeTokenInternalResponse response = await managedNotebookServiceClient.RefreshRuntimeTokenInternalAsync(name, vmId);
39+
}
40+
}
41+
// [END notebooks_v1_generated_ManagedNotebookService_RefreshRuntimeTokenInternal_async_flattened]
42+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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_sync]
20+
using Google.Cloud.Notebooks.V1;
21+
22+
public sealed partial class GeneratedManagedNotebookServiceClientSnippets
23+
{
24+
/// <summary>Snippet for RefreshRuntimeTokenInternal</summary>
25+
/// <remarks>
26+
/// This snippet has been automatically generated for illustrative purposes only.
27+
/// It may require modifications to work in your environment.
28+
/// </remarks>
29+
public void RefreshRuntimeTokenInternalRequestObject()
30+
{
31+
// Create client
32+
ManagedNotebookServiceClient managedNotebookServiceClient = ManagedNotebookServiceClient.Create();
33+
// Initialize request argument(s)
34+
RefreshRuntimeTokenInternalRequest request = new RefreshRuntimeTokenInternalRequest
35+
{
36+
RuntimeName = RuntimeName.FromProjectLocationRuntime("[PROJECT]", "[LOCATION]", "[RUNTIME]"),
37+
VmId = "",
38+
};
39+
// Make the request
40+
RefreshRuntimeTokenInternalResponse response = managedNotebookServiceClient.RefreshRuntimeTokenInternal(request);
41+
}
42+
}
43+
// [END notebooks_v1_generated_ManagedNotebookService_RefreshRuntimeTokenInternal_sync]
44+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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_flattened_resourceNames]
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 RefreshRuntimeTokenInternalResourceNamesAsync()
31+
{
32+
// Create client
33+
ManagedNotebookServiceClient managedNotebookServiceClient = await ManagedNotebookServiceClient.CreateAsync();
34+
// Initialize request argument(s)
35+
RuntimeName name = RuntimeName.FromProjectLocationRuntime("[PROJECT]", "[LOCATION]", "[RUNTIME]");
36+
string vmId = "";
37+
// Make the request
38+
RefreshRuntimeTokenInternalResponse response = await managedNotebookServiceClient.RefreshRuntimeTokenInternalAsync(name, vmId);
39+
}
40+
}
41+
// [END notebooks_v1_generated_ManagedNotebookService_RefreshRuntimeTokenInternal_async_flattened_resourceNames]
42+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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_sync_flattened_resourceNames]
20+
using Google.Cloud.Notebooks.V1;
21+
22+
public sealed partial class GeneratedManagedNotebookServiceClientSnippets
23+
{
24+
/// <summary>Snippet for RefreshRuntimeTokenInternal</summary>
25+
/// <remarks>
26+
/// This snippet has been automatically generated for illustrative purposes only.
27+
/// It may require modifications to work in your environment.
28+
/// </remarks>
29+
public void RefreshRuntimeTokenInternalResourceNames()
30+
{
31+
// Create client
32+
ManagedNotebookServiceClient managedNotebookServiceClient = ManagedNotebookServiceClient.Create();
33+
// Initialize request argument(s)
34+
RuntimeName name = RuntimeName.FromProjectLocationRuntime("[PROJECT]", "[LOCATION]", "[RUNTIME]");
35+
string vmId = "";
36+
// Make the request
37+
RefreshRuntimeTokenInternalResponse response = managedNotebookServiceClient.RefreshRuntimeTokenInternal(name, vmId);
38+
}
39+
}
40+
// [END notebooks_v1_generated_ManagedNotebookService_RefreshRuntimeTokenInternal_sync_flattened_resourceNames]
41+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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_sync_flattened]
20+
using Google.Cloud.Notebooks.V1;
21+
22+
public sealed partial class GeneratedManagedNotebookServiceClientSnippets
23+
{
24+
/// <summary>Snippet for RefreshRuntimeTokenInternal</summary>
25+
/// <remarks>
26+
/// This snippet has been automatically generated for illustrative purposes only.
27+
/// It may require modifications to work in your environment.
28+
/// </remarks>
29+
public void RefreshRuntimeTokenInternal()
30+
{
31+
// Create client
32+
ManagedNotebookServiceClient managedNotebookServiceClient = ManagedNotebookServiceClient.Create();
33+
// Initialize request argument(s)
34+
string name = "projects/[PROJECT]/locations/[LOCATION]/runtimes/[RUNTIME]";
35+
string vmId = "";
36+
// Make the request
37+
RefreshRuntimeTokenInternalResponse response = managedNotebookServiceClient.RefreshRuntimeTokenInternal(name, vmId);
38+
}
39+
}
40+
// [END notebooks_v1_generated_ManagedNotebookService_RefreshRuntimeTokenInternal_sync_flattened]
41+
}

apis/Google.Cloud.Notebooks.V1/Google.Cloud.Notebooks.V1.GeneratedSnippets/ManagedNotebookServiceClient.ResetRuntimeRequestObjectAsyncSnippet.g.cs

+5-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ public async Task ResetRuntimeRequestObjectAsync()
3333
// Create client
3434
ManagedNotebookServiceClient managedNotebookServiceClient = await ManagedNotebookServiceClient.CreateAsync();
3535
// Initialize request argument(s)
36-
ResetRuntimeRequest request = new ResetRuntimeRequest { Name = "", };
36+
ResetRuntimeRequest request = new ResetRuntimeRequest
37+
{
38+
Name = "",
39+
RequestId = "",
40+
};
3741
// Make the request
3842
Operation<Runtime, OperationMetadata> response = await managedNotebookServiceClient.ResetRuntimeAsync(request);
3943

apis/Google.Cloud.Notebooks.V1/Google.Cloud.Notebooks.V1.GeneratedSnippets/ManagedNotebookServiceClient.ResetRuntimeRequestObjectSnippet.g.cs

+5-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ public void ResetRuntimeRequestObject()
3232
// Create client
3333
ManagedNotebookServiceClient managedNotebookServiceClient = ManagedNotebookServiceClient.Create();
3434
// Initialize request argument(s)
35-
ResetRuntimeRequest request = new ResetRuntimeRequest { Name = "", };
35+
ResetRuntimeRequest request = new ResetRuntimeRequest
36+
{
37+
Name = "",
38+
RequestId = "",
39+
};
3640
// Make the request
3741
Operation<Runtime, OperationMetadata> response = managedNotebookServiceClient.ResetRuntime(request);
3842

apis/Google.Cloud.Notebooks.V1/Google.Cloud.Notebooks.V1.GeneratedSnippets/ManagedNotebookServiceClient.StartRuntimeRequestObjectAsyncSnippet.g.cs

+5-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ public async Task StartRuntimeRequestObjectAsync()
3333
// Create client
3434
ManagedNotebookServiceClient managedNotebookServiceClient = await ManagedNotebookServiceClient.CreateAsync();
3535
// Initialize request argument(s)
36-
StartRuntimeRequest request = new StartRuntimeRequest { Name = "", };
36+
StartRuntimeRequest request = new StartRuntimeRequest
37+
{
38+
Name = "",
39+
RequestId = "",
40+
};
3741
// Make the request
3842
Operation<Runtime, OperationMetadata> response = await managedNotebookServiceClient.StartRuntimeAsync(request);
3943

apis/Google.Cloud.Notebooks.V1/Google.Cloud.Notebooks.V1.GeneratedSnippets/ManagedNotebookServiceClient.StartRuntimeRequestObjectSnippet.g.cs

+5-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ public void StartRuntimeRequestObject()
3232
// Create client
3333
ManagedNotebookServiceClient managedNotebookServiceClient = ManagedNotebookServiceClient.Create();
3434
// Initialize request argument(s)
35-
StartRuntimeRequest request = new StartRuntimeRequest { Name = "", };
35+
StartRuntimeRequest request = new StartRuntimeRequest
36+
{
37+
Name = "",
38+
RequestId = "",
39+
};
3640
// Make the request
3741
Operation<Runtime, OperationMetadata> response = managedNotebookServiceClient.StartRuntime(request);
3842

apis/Google.Cloud.Notebooks.V1/Google.Cloud.Notebooks.V1.GeneratedSnippets/ManagedNotebookServiceClient.StopRuntimeRequestObjectAsyncSnippet.g.cs

+5-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ public async Task StopRuntimeRequestObjectAsync()
3333
// Create client
3434
ManagedNotebookServiceClient managedNotebookServiceClient = await ManagedNotebookServiceClient.CreateAsync();
3535
// Initialize request argument(s)
36-
StopRuntimeRequest request = new StopRuntimeRequest { Name = "", };
36+
StopRuntimeRequest request = new StopRuntimeRequest
37+
{
38+
Name = "",
39+
RequestId = "",
40+
};
3741
// Make the request
3842
Operation<Runtime, OperationMetadata> response = await managedNotebookServiceClient.StopRuntimeAsync(request);
3943

apis/Google.Cloud.Notebooks.V1/Google.Cloud.Notebooks.V1.GeneratedSnippets/ManagedNotebookServiceClient.StopRuntimeRequestObjectSnippet.g.cs

+5-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ public void StopRuntimeRequestObject()
3232
// Create client
3333
ManagedNotebookServiceClient managedNotebookServiceClient = ManagedNotebookServiceClient.Create();
3434
// Initialize request argument(s)
35-
StopRuntimeRequest request = new StopRuntimeRequest { Name = "", };
35+
StopRuntimeRequest request = new StopRuntimeRequest
36+
{
37+
Name = "",
38+
RequestId = "",
39+
};
3640
// Make the request
3741
Operation<Runtime, OperationMetadata> response = managedNotebookServiceClient.StopRuntime(request);
3842

apis/Google.Cloud.Notebooks.V1/Google.Cloud.Notebooks.V1.GeneratedSnippets/ManagedNotebookServiceClient.SwitchRuntimeRequestObjectAsyncSnippet.g.cs

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ public async Task SwitchRuntimeRequestObjectAsync()
3838
Name = "",
3939
MachineType = "",
4040
AcceleratorConfig = new RuntimeAcceleratorConfig(),
41+
RequestId = "",
4142
};
4243
// Make the request
4344
Operation<Runtime, OperationMetadata> response = await managedNotebookServiceClient.SwitchRuntimeAsync(request);

apis/Google.Cloud.Notebooks.V1/Google.Cloud.Notebooks.V1.GeneratedSnippets/ManagedNotebookServiceClient.SwitchRuntimeRequestObjectSnippet.g.cs

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ public void SwitchRuntimeRequestObject()
3737
Name = "",
3838
MachineType = "",
3939
AcceleratorConfig = new RuntimeAcceleratorConfig(),
40+
RequestId = "",
4041
};
4142
// Make the request
4243
Operation<Runtime, OperationMetadata> response = managedNotebookServiceClient.SwitchRuntime(request);

apis/Google.Cloud.Notebooks.V1/Google.Cloud.Notebooks.V1.GeneratedSnippets/NotebookServiceClient.IsInstanceUpgradeableRequestObjectAsyncSnippet.g.cs

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ public async Task IsInstanceUpgradeableRequestObjectAsync()
3535
IsInstanceUpgradeableRequest request = new IsInstanceUpgradeableRequest
3636
{
3737
NotebookInstance = "",
38+
Type = UpgradeType.Unspecified,
3839
};
3940
// Make the request
4041
IsInstanceUpgradeableResponse response = await notebookServiceClient.IsInstanceUpgradeableAsync(request);

0 commit comments

Comments
 (0)