Skip to content

Commit

Permalink
Regenerate AccessApproval with child_type
Browse files Browse the repository at this point in the history
  • Loading branch information
jskeet committed Mar 27, 2024
1 parent b5fba79 commit 33d9446
Show file tree
Hide file tree
Showing 11 changed files with 986 additions and 114 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

namespace GoogleCSharpSnippets
{
// [START accessapproval_v1_generated_AccessApproval_ListApprovalRequests_async_flattened_resourceNames]
// [START accessapproval_v1_generated_AccessApproval_ListApprovalRequests_async_flattened_resourceNames1]
using Google.Api.Gax;
using Google.Api.Gax.ResourceNames;
using Google.Cloud.AccessApproval.V1;
Expand All @@ -34,7 +34,7 @@ public sealed partial class GeneratedAccessApprovalServiceClientSnippets
/// - 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 ListApprovalRequestsResourceNamesAsync()
public async Task ListApprovalRequestsResourceNames1Async()
{
// Create client
AccessApprovalServiceClient accessApprovalServiceClient = await AccessApprovalServiceClient.CreateAsync();
Expand Down Expand Up @@ -76,5 +76,5 @@ await response.AsRawResponses().ForEachAsync((ListApprovalRequestsResponse page)
string nextPageToken = singlePage.NextPageToken;
}
}
// [END accessapproval_v1_generated_AccessApproval_ListApprovalRequests_async_flattened_resourceNames]
// [END accessapproval_v1_generated_AccessApproval_ListApprovalRequests_async_flattened_resourceNames1]
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

namespace GoogleCSharpSnippets
{
// [START accessapproval_v1_generated_AccessApproval_ListApprovalRequests_sync_flattened_resourceNames]
// [START accessapproval_v1_generated_AccessApproval_ListApprovalRequests_sync_flattened_resourceNames1]
using Google.Api.Gax;
using Google.Api.Gax.ResourceNames;
using Google.Cloud.AccessApproval.V1;
Expand All @@ -32,7 +32,7 @@ public sealed partial class GeneratedAccessApprovalServiceClientSnippets
/// - 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 ListApprovalRequestsResourceNames()
public void ListApprovalRequestsResourceNames1()
{
// Create client
AccessApprovalServiceClient accessApprovalServiceClient = AccessApprovalServiceClient.Create();
Expand Down Expand Up @@ -74,5 +74,5 @@ public void ListApprovalRequestsResourceNames()
string nextPageToken = singlePage.NextPageToken;
}
}
// [END accessapproval_v1_generated_AccessApproval_ListApprovalRequests_sync_flattened_resourceNames]
// [END accessapproval_v1_generated_AccessApproval_ListApprovalRequests_sync_flattened_resourceNames1]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
// Copyright 2024 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 GoogleCSharpSnippets
{
// [START accessapproval_v1_generated_AccessApproval_ListApprovalRequests_async_flattened_resourceNames2]
using Google.Api.Gax;
using Google.Api.Gax.ResourceNames;
using Google.Cloud.AccessApproval.V1;
using System;
using System.Linq;
using System.Threading.Tasks;

public sealed partial class GeneratedAccessApprovalServiceClientSnippets
{
/// <summary>Snippet for ListApprovalRequestsAsync</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 ListApprovalRequestsResourceNames2Async()
{
// Create client
AccessApprovalServiceClient accessApprovalServiceClient = await AccessApprovalServiceClient.CreateAsync();
// Initialize request argument(s)
FolderName parent = FolderName.FromFolder("[FOLDER]");
// Make the request
PagedAsyncEnumerable<ListApprovalRequestsResponse, ApprovalRequest> response = accessApprovalServiceClient.ListApprovalRequestsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((ApprovalRequest 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((ListApprovalRequestsResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (ApprovalRequest 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<ApprovalRequest> 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 (ApprovalRequest 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 accessapproval_v1_generated_AccessApproval_ListApprovalRequests_async_flattened_resourceNames2]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
// Copyright 2024 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 GoogleCSharpSnippets
{
// [START accessapproval_v1_generated_AccessApproval_ListApprovalRequests_sync_flattened_resourceNames2]
using Google.Api.Gax;
using Google.Api.Gax.ResourceNames;
using Google.Cloud.AccessApproval.V1;
using System;

public sealed partial class GeneratedAccessApprovalServiceClientSnippets
{
/// <summary>Snippet for ListApprovalRequests</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 ListApprovalRequestsResourceNames2()
{
// Create client
AccessApprovalServiceClient accessApprovalServiceClient = AccessApprovalServiceClient.Create();
// Initialize request argument(s)
FolderName parent = FolderName.FromFolder("[FOLDER]");
// Make the request
PagedEnumerable<ListApprovalRequestsResponse, ApprovalRequest> response = accessApprovalServiceClient.ListApprovalRequests(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (ApprovalRequest 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 (ListApprovalRequestsResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (ApprovalRequest 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<ApprovalRequest> 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 (ApprovalRequest 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 accessapproval_v1_generated_AccessApproval_ListApprovalRequests_sync_flattened_resourceNames2]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
// Copyright 2024 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 GoogleCSharpSnippets
{
// [START accessapproval_v1_generated_AccessApproval_ListApprovalRequests_async_flattened_resourceNames3]
using Google.Api.Gax;
using Google.Api.Gax.ResourceNames;
using Google.Cloud.AccessApproval.V1;
using System;
using System.Linq;
using System.Threading.Tasks;

public sealed partial class GeneratedAccessApprovalServiceClientSnippets
{
/// <summary>Snippet for ListApprovalRequestsAsync</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 ListApprovalRequestsResourceNames3Async()
{
// Create client
AccessApprovalServiceClient accessApprovalServiceClient = await AccessApprovalServiceClient.CreateAsync();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
// Make the request
PagedAsyncEnumerable<ListApprovalRequestsResponse, ApprovalRequest> response = accessApprovalServiceClient.ListApprovalRequestsAsync(parent);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((ApprovalRequest 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((ListApprovalRequestsResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (ApprovalRequest 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<ApprovalRequest> 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 (ApprovalRequest 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 accessapproval_v1_generated_AccessApproval_ListApprovalRequests_async_flattened_resourceNames3]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
// Copyright 2024 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 GoogleCSharpSnippets
{
// [START accessapproval_v1_generated_AccessApproval_ListApprovalRequests_sync_flattened_resourceNames3]
using Google.Api.Gax;
using Google.Api.Gax.ResourceNames;
using Google.Cloud.AccessApproval.V1;
using System;

public sealed partial class GeneratedAccessApprovalServiceClientSnippets
{
/// <summary>Snippet for ListApprovalRequests</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 ListApprovalRequestsResourceNames3()
{
// Create client
AccessApprovalServiceClient accessApprovalServiceClient = AccessApprovalServiceClient.Create();
// Initialize request argument(s)
OrganizationName parent = OrganizationName.FromOrganization("[ORGANIZATION]");
// Make the request
PagedEnumerable<ListApprovalRequestsResponse, ApprovalRequest> response = accessApprovalServiceClient.ListApprovalRequests(parent);

// Iterate over all response items, lazily performing RPCs as required
foreach (ApprovalRequest 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 (ListApprovalRequestsResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (ApprovalRequest 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<ApprovalRequest> 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 (ApprovalRequest 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 accessapproval_v1_generated_AccessApproval_ListApprovalRequests_sync_flattened_resourceNames3]
}
Loading

0 comments on commit 33d9446

Please sign in to comment.