Compute Engine v1 API - Class NetworkAttachmentsClient (2.16.0)

public abstract class NetworkAttachmentsClient

Reference documentation and code samples for the Compute Engine v1 API class NetworkAttachmentsClient.

NetworkAttachments client wrapper, for convenient use.

Inheritance

object > NetworkAttachmentsClient

Namespace

Google.Cloud.Compute.V1

Assembly

Google.Cloud.Compute.V1.dll

Remarks

The NetworkAttachments API.

Properties

DefaultEndpoint

public static string DefaultEndpoint { get; }

The default endpoint for the NetworkAttachments service, which is a host of "compute.googleapis.com" and a port of 443.

Property Value
Type Description
string

DefaultScopes

public static IReadOnlyList<string> DefaultScopes { get; }

The default NetworkAttachments scopes.

Property Value
Type Description
IReadOnlyListstring
Remarks

DeleteOperationsClient

public virtual OperationsClient DeleteOperationsClient { get; }

The long-running operations client for Delete.

Property Value
Type Description
OperationsClient

GrpcClient

public virtual NetworkAttachments.NetworkAttachmentsClient GrpcClient { get; }

The underlying gRPC NetworkAttachments client

Property Value
Type Description
NetworkAttachmentsNetworkAttachmentsClient

InsertOperationsClient

public virtual OperationsClient InsertOperationsClient { get; }

The long-running operations client for Insert.

Property Value
Type Description
OperationsClient

PatchOperationsClient

public virtual OperationsClient PatchOperationsClient { get; }

The long-running operations client for Patch.

Property Value
Type Description
OperationsClient

ServiceMetadata

public static ServiceMetadata ServiceMetadata { get; }

The service metadata associated with this client type.

Property Value
Type Description
ServiceMetadata

Methods

AggregatedList(AggregatedListNetworkAttachmentsRequest, CallSettings)

public virtual PagedEnumerable<NetworkAttachmentAggregatedList, KeyValuePair<string, NetworkAttachmentsScopedList>> AggregatedList(AggregatedListNetworkAttachmentsRequest request, CallSettings callSettings = null)

Retrieves the list of all NetworkAttachment resources, regional and global, available to the specified project. To prevent failure, Google recommends that you set the returnPartialSuccess parameter to true.

Parameters
Name Description
request AggregatedListNetworkAttachmentsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableNetworkAttachmentAggregatedListKeyValuePairstringNetworkAttachmentsScopedList

A pageable sequence of KeyValuePair<TKey, TValue> resources.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = NetworkAttachmentsClient.Create();
// Initialize request argument(s)
AggregatedListNetworkAttachmentsRequest request = new AggregatedListNetworkAttachmentsRequest
{
    OrderBy = "",
    Project = "",
    ServiceProjectNumber = 0L,
    Filter = "",
    IncludeAllScopes = false,
    ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<NetworkAttachmentAggregatedList, KeyValuePair<string, NetworkAttachmentsScopedList>> response = networkAttachmentsClient.AggregatedList(request);

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

AggregatedList(string, string, int?, CallSettings)

public virtual PagedEnumerable<NetworkAttachmentAggregatedList, KeyValuePair<string, NetworkAttachmentsScopedList>> AggregatedList(string project, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Retrieves the list of all NetworkAttachment resources, regional and global, available to the specified project. To prevent failure, Google recommends that you set the returnPartialSuccess parameter to true.

Parameters
Name Description
project string

Project ID for this request.

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableNetworkAttachmentAggregatedListKeyValuePairstringNetworkAttachmentsScopedList

A pageable sequence of KeyValuePair<TKey, TValue> resources.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = NetworkAttachmentsClient.Create();
// Initialize request argument(s)
string project = "";
// Make the request
PagedEnumerable<NetworkAttachmentAggregatedList, KeyValuePair<string, NetworkAttachmentsScopedList>> response = networkAttachmentsClient.AggregatedList(project);

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

AggregatedListAsync(AggregatedListNetworkAttachmentsRequest, CallSettings)

public virtual PagedAsyncEnumerable<NetworkAttachmentAggregatedList, KeyValuePair<string, NetworkAttachmentsScopedList>> AggregatedListAsync(AggregatedListNetworkAttachmentsRequest request, CallSettings callSettings = null)

Retrieves the list of all NetworkAttachment resources, regional and global, available to the specified project. To prevent failure, Google recommends that you set the returnPartialSuccess parameter to true.

Parameters
Name Description
request AggregatedListNetworkAttachmentsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableNetworkAttachmentAggregatedListKeyValuePairstringNetworkAttachmentsScopedList

A pageable asynchronous sequence of KeyValuePair<TKey, TValue> resources.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
AggregatedListNetworkAttachmentsRequest request = new AggregatedListNetworkAttachmentsRequest
{
    OrderBy = "",
    Project = "",
    ServiceProjectNumber = 0L,
    Filter = "",
    IncludeAllScopes = false,
    ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<NetworkAttachmentAggregatedList, KeyValuePair<string, NetworkAttachmentsScopedList>> response = networkAttachmentsClient.AggregatedListAsync(request);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((KeyValuePair<string, NetworkAttachmentsScopedList> 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((NetworkAttachmentAggregatedList page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (KeyValuePair<string, NetworkAttachmentsScopedList> 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, NetworkAttachmentsScopedList>> 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, NetworkAttachmentsScopedList> 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;

AggregatedListAsync(string, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<NetworkAttachmentAggregatedList, KeyValuePair<string, NetworkAttachmentsScopedList>> AggregatedListAsync(string project, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Retrieves the list of all NetworkAttachment resources, regional and global, available to the specified project. To prevent failure, Google recommends that you set the returnPartialSuccess parameter to true.

Parameters
Name Description
project string

Project ID for this request.

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableNetworkAttachmentAggregatedListKeyValuePairstringNetworkAttachmentsScopedList

A pageable asynchronous sequence of KeyValuePair<TKey, TValue> resources.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
// Make the request
PagedAsyncEnumerable<NetworkAttachmentAggregatedList, KeyValuePair<string, NetworkAttachmentsScopedList>> response = networkAttachmentsClient.AggregatedListAsync(project);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((KeyValuePair<string, NetworkAttachmentsScopedList> 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((NetworkAttachmentAggregatedList page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (KeyValuePair<string, NetworkAttachmentsScopedList> 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, NetworkAttachmentsScopedList>> 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, NetworkAttachmentsScopedList> 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;

Create()

public static NetworkAttachmentsClient Create()

Synchronously creates a NetworkAttachmentsClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use NetworkAttachmentsClientBuilder .

Returns
Type Description
NetworkAttachmentsClient

The created NetworkAttachmentsClient.

CreateAsync(CancellationToken)

public static Task<NetworkAttachmentsClient> CreateAsync(CancellationToken cancellationToken = default)

Asynchronously creates a NetworkAttachmentsClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use NetworkAttachmentsClientBuilder .

Parameter
Name Description
cancellationToken CancellationToken

The CancellationToken to use while creating the client.

Returns
Type Description
TaskNetworkAttachmentsClient

The task representing the created NetworkAttachmentsClient.

Delete(DeleteNetworkAttachmentRequest, CallSettings)

public virtual Operation<Operation, Operation> Delete(DeleteNetworkAttachmentRequest request, CallSettings callSettings = null)

Deletes the specified NetworkAttachment in the given scope

Parameters
Name Description
request DeleteNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
OperationOperationOperation

The RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = NetworkAttachmentsClient.Create();
// Initialize request argument(s)
DeleteNetworkAttachmentRequest request = new DeleteNetworkAttachmentRequest
{
    RequestId = "",
    Region = "",
    NetworkAttachment = "",
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = networkAttachmentsClient.Delete(request);

// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = networkAttachmentsClient.PollOnceDelete(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

Delete(string, string, string, CallSettings)

public virtual Operation<Operation, Operation> Delete(string project, string region, string networkAttachment, CallSettings callSettings = null)

Deletes the specified NetworkAttachment in the given scope

Parameters
Name Description
project string

Project ID for this request.

region string

Name of the region of this request.

networkAttachment string

Name of the NetworkAttachment resource to delete.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
OperationOperationOperation

The RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = NetworkAttachmentsClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string networkAttachment = "";
// Make the request
lro::Operation<Operation, Operation> response = networkAttachmentsClient.Delete(project, region, networkAttachment);

// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = networkAttachmentsClient.PollOnceDelete(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

DeleteAsync(DeleteNetworkAttachmentRequest, CallSettings)

public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteNetworkAttachmentRequest request, CallSettings callSettings = null)

Deletes the specified NetworkAttachment in the given scope

Parameters
Name Description
request DeleteNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
DeleteNetworkAttachmentRequest request = new DeleteNetworkAttachmentRequest
{
    RequestId = "",
    Region = "",
    NetworkAttachment = "",
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await networkAttachmentsClient.DeleteAsync(request);

// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await networkAttachmentsClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

DeleteAsync(DeleteNetworkAttachmentRequest, CancellationToken)

public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteNetworkAttachmentRequest request, CancellationToken cancellationToken)

Deletes the specified NetworkAttachment in the given scope

Parameters
Name Description
request DeleteNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
DeleteNetworkAttachmentRequest request = new DeleteNetworkAttachmentRequest
{
    RequestId = "",
    Region = "",
    NetworkAttachment = "",
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await networkAttachmentsClient.DeleteAsync(request);

// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await networkAttachmentsClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

DeleteAsync(string, string, string, CallSettings)

public virtual Task<Operation<Operation, Operation>> DeleteAsync(string project, string region, string networkAttachment, CallSettings callSettings = null)

Deletes the specified NetworkAttachment in the given scope

Parameters
Name Description
project string

Project ID for this request.

region string

Name of the region of this request.

networkAttachment string

Name of the NetworkAttachment resource to delete.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string networkAttachment = "";
// Make the request
lro::Operation<Operation, Operation> response = await networkAttachmentsClient.DeleteAsync(project, region, networkAttachment);

// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await networkAttachmentsClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

DeleteAsync(string, string, string, CancellationToken)

public virtual Task<Operation<Operation, Operation>> DeleteAsync(string project, string region, string networkAttachment, CancellationToken cancellationToken)

Deletes the specified NetworkAttachment in the given scope

Parameters
Name Description
project string

Project ID for this request.

region string

Name of the region of this request.

networkAttachment string

Name of the NetworkAttachment resource to delete.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string networkAttachment = "";
// Make the request
lro::Operation<Operation, Operation> response = await networkAttachmentsClient.DeleteAsync(project, region, networkAttachment);

// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await networkAttachmentsClient.PollOnceDeleteAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

Get(GetNetworkAttachmentRequest, CallSettings)

public virtual NetworkAttachment Get(GetNetworkAttachmentRequest request, CallSettings callSettings = null)

Returns the specified NetworkAttachment resource in the given scope.

Parameters
Name Description
request GetNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
NetworkAttachment

The RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = NetworkAttachmentsClient.Create();
// Initialize request argument(s)
GetNetworkAttachmentRequest request = new GetNetworkAttachmentRequest
{
    Region = "",
    NetworkAttachment = "",
    Project = "",
};
// Make the request
NetworkAttachment response = networkAttachmentsClient.Get(request);

Get(string, string, string, CallSettings)

public virtual NetworkAttachment Get(string project, string region, string networkAttachment, CallSettings callSettings = null)

Returns the specified NetworkAttachment resource in the given scope.

Parameters
Name Description
project string

Project ID for this request.

region string

Name of the region of this request.

networkAttachment string

Name of the NetworkAttachment resource to return.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
NetworkAttachment

The RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = NetworkAttachmentsClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string networkAttachment = "";
// Make the request
NetworkAttachment response = networkAttachmentsClient.Get(project, region, networkAttachment);

GetAsync(GetNetworkAttachmentRequest, CallSettings)

public virtual Task<NetworkAttachment> GetAsync(GetNetworkAttachmentRequest request, CallSettings callSettings = null)

Returns the specified NetworkAttachment resource in the given scope.

Parameters
Name Description
request GetNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskNetworkAttachment

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
GetNetworkAttachmentRequest request = new GetNetworkAttachmentRequest
{
    Region = "",
    NetworkAttachment = "",
    Project = "",
};
// Make the request
NetworkAttachment response = await networkAttachmentsClient.GetAsync(request);

GetAsync(GetNetworkAttachmentRequest, CancellationToken)

public virtual Task<NetworkAttachment> GetAsync(GetNetworkAttachmentRequest request, CancellationToken cancellationToken)

Returns the specified NetworkAttachment resource in the given scope.

Parameters
Name Description
request GetNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskNetworkAttachment

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
GetNetworkAttachmentRequest request = new GetNetworkAttachmentRequest
{
    Region = "",
    NetworkAttachment = "",
    Project = "",
};
// Make the request
NetworkAttachment response = await networkAttachmentsClient.GetAsync(request);

GetAsync(string, string, string, CallSettings)

public virtual Task<NetworkAttachment> GetAsync(string project, string region, string networkAttachment, CallSettings callSettings = null)

Returns the specified NetworkAttachment resource in the given scope.

Parameters
Name Description
project string

Project ID for this request.

region string

Name of the region of this request.

networkAttachment string

Name of the NetworkAttachment resource to return.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskNetworkAttachment

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string networkAttachment = "";
// Make the request
NetworkAttachment response = await networkAttachmentsClient.GetAsync(project, region, networkAttachment);

GetAsync(string, string, string, CancellationToken)

public virtual Task<NetworkAttachment> GetAsync(string project, string region, string networkAttachment, CancellationToken cancellationToken)

Returns the specified NetworkAttachment resource in the given scope.

Parameters
Name Description
project string

Project ID for this request.

region string

Name of the region of this request.

networkAttachment string

Name of the NetworkAttachment resource to return.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskNetworkAttachment

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string networkAttachment = "";
// Make the request
NetworkAttachment response = await networkAttachmentsClient.GetAsync(project, region, networkAttachment);

GetIamPolicy(GetIamPolicyNetworkAttachmentRequest, CallSettings)

public virtual Policy GetIamPolicy(GetIamPolicyNetworkAttachmentRequest request, CallSettings callSettings = null)

Gets the access control policy for a resource. May be empty if no such policy or resource exists.

Parameters
Name Description
request GetIamPolicyNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Policy

The RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = NetworkAttachmentsClient.Create();
// Initialize request argument(s)
GetIamPolicyNetworkAttachmentRequest request = new GetIamPolicyNetworkAttachmentRequest
{
    Region = "",
    Resource = "",
    Project = "",
    OptionsRequestedPolicyVersion = 0,
};
// Make the request
Policy response = networkAttachmentsClient.GetIamPolicy(request);

GetIamPolicy(string, string, string, CallSettings)

public virtual Policy GetIamPolicy(string project, string region, string resource, CallSettings callSettings = null)

Gets the access control policy for a resource. May be empty if no such policy or resource exists.

Parameters
Name Description
project string

Project ID for this request.

region string

The name of the region for this request.

resource string

Name or id of the resource for this request.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Policy

The RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = NetworkAttachmentsClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string resource = "";
// Make the request
Policy response = networkAttachmentsClient.GetIamPolicy(project, region, resource);

GetIamPolicyAsync(GetIamPolicyNetworkAttachmentRequest, CallSettings)

public virtual Task<Policy> GetIamPolicyAsync(GetIamPolicyNetworkAttachmentRequest request, CallSettings callSettings = null)

Gets the access control policy for a resource. May be empty if no such policy or resource exists.

Parameters
Name Description
request GetIamPolicyNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
GetIamPolicyNetworkAttachmentRequest request = new GetIamPolicyNetworkAttachmentRequest
{
    Region = "",
    Resource = "",
    Project = "",
    OptionsRequestedPolicyVersion = 0,
};
// Make the request
Policy response = await networkAttachmentsClient.GetIamPolicyAsync(request);

GetIamPolicyAsync(GetIamPolicyNetworkAttachmentRequest, CancellationToken)

public virtual Task<Policy> GetIamPolicyAsync(GetIamPolicyNetworkAttachmentRequest request, CancellationToken cancellationToken)

Gets the access control policy for a resource. May be empty if no such policy or resource exists.

Parameters
Name Description
request GetIamPolicyNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
GetIamPolicyNetworkAttachmentRequest request = new GetIamPolicyNetworkAttachmentRequest
{
    Region = "",
    Resource = "",
    Project = "",
    OptionsRequestedPolicyVersion = 0,
};
// Make the request
Policy response = await networkAttachmentsClient.GetIamPolicyAsync(request);

GetIamPolicyAsync(string, string, string, CallSettings)

public virtual Task<Policy> GetIamPolicyAsync(string project, string region, string resource, CallSettings callSettings = null)

Gets the access control policy for a resource. May be empty if no such policy or resource exists.

Parameters
Name Description
project string

Project ID for this request.

region string

The name of the region for this request.

resource string

Name or id of the resource for this request.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string resource = "";
// Make the request
Policy response = await networkAttachmentsClient.GetIamPolicyAsync(project, region, resource);

GetIamPolicyAsync(string, string, string, CancellationToken)

public virtual Task<Policy> GetIamPolicyAsync(string project, string region, string resource, CancellationToken cancellationToken)

Gets the access control policy for a resource. May be empty if no such policy or resource exists.

Parameters
Name Description
project string

Project ID for this request.

region string

The name of the region for this request.

resource string

Name or id of the resource for this request.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string resource = "";
// Make the request
Policy response = await networkAttachmentsClient.GetIamPolicyAsync(project, region, resource);

Insert(InsertNetworkAttachmentRequest, CallSettings)

public virtual Operation<Operation, Operation> Insert(InsertNetworkAttachmentRequest request, CallSettings callSettings = null)

Creates a NetworkAttachment in the specified project in the given scope using the parameters that are included in the request.

Parameters
Name Description
request InsertNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
OperationOperationOperation

The RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = NetworkAttachmentsClient.Create();
// Initialize request argument(s)
InsertNetworkAttachmentRequest request = new InsertNetworkAttachmentRequest
{
    RequestId = "",
    Region = "",
    NetworkAttachmentResource = new NetworkAttachment(),
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = networkAttachmentsClient.Insert(request);

// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = networkAttachmentsClient.PollOnceInsert(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

Insert(string, string, NetworkAttachment, CallSettings)

public virtual Operation<Operation, Operation> Insert(string project, string region, NetworkAttachment networkAttachmentResource, CallSettings callSettings = null)

Creates a NetworkAttachment in the specified project in the given scope using the parameters that are included in the request.

Parameters
Name Description
project string

Project ID for this request.

region string

Name of the region of this request.

networkAttachmentResource NetworkAttachment

The body resource for this request

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
OperationOperationOperation

The RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = NetworkAttachmentsClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
NetworkAttachment networkAttachmentResource = new NetworkAttachment();
// Make the request
lro::Operation<Operation, Operation> response = networkAttachmentsClient.Insert(project, region, networkAttachmentResource);

// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = networkAttachmentsClient.PollOnceInsert(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

InsertAsync(InsertNetworkAttachmentRequest, CallSettings)

public virtual Task<Operation<Operation, Operation>> InsertAsync(InsertNetworkAttachmentRequest request, CallSettings callSettings = null)

Creates a NetworkAttachment in the specified project in the given scope using the parameters that are included in the request.

Parameters
Name Description
request InsertNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
InsertNetworkAttachmentRequest request = new InsertNetworkAttachmentRequest
{
    RequestId = "",
    Region = "",
    NetworkAttachmentResource = new NetworkAttachment(),
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await networkAttachmentsClient.InsertAsync(request);

// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await networkAttachmentsClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

InsertAsync(InsertNetworkAttachmentRequest, CancellationToken)

public virtual Task<Operation<Operation, Operation>> InsertAsync(InsertNetworkAttachmentRequest request, CancellationToken cancellationToken)

Creates a NetworkAttachment in the specified project in the given scope using the parameters that are included in the request.

Parameters
Name Description
request InsertNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
InsertNetworkAttachmentRequest request = new InsertNetworkAttachmentRequest
{
    RequestId = "",
    Region = "",
    NetworkAttachmentResource = new NetworkAttachment(),
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await networkAttachmentsClient.InsertAsync(request);

// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await networkAttachmentsClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

InsertAsync(string, string, NetworkAttachment, CallSettings)

public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, string region, NetworkAttachment networkAttachmentResource, CallSettings callSettings = null)

Creates a NetworkAttachment in the specified project in the given scope using the parameters that are included in the request.

Parameters
Name Description
project string

Project ID for this request.

region string

Name of the region of this request.

networkAttachmentResource NetworkAttachment

The body resource for this request

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
NetworkAttachment networkAttachmentResource = new NetworkAttachment();
// Make the request
lro::Operation<Operation, Operation> response = await networkAttachmentsClient.InsertAsync(project, region, networkAttachmentResource);

// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await networkAttachmentsClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

InsertAsync(string, string, NetworkAttachment, CancellationToken)

public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, string region, NetworkAttachment networkAttachmentResource, CancellationToken cancellationToken)

Creates a NetworkAttachment in the specified project in the given scope using the parameters that are included in the request.

Parameters
Name Description
project string

Project ID for this request.

region string

Name of the region of this request.

networkAttachmentResource NetworkAttachment

The body resource for this request

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
NetworkAttachment networkAttachmentResource = new NetworkAttachment();
// Make the request
lro::Operation<Operation, Operation> response = await networkAttachmentsClient.InsertAsync(project, region, networkAttachmentResource);

// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await networkAttachmentsClient.PollOnceInsertAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

List(ListNetworkAttachmentsRequest, CallSettings)

public virtual PagedEnumerable<NetworkAttachmentList, NetworkAttachment> List(ListNetworkAttachmentsRequest request, CallSettings callSettings = null)

Lists the NetworkAttachments for a project in the given scope.

Parameters
Name Description
request ListNetworkAttachmentsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableNetworkAttachmentListNetworkAttachment

A pageable sequence of NetworkAttachment resources.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = NetworkAttachmentsClient.Create();
// Initialize request argument(s)
ListNetworkAttachmentsRequest request = new ListNetworkAttachmentsRequest
{
    Region = "",
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<NetworkAttachmentList, NetworkAttachment> response = networkAttachmentsClient.List(request);

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

List(string, string, string, int?, CallSettings)

public virtual PagedEnumerable<NetworkAttachmentList, NetworkAttachment> List(string project, string region, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists the NetworkAttachments for a project in the given scope.

Parameters
Name Description
project string

Project ID for this request.

region string

Name of the region of this request.

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedEnumerableNetworkAttachmentListNetworkAttachment

A pageable sequence of NetworkAttachment resources.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = NetworkAttachmentsClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
// Make the request
PagedEnumerable<NetworkAttachmentList, NetworkAttachment> response = networkAttachmentsClient.List(project, region);

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

ListAsync(ListNetworkAttachmentsRequest, CallSettings)

public virtual PagedAsyncEnumerable<NetworkAttachmentList, NetworkAttachment> ListAsync(ListNetworkAttachmentsRequest request, CallSettings callSettings = null)

Lists the NetworkAttachments for a project in the given scope.

Parameters
Name Description
request ListNetworkAttachmentsRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableNetworkAttachmentListNetworkAttachment

A pageable asynchronous sequence of NetworkAttachment resources.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
ListNetworkAttachmentsRequest request = new ListNetworkAttachmentsRequest
{
    Region = "",
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<NetworkAttachmentList, NetworkAttachment> response = networkAttachmentsClient.ListAsync(request);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((NetworkAttachment 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((NetworkAttachmentList page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (NetworkAttachment 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<NetworkAttachment> 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 (NetworkAttachment 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;

ListAsync(string, string, string, int?, CallSettings)

public virtual PagedAsyncEnumerable<NetworkAttachmentList, NetworkAttachment> ListAsync(string project, string region, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists the NetworkAttachments for a project in the given scope.

Parameters
Name Description
project string

Project ID for this request.

region string

Name of the region of this request.

pageToken string

The token returned from the previous request. A value of null or an empty string retrieves the first page.

pageSize int

The size of page to request. The response will not be larger than this, but may be smaller. A value of null or 0 uses a server-defined page size.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
PagedAsyncEnumerableNetworkAttachmentListNetworkAttachment

A pageable asynchronous sequence of NetworkAttachment resources.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
// Make the request
PagedAsyncEnumerable<NetworkAttachmentList, NetworkAttachment> response = networkAttachmentsClient.ListAsync(project, region);

// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((NetworkAttachment 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((NetworkAttachmentList page) =>
{
    // Do something with each page of items
    Console.WriteLine("A page of results:");
    foreach (NetworkAttachment 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<NetworkAttachment> 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 (NetworkAttachment 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;

Patch(PatchNetworkAttachmentRequest, CallSettings)

public virtual Operation<Operation, Operation> Patch(PatchNetworkAttachmentRequest request, CallSettings callSettings = null)

Patches the specified NetworkAttachment resource with the data included in the request. This method supports PATCH semantics and uses JSON merge patch format and processing rules.

Parameters
Name Description
request PatchNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
OperationOperationOperation

The RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = NetworkAttachmentsClient.Create();
// Initialize request argument(s)
PatchNetworkAttachmentRequest request = new PatchNetworkAttachmentRequest
{
    RequestId = "",
    Region = "",
    NetworkAttachmentResource = new NetworkAttachment(),
    NetworkAttachment = "",
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = networkAttachmentsClient.Patch(request);

// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = networkAttachmentsClient.PollOncePatch(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

Patch(string, string, string, NetworkAttachment, CallSettings)

public virtual Operation<Operation, Operation> Patch(string project, string region, string networkAttachment, NetworkAttachment networkAttachmentResource, CallSettings callSettings = null)

Patches the specified NetworkAttachment resource with the data included in the request. This method supports PATCH semantics and uses JSON merge patch format and processing rules.

Parameters
Name Description
project string

Project ID for this request.

region string

Name of the region for this request.

networkAttachment string

Name of the NetworkAttachment resource to patch.

networkAttachmentResource NetworkAttachment

The body resource for this request

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
OperationOperationOperation

The RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = NetworkAttachmentsClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string networkAttachment = "";
NetworkAttachment networkAttachmentResource = new NetworkAttachment();
// Make the request
lro::Operation<Operation, Operation> response = networkAttachmentsClient.Patch(project, region, networkAttachment, networkAttachmentResource);

// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = response.PollUntilCompleted();
// Retrieve the operation result
Operation result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = networkAttachmentsClient.PollOncePatch(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

PatchAsync(PatchNetworkAttachmentRequest, CallSettings)

public virtual Task<Operation<Operation, Operation>> PatchAsync(PatchNetworkAttachmentRequest request, CallSettings callSettings = null)

Patches the specified NetworkAttachment resource with the data included in the request. This method supports PATCH semantics and uses JSON merge patch format and processing rules.

Parameters
Name Description
request PatchNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
PatchNetworkAttachmentRequest request = new PatchNetworkAttachmentRequest
{
    RequestId = "",
    Region = "",
    NetworkAttachmentResource = new NetworkAttachment(),
    NetworkAttachment = "",
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await networkAttachmentsClient.PatchAsync(request);

// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await networkAttachmentsClient.PollOncePatchAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

PatchAsync(PatchNetworkAttachmentRequest, CancellationToken)

public virtual Task<Operation<Operation, Operation>> PatchAsync(PatchNetworkAttachmentRequest request, CancellationToken cancellationToken)

Patches the specified NetworkAttachment resource with the data included in the request. This method supports PATCH semantics and uses JSON merge patch format and processing rules.

Parameters
Name Description
request PatchNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
PatchNetworkAttachmentRequest request = new PatchNetworkAttachmentRequest
{
    RequestId = "",
    Region = "",
    NetworkAttachmentResource = new NetworkAttachment(),
    NetworkAttachment = "",
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await networkAttachmentsClient.PatchAsync(request);

// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await networkAttachmentsClient.PollOncePatchAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

PatchAsync(string, string, string, NetworkAttachment, CallSettings)

public virtual Task<Operation<Operation, Operation>> PatchAsync(string project, string region, string networkAttachment, NetworkAttachment networkAttachmentResource, CallSettings callSettings = null)

Patches the specified NetworkAttachment resource with the data included in the request. This method supports PATCH semantics and uses JSON merge patch format and processing rules.

Parameters
Name Description
project string

Project ID for this request.

region string

Name of the region for this request.

networkAttachment string

Name of the NetworkAttachment resource to patch.

networkAttachmentResource NetworkAttachment

The body resource for this request

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string networkAttachment = "";
NetworkAttachment networkAttachmentResource = new NetworkAttachment();
// Make the request
lro::Operation<Operation, Operation> response = await networkAttachmentsClient.PatchAsync(project, region, networkAttachment, networkAttachmentResource);

// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await networkAttachmentsClient.PollOncePatchAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

PatchAsync(string, string, string, NetworkAttachment, CancellationToken)

public virtual Task<Operation<Operation, Operation>> PatchAsync(string project, string region, string networkAttachment, NetworkAttachment networkAttachmentResource, CancellationToken cancellationToken)

Patches the specified NetworkAttachment resource with the data included in the request. This method supports PATCH semantics and uses JSON merge patch format and processing rules.

Parameters
Name Description
project string

Project ID for this request.

region string

Name of the region for this request.

networkAttachment string

Name of the NetworkAttachment resource to patch.

networkAttachmentResource NetworkAttachment

The body resource for this request

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskOperationOperationOperation

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string networkAttachment = "";
NetworkAttachment networkAttachmentResource = new NetworkAttachment();
// Make the request
lro::Operation<Operation, Operation> response = await networkAttachmentsClient.PatchAsync(project, region, networkAttachment, networkAttachmentResource);

// Poll until the returned long-running operation is complete
lro::Operation<Operation, Operation> completedResponse = await response.PollUntilCompletedAsync();
// Retrieve the operation result
Operation result = completedResponse.Result;

// Or get the name of the operation
string operationName = response.Name;
// This name can be stored, then the long-running operation retrieved later by name
lro::Operation<Operation, Operation> retrievedResponse = await networkAttachmentsClient.PollOncePatchAsync(operationName);
// Check if the retrieved long-running operation has completed
if (retrievedResponse.IsCompleted)
{
    // If it has completed, then access the result
    Operation retrievedResult = retrievedResponse.Result;
}

PollOnceDelete(string, CallSettings)

public virtual Operation<Operation, Operation> PollOnceDelete(string operationName, CallSettings callSettings = null)

Poll an operation once, using an operationName from a previous invocation of Delete.

Parameters
Name Description
operationName string

The name of a previously invoked operation. Must not be null or empty.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
OperationOperationOperation

The result of polling the operation.

PollOnceDeleteAsync(string, CallSettings)

public virtual Task<Operation<Operation, Operation>> PollOnceDeleteAsync(string operationName, CallSettings callSettings = null)

Asynchronously poll an operation once, using an operationName from a previous invocation of Delete .

Parameters
Name Description
operationName string

The name of a previously invoked operation. Must not be null or empty.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskOperationOperationOperation

A task representing the result of polling the operation.

PollOnceInsert(string, CallSettings)

public virtual Operation<Operation, Operation> PollOnceInsert(string operationName, CallSettings callSettings = null)

Poll an operation once, using an operationName from a previous invocation of Insert.

Parameters
Name Description
operationName string

The name of a previously invoked operation. Must not be null or empty.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
OperationOperationOperation

The result of polling the operation.

PollOnceInsertAsync(string, CallSettings)

public virtual Task<Operation<Operation, Operation>> PollOnceInsertAsync(string operationName, CallSettings callSettings = null)

Asynchronously poll an operation once, using an operationName from a previous invocation of Insert .

Parameters
Name Description
operationName string

The name of a previously invoked operation. Must not be null or empty.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskOperationOperationOperation

A task representing the result of polling the operation.

PollOncePatch(string, CallSettings)

public virtual Operation<Operation, Operation> PollOncePatch(string operationName, CallSettings callSettings = null)

Poll an operation once, using an operationName from a previous invocation of Patch.

Parameters
Name Description
operationName string

The name of a previously invoked operation. Must not be null or empty.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
OperationOperationOperation

The result of polling the operation.

PollOncePatchAsync(string, CallSettings)

public virtual Task<Operation<Operation, Operation>> PollOncePatchAsync(string operationName, CallSettings callSettings = null)

Asynchronously poll an operation once, using an operationName from a previous invocation of Patch .

Parameters
Name Description
operationName string

The name of a previously invoked operation. Must not be null or empty.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskOperationOperationOperation

A task representing the result of polling the operation.

SetIamPolicy(SetIamPolicyNetworkAttachmentRequest, CallSettings)

public virtual Policy SetIamPolicy(SetIamPolicyNetworkAttachmentRequest request, CallSettings callSettings = null)

Sets the access control policy on the specified resource. Replaces any existing policy.

Parameters
Name Description
request SetIamPolicyNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Policy

The RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = NetworkAttachmentsClient.Create();
// Initialize request argument(s)
SetIamPolicyNetworkAttachmentRequest request = new SetIamPolicyNetworkAttachmentRequest
{
    Region = "",
    Resource = "",
    Project = "",
    RegionSetPolicyRequestResource = new RegionSetPolicyRequest(),
};
// Make the request
Policy response = networkAttachmentsClient.SetIamPolicy(request);

SetIamPolicy(string, string, string, RegionSetPolicyRequest, CallSettings)

public virtual Policy SetIamPolicy(string project, string region, string resource, RegionSetPolicyRequest regionSetPolicyRequestResource, CallSettings callSettings = null)

Sets the access control policy on the specified resource. Replaces any existing policy.

Parameters
Name Description
project string

Project ID for this request.

region string

The name of the region for this request.

resource string

Name or id of the resource for this request.

regionSetPolicyRequestResource RegionSetPolicyRequest

The body resource for this request

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
Policy

The RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = NetworkAttachmentsClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string resource = "";
RegionSetPolicyRequest regionSetPolicyRequestResource = new RegionSetPolicyRequest();
// Make the request
Policy response = networkAttachmentsClient.SetIamPolicy(project, region, resource, regionSetPolicyRequestResource);

SetIamPolicyAsync(SetIamPolicyNetworkAttachmentRequest, CallSettings)

public virtual Task<Policy> SetIamPolicyAsync(SetIamPolicyNetworkAttachmentRequest request, CallSettings callSettings = null)

Sets the access control policy on the specified resource. Replaces any existing policy.

Parameters
Name Description
request SetIamPolicyNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
SetIamPolicyNetworkAttachmentRequest request = new SetIamPolicyNetworkAttachmentRequest
{
    Region = "",
    Resource = "",
    Project = "",
    RegionSetPolicyRequestResource = new RegionSetPolicyRequest(),
};
// Make the request
Policy response = await networkAttachmentsClient.SetIamPolicyAsync(request);

SetIamPolicyAsync(SetIamPolicyNetworkAttachmentRequest, CancellationToken)

public virtual Task<Policy> SetIamPolicyAsync(SetIamPolicyNetworkAttachmentRequest request, CancellationToken cancellationToken)

Sets the access control policy on the specified resource. Replaces any existing policy.

Parameters
Name Description
request SetIamPolicyNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
SetIamPolicyNetworkAttachmentRequest request = new SetIamPolicyNetworkAttachmentRequest
{
    Region = "",
    Resource = "",
    Project = "",
    RegionSetPolicyRequestResource = new RegionSetPolicyRequest(),
};
// Make the request
Policy response = await networkAttachmentsClient.SetIamPolicyAsync(request);

SetIamPolicyAsync(string, string, string, RegionSetPolicyRequest, CallSettings)

public virtual Task<Policy> SetIamPolicyAsync(string project, string region, string resource, RegionSetPolicyRequest regionSetPolicyRequestResource, CallSettings callSettings = null)

Sets the access control policy on the specified resource. Replaces any existing policy.

Parameters
Name Description
project string

Project ID for this request.

region string

The name of the region for this request.

resource string

Name or id of the resource for this request.

regionSetPolicyRequestResource RegionSetPolicyRequest

The body resource for this request

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string resource = "";
RegionSetPolicyRequest regionSetPolicyRequestResource = new RegionSetPolicyRequest();
// Make the request
Policy response = await networkAttachmentsClient.SetIamPolicyAsync(project, region, resource, regionSetPolicyRequestResource);

SetIamPolicyAsync(string, string, string, RegionSetPolicyRequest, CancellationToken)

public virtual Task<Policy> SetIamPolicyAsync(string project, string region, string resource, RegionSetPolicyRequest regionSetPolicyRequestResource, CancellationToken cancellationToken)

Sets the access control policy on the specified resource. Replaces any existing policy.

Parameters
Name Description
project string

Project ID for this request.

region string

The name of the region for this request.

resource string

Name or id of the resource for this request.

regionSetPolicyRequestResource RegionSetPolicyRequest

The body resource for this request

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskPolicy

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string resource = "";
RegionSetPolicyRequest regionSetPolicyRequestResource = new RegionSetPolicyRequest();
// Make the request
Policy response = await networkAttachmentsClient.SetIamPolicyAsync(project, region, resource, regionSetPolicyRequestResource);

ShutdownDefaultChannelsAsync()

public static Task ShutdownDefaultChannelsAsync()

Shuts down any channels automatically created by Create() and CreateAsync(CancellationToken). Channels which weren't automatically created are not affected.

Returns
Type Description
Task

A task representing the asynchronous shutdown operation.

Remarks

After calling this method, further calls to Create() and CreateAsync(CancellationToken) will create new channels, which could in turn be shut down by another call to this method.

TestIamPermissions(TestIamPermissionsNetworkAttachmentRequest, CallSettings)

public virtual TestPermissionsResponse TestIamPermissions(TestIamPermissionsNetworkAttachmentRequest request, CallSettings callSettings = null)

Returns permissions that a caller has on the specified resource.

Parameters
Name Description
request TestIamPermissionsNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TestPermissionsResponse

The RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = NetworkAttachmentsClient.Create();
// Initialize request argument(s)
TestIamPermissionsNetworkAttachmentRequest request = new TestIamPermissionsNetworkAttachmentRequest
{
    Region = "",
    Resource = "",
    Project = "",
    TestPermissionsRequestResource = new TestPermissionsRequest(),
};
// Make the request
TestPermissionsResponse response = networkAttachmentsClient.TestIamPermissions(request);

TestIamPermissions(string, string, string, TestPermissionsRequest, CallSettings)

public virtual TestPermissionsResponse TestIamPermissions(string project, string region, string resource, TestPermissionsRequest testPermissionsRequestResource, CallSettings callSettings = null)

Returns permissions that a caller has on the specified resource.

Parameters
Name Description
project string

Project ID for this request.

region string

The name of the region for this request.

resource string

Name or id of the resource for this request.

testPermissionsRequestResource TestPermissionsRequest

The body resource for this request

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TestPermissionsResponse

The RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = NetworkAttachmentsClient.Create();
// Initialize request argument(s)
string project = "";
string region = "";
string resource = "";
TestPermissionsRequest testPermissionsRequestResource = new TestPermissionsRequest();
// Make the request
TestPermissionsResponse response = networkAttachmentsClient.TestIamPermissions(project, region, resource, testPermissionsRequestResource);

TestIamPermissionsAsync(TestIamPermissionsNetworkAttachmentRequest, CallSettings)

public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(TestIamPermissionsNetworkAttachmentRequest request, CallSettings callSettings = null)

Returns permissions that a caller has on the specified resource.

Parameters
Name Description
request TestIamPermissionsNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskTestPermissionsResponse

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
TestIamPermissionsNetworkAttachmentRequest request = new TestIamPermissionsNetworkAttachmentRequest
{
    Region = "",
    Resource = "",
    Project = "",
    TestPermissionsRequestResource = new TestPermissionsRequest(),
};
// Make the request
TestPermissionsResponse response = await networkAttachmentsClient.TestIamPermissionsAsync(request);

TestIamPermissionsAsync(TestIamPermissionsNetworkAttachmentRequest, CancellationToken)

public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(TestIamPermissionsNetworkAttachmentRequest request, CancellationToken cancellationToken)

Returns permissions that a caller has on the specified resource.

Parameters
Name Description
request TestIamPermissionsNetworkAttachmentRequest

The request object containing all of the parameters for the API call.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskTestPermissionsResponse

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
TestIamPermissionsNetworkAttachmentRequest request = new TestIamPermissionsNetworkAttachmentRequest
{
    Region = "",
    Resource = "",
    Project = "",
    TestPermissionsRequestResource = new TestPermissionsRequest(),
};
// Make the request
TestPermissionsResponse response = await networkAttachmentsClient.TestIamPermissionsAsync(request);

TestIamPermissionsAsync(string, string, string, TestPermissionsRequest, CallSettings)

public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(string project, string region, string resource, TestPermissionsRequest testPermissionsRequestResource, CallSettings callSettings = null)

Returns permissions that a caller has on the specified resource.

Parameters
Name Description
project string

Project ID for this request.

region string

The name of the region for this request.

resource string

Name or id of the resource for this request.

testPermissionsRequestResource TestPermissionsRequest

The body resource for this request

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskTestPermissionsResponse

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string resource = "";
TestPermissionsRequest testPermissionsRequestResource = new TestPermissionsRequest();
// Make the request
TestPermissionsResponse response = await networkAttachmentsClient.TestIamPermissionsAsync(project, region, resource, testPermissionsRequestResource);

TestIamPermissionsAsync(string, string, string, TestPermissionsRequest, CancellationToken)

public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(string project, string region, string resource, TestPermissionsRequest testPermissionsRequestResource, CancellationToken cancellationToken)

Returns permissions that a caller has on the specified resource.

Parameters
Name Description
project string

Project ID for this request.

region string

The name of the region for this request.

resource string

Name or id of the resource for this request.

testPermissionsRequestResource TestPermissionsRequest

The body resource for this request

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskTestPermissionsResponse

A Task containing the RPC response.

Example
// Create client
NetworkAttachmentsClient networkAttachmentsClient = await NetworkAttachmentsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string region = "";
string resource = "";
TestPermissionsRequest testPermissionsRequestResource = new TestPermissionsRequest();
// Make the request
TestPermissionsResponse response = await networkAttachmentsClient.TestIamPermissionsAsync(project, region, resource, testPermissionsRequestResource);