-
Notifications
You must be signed in to change notification settings - Fork 369
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add Go build targets for compute (#792)
Note: manually updated proto file, but it yields the same result of the new disco-converter would generate. Fixes: googleapis/google-cloud-go#7345 Source-Link: googleapis/googleapis@59828ba Source-Link: googleapis/googleapis-gen@2649582 Copy-Tag: eyJwIjoiYXBpcy9Hb29nbGUuQ2xvdWQuQ29tcHV0ZS5WMS8uT3dsQm90LnlhbWwiLCJoIjoiMjY0OTU4MjU3YzUzNTJkYjBiYzkxMGMwMGYxNDdiODIxYjAxMDYzNiJ9
- Loading branch information
1 parent
ca8e6ba
commit b0f9c99
Showing
2,932 changed files
with
1,135,041 additions
and
0 deletions.
There are no files selected for viewing
80 changes: 80 additions & 0 deletions
80
...Cloud.Compute.V1.GeneratedSnippets/AcceleratorTypesClient.AggregatedListAsyncSnippet.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,80 @@ | ||
// Copyright 2023 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.Compute.V1.Snippets | ||
{ | ||
// [START compute_v1_generated_AcceleratorTypes_AggregatedList_async_flattened] | ||
using Google.Api.Gax; | ||
using Google.Cloud.Compute.V1; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
|
||
public sealed partial class GeneratedAcceleratorTypesClientSnippets | ||
{ | ||
/// <summary>Snippet for AggregatedListAsync</summary> | ||
/// <remarks> | ||
/// This snippet has been automatically generated and should be regarded as a code template only. | ||
/// It will require modifications to work: | ||
/// - It may require correct/in-range values for request initialization. | ||
/// - It may require specifying regional endpoints when creating the service client as shown in | ||
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint. | ||
/// </remarks> | ||
public async Task AggregatedListAsync() | ||
{ | ||
// Create client | ||
AcceleratorTypesClient acceleratorTypesClient = await AcceleratorTypesClient.CreateAsync(); | ||
// Initialize request argument(s) | ||
string project = ""; | ||
// Make the request | ||
PagedAsyncEnumerable<AcceleratorTypeAggregatedList, KeyValuePair<string, AcceleratorTypesScopedList>> response = acceleratorTypesClient.AggregatedListAsync(project); | ||
|
||
// Iterate over all response items, lazily performing RPCs as required | ||
await response.ForEachAsync((KeyValuePair<string, AcceleratorTypesScopedList> item) => | ||
{ | ||
// Do something with each item | ||
Console.WriteLine(item); | ||
}); | ||
|
||
// Or iterate over pages (of server-defined size), performing one RPC per page | ||
await response.AsRawResponses().ForEachAsync((AcceleratorTypeAggregatedList page) => | ||
{ | ||
// Do something with each page of items | ||
Console.WriteLine("A page of results:"); | ||
foreach (KeyValuePair<string, AcceleratorTypesScopedList> item in page) | ||
{ | ||
// Do something with each item | ||
Console.WriteLine(item); | ||
} | ||
}); | ||
|
||
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required | ||
int pageSize = 10; | ||
Page<KeyValuePair<string, AcceleratorTypesScopedList>> singlePage = await response.ReadPageAsync(pageSize); | ||
// Do something with the page of items | ||
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):"); | ||
foreach (KeyValuePair<string, AcceleratorTypesScopedList> item in singlePage) | ||
{ | ||
// Do something with each item | ||
Console.WriteLine(item); | ||
} | ||
// Store the pageToken, for when the next page is required. | ||
string nextPageToken = singlePage.NextPageToken; | ||
} | ||
} | ||
// [END compute_v1_generated_AcceleratorTypes_AggregatedList_async_flattened] | ||
} |
87 changes: 87 additions & 0 deletions
87
....V1.GeneratedSnippets/AcceleratorTypesClient.AggregatedListRequestObjectAsyncSnippet.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,87 @@ | ||
// Copyright 2023 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.Compute.V1.Snippets | ||
{ | ||
// [START compute_v1_generated_AcceleratorTypes_AggregatedList_async] | ||
using Google.Api.Gax; | ||
using Google.Cloud.Compute.V1; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
|
||
public sealed partial class GeneratedAcceleratorTypesClientSnippets | ||
{ | ||
/// <summary>Snippet for AggregatedListAsync</summary> | ||
/// <remarks> | ||
/// This snippet has been automatically generated and should be regarded as a code template only. | ||
/// It will require modifications to work: | ||
/// - It may require correct/in-range values for request initialization. | ||
/// - It may require specifying regional endpoints when creating the service client as shown in | ||
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint. | ||
/// </remarks> | ||
public async Task AggregatedListRequestObjectAsync() | ||
{ | ||
// Create client | ||
AcceleratorTypesClient acceleratorTypesClient = await AcceleratorTypesClient.CreateAsync(); | ||
// Initialize request argument(s) | ||
AggregatedListAcceleratorTypesRequest request = new AggregatedListAcceleratorTypesRequest | ||
{ | ||
OrderBy = "", | ||
Project = "", | ||
Filter = "", | ||
IncludeAllScopes = false, | ||
ReturnPartialSuccess = false, | ||
}; | ||
// Make the request | ||
PagedAsyncEnumerable<AcceleratorTypeAggregatedList, KeyValuePair<string, AcceleratorTypesScopedList>> response = acceleratorTypesClient.AggregatedListAsync(request); | ||
|
||
// Iterate over all response items, lazily performing RPCs as required | ||
await response.ForEachAsync((KeyValuePair<string, AcceleratorTypesScopedList> item) => | ||
{ | ||
// Do something with each item | ||
Console.WriteLine(item); | ||
}); | ||
|
||
// Or iterate over pages (of server-defined size), performing one RPC per page | ||
await response.AsRawResponses().ForEachAsync((AcceleratorTypeAggregatedList page) => | ||
{ | ||
// Do something with each page of items | ||
Console.WriteLine("A page of results:"); | ||
foreach (KeyValuePair<string, AcceleratorTypesScopedList> item in page) | ||
{ | ||
// Do something with each item | ||
Console.WriteLine(item); | ||
} | ||
}); | ||
|
||
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required | ||
int pageSize = 10; | ||
Page<KeyValuePair<string, AcceleratorTypesScopedList>> singlePage = await response.ReadPageAsync(pageSize); | ||
// Do something with the page of items | ||
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):"); | ||
foreach (KeyValuePair<string, AcceleratorTypesScopedList> item in singlePage) | ||
{ | ||
// Do something with each item | ||
Console.WriteLine(item); | ||
} | ||
// Store the pageToken, for when the next page is required. | ||
string nextPageToken = singlePage.NextPageToken; | ||
} | ||
} | ||
// [END compute_v1_generated_AcceleratorTypes_AggregatedList_async] | ||
} |
85 changes: 85 additions & 0 deletions
85
...mpute.V1.GeneratedSnippets/AcceleratorTypesClient.AggregatedListRequestObjectSnippet.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,85 @@ | ||
// Copyright 2023 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.Compute.V1.Snippets | ||
{ | ||
// [START compute_v1_generated_AcceleratorTypes_AggregatedList_sync] | ||
using Google.Api.Gax; | ||
using Google.Cloud.Compute.V1; | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
public sealed partial class GeneratedAcceleratorTypesClientSnippets | ||
{ | ||
/// <summary>Snippet for AggregatedList</summary> | ||
/// <remarks> | ||
/// This snippet has been automatically generated and should be regarded as a code template only. | ||
/// It will require modifications to work: | ||
/// - It may require correct/in-range values for request initialization. | ||
/// - It may require specifying regional endpoints when creating the service client as shown in | ||
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint. | ||
/// </remarks> | ||
public void AggregatedListRequestObject() | ||
{ | ||
// Create client | ||
AcceleratorTypesClient acceleratorTypesClient = AcceleratorTypesClient.Create(); | ||
// Initialize request argument(s) | ||
AggregatedListAcceleratorTypesRequest request = new AggregatedListAcceleratorTypesRequest | ||
{ | ||
OrderBy = "", | ||
Project = "", | ||
Filter = "", | ||
IncludeAllScopes = false, | ||
ReturnPartialSuccess = false, | ||
}; | ||
// Make the request | ||
PagedEnumerable<AcceleratorTypeAggregatedList, KeyValuePair<string, AcceleratorTypesScopedList>> response = acceleratorTypesClient.AggregatedList(request); | ||
|
||
// Iterate over all response items, lazily performing RPCs as required | ||
foreach (KeyValuePair<string, AcceleratorTypesScopedList> item in response) | ||
{ | ||
// Do something with each item | ||
Console.WriteLine(item); | ||
} | ||
|
||
// Or iterate over pages (of server-defined size), performing one RPC per page | ||
foreach (AcceleratorTypeAggregatedList page in response.AsRawResponses()) | ||
{ | ||
// Do something with each page of items | ||
Console.WriteLine("A page of results:"); | ||
foreach (KeyValuePair<string, AcceleratorTypesScopedList> item in page) | ||
{ | ||
// Do something with each item | ||
Console.WriteLine(item); | ||
} | ||
} | ||
|
||
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required | ||
int pageSize = 10; | ||
Page<KeyValuePair<string, AcceleratorTypesScopedList>> singlePage = response.ReadPage(pageSize); | ||
// Do something with the page of items | ||
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):"); | ||
foreach (KeyValuePair<string, AcceleratorTypesScopedList> item in singlePage) | ||
{ | ||
// Do something with each item | ||
Console.WriteLine(item); | ||
} | ||
// Store the pageToken, for when the next page is required. | ||
string nextPageToken = singlePage.NextPageToken; | ||
} | ||
} | ||
// [END compute_v1_generated_AcceleratorTypes_AggregatedList_sync] | ||
} |
78 changes: 78 additions & 0 deletions
78
...ogle.Cloud.Compute.V1.GeneratedSnippets/AcceleratorTypesClient.AggregatedListSnippet.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,78 @@ | ||
// Copyright 2023 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.Compute.V1.Snippets | ||
{ | ||
// [START compute_v1_generated_AcceleratorTypes_AggregatedList_sync_flattened] | ||
using Google.Api.Gax; | ||
using Google.Cloud.Compute.V1; | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
public sealed partial class GeneratedAcceleratorTypesClientSnippets | ||
{ | ||
/// <summary>Snippet for AggregatedList</summary> | ||
/// <remarks> | ||
/// This snippet has been automatically generated and should be regarded as a code template only. | ||
/// It will require modifications to work: | ||
/// - It may require correct/in-range values for request initialization. | ||
/// - It may require specifying regional endpoints when creating the service client as shown in | ||
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint. | ||
/// </remarks> | ||
public void AggregatedList() | ||
{ | ||
// Create client | ||
AcceleratorTypesClient acceleratorTypesClient = AcceleratorTypesClient.Create(); | ||
// Initialize request argument(s) | ||
string project = ""; | ||
// Make the request | ||
PagedEnumerable<AcceleratorTypeAggregatedList, KeyValuePair<string, AcceleratorTypesScopedList>> response = acceleratorTypesClient.AggregatedList(project); | ||
|
||
// Iterate over all response items, lazily performing RPCs as required | ||
foreach (KeyValuePair<string, AcceleratorTypesScopedList> item in response) | ||
{ | ||
// Do something with each item | ||
Console.WriteLine(item); | ||
} | ||
|
||
// Or iterate over pages (of server-defined size), performing one RPC per page | ||
foreach (AcceleratorTypeAggregatedList page in response.AsRawResponses()) | ||
{ | ||
// Do something with each page of items | ||
Console.WriteLine("A page of results:"); | ||
foreach (KeyValuePair<string, AcceleratorTypesScopedList> item in page) | ||
{ | ||
// Do something with each item | ||
Console.WriteLine(item); | ||
} | ||
} | ||
|
||
// Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required | ||
int pageSize = 10; | ||
Page<KeyValuePair<string, AcceleratorTypesScopedList>> singlePage = response.ReadPage(pageSize); | ||
// Do something with the page of items | ||
Console.WriteLine($"A page of {pageSize} results (unless it's the final page):"); | ||
foreach (KeyValuePair<string, AcceleratorTypesScopedList> item in singlePage) | ||
{ | ||
// Do something with each item | ||
Console.WriteLine(item); | ||
} | ||
// Store the pageToken, for when the next page is required. | ||
string nextPageToken = singlePage.NextPageToken; | ||
} | ||
} | ||
// [END compute_v1_generated_AcceleratorTypes_AggregatedList_sync_flattened] | ||
} |
46 changes: 46 additions & 0 deletions
46
....V1/Google.Cloud.Compute.V1.GeneratedSnippets/AcceleratorTypesClient.GetAsyncSnippet.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,46 @@ | ||
// Copyright 2023 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.Compute.V1.Snippets | ||
{ | ||
// [START compute_v1_generated_AcceleratorTypes_Get_async_flattened] | ||
using Google.Cloud.Compute.V1; | ||
using System.Threading.Tasks; | ||
|
||
public sealed partial class GeneratedAcceleratorTypesClientSnippets | ||
{ | ||
/// <summary>Snippet for GetAsync</summary> | ||
/// <remarks> | ||
/// This snippet has been automatically generated and should be regarded as a code template only. | ||
/// It will require modifications to work: | ||
/// - It may require correct/in-range values for request initialization. | ||
/// - It may require specifying regional endpoints when creating the service client as shown in | ||
/// https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint. | ||
/// </remarks> | ||
public async Task GetAsync() | ||
{ | ||
// Create client | ||
AcceleratorTypesClient acceleratorTypesClient = await AcceleratorTypesClient.CreateAsync(); | ||
// Initialize request argument(s) | ||
string project = ""; | ||
string zone = ""; | ||
string acceleratorType = ""; | ||
// Make the request | ||
AcceleratorType response = await acceleratorTypesClient.GetAsync(project, zone, acceleratorType); | ||
} | ||
} | ||
// [END compute_v1_generated_AcceleratorTypes_Get_async_flattened] | ||
} |
Oops, something went wrong.