Compute Engine v1 API - Class InterconnectAttachmentGroupsClient (3.10.0)

public abstract class InterconnectAttachmentGroupsClient

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

InterconnectAttachmentGroups client wrapper, for convenient use.

Inheritance

object > InterconnectAttachmentGroupsClient

Namespace

Google.Cloud.Compute.V1

Assembly

Google.Cloud.Compute.V1.dll

Remarks

The InterconnectAttachmentGroups API.

Properties

DefaultEndpoint

public static string DefaultEndpoint { get; }

The default endpoint for the InterconnectAttachmentGroups 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 InterconnectAttachmentGroups 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 InterconnectAttachmentGroups.InterconnectAttachmentGroupsClient GrpcClient { get; }

The underlying gRPC InterconnectAttachmentGroups client

Property Value
Type Description
InterconnectAttachmentGroupsInterconnectAttachmentGroupsClient

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

Create()

public static InterconnectAttachmentGroupsClient Create()

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

Returns
Type Description
InterconnectAttachmentGroupsClient

The created InterconnectAttachmentGroupsClient.

CreateAsync(CancellationToken)

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

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

Parameter
Name Description
cancellationToken CancellationToken

The CancellationToken to use while creating the client.

Returns
Type Description
TaskInterconnectAttachmentGroupsClient

The task representing the created InterconnectAttachmentGroupsClient.

Delete(DeleteInterconnectAttachmentGroupRequest, CallSettings)

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

Deletes the specified InterconnectAttachmentGroup in the given scope

Parameters
Name Description
request DeleteInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = InterconnectAttachmentGroupsClient.Create();
// Initialize request argument(s)
DeleteInterconnectAttachmentGroupRequest request = new DeleteInterconnectAttachmentGroupRequest
{
    RequestId = "",
    InterconnectAttachmentGroup = "",
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = interconnectAttachmentGroupsClient.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 = interconnectAttachmentGroupsClient.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, CallSettings)

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

Deletes the specified InterconnectAttachmentGroup in the given scope

Parameters
Name Description
project string

Project ID for this request.

interconnectAttachmentGroup string

Name of the InterconnectAttachmentGroup resource to delete.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
OperationOperationOperation

The RPC response.

Example
// Create client
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = InterconnectAttachmentGroupsClient.Create();
// Initialize request argument(s)
string project = "";
string interconnectAttachmentGroup = "";
// Make the request
lro::Operation<Operation, Operation> response = interconnectAttachmentGroupsClient.Delete(project, interconnectAttachmentGroup);

// 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 = interconnectAttachmentGroupsClient.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(DeleteInterconnectAttachmentGroupRequest, CallSettings)

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

Deletes the specified InterconnectAttachmentGroup in the given scope

Parameters
Name Description
request DeleteInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
DeleteInterconnectAttachmentGroupRequest request = new DeleteInterconnectAttachmentGroupRequest
{
    RequestId = "",
    InterconnectAttachmentGroup = "",
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await interconnectAttachmentGroupsClient.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 interconnectAttachmentGroupsClient.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(DeleteInterconnectAttachmentGroupRequest, CancellationToken)

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

Deletes the specified InterconnectAttachmentGroup in the given scope

Parameters
Name Description
request DeleteInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
DeleteInterconnectAttachmentGroupRequest request = new DeleteInterconnectAttachmentGroupRequest
{
    RequestId = "",
    InterconnectAttachmentGroup = "",
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await interconnectAttachmentGroupsClient.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 interconnectAttachmentGroupsClient.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, CallSettings)

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

Deletes the specified InterconnectAttachmentGroup in the given scope

Parameters
Name Description
project string

Project ID for this request.

interconnectAttachmentGroup string

Name of the InterconnectAttachmentGroup 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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string interconnectAttachmentGroup = "";
// Make the request
lro::Operation<Operation, Operation> response = await interconnectAttachmentGroupsClient.DeleteAsync(project, interconnectAttachmentGroup);

// 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 interconnectAttachmentGroupsClient.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, CancellationToken)

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

Deletes the specified InterconnectAttachmentGroup in the given scope

Parameters
Name Description
project string

Project ID for this request.

interconnectAttachmentGroup string

Name of the InterconnectAttachmentGroup 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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string interconnectAttachmentGroup = "";
// Make the request
lro::Operation<Operation, Operation> response = await interconnectAttachmentGroupsClient.DeleteAsync(project, interconnectAttachmentGroup);

// 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 interconnectAttachmentGroupsClient.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(GetInterconnectAttachmentGroupRequest, CallSettings)

public virtual InterconnectAttachmentGroup Get(GetInterconnectAttachmentGroupRequest request, CallSettings callSettings = null)

Returns the specified InterconnectAttachmentGroup resource in the given scope.

Parameters
Name Description
request GetInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroup

The RPC response.

Example
// Create client
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = InterconnectAttachmentGroupsClient.Create();
// Initialize request argument(s)
GetInterconnectAttachmentGroupRequest request = new GetInterconnectAttachmentGroupRequest
{
    InterconnectAttachmentGroup = "",
    Project = "",
};
// Make the request
InterconnectAttachmentGroup response = interconnectAttachmentGroupsClient.Get(request);

Get(string, string, CallSettings)

public virtual InterconnectAttachmentGroup Get(string project, string interconnectAttachmentGroup, CallSettings callSettings = null)

Returns the specified InterconnectAttachmentGroup resource in the given scope.

Parameters
Name Description
project string

Project ID for this request.

interconnectAttachmentGroup string

Name of the InterconnectAttachmentGroup resource to return.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
InterconnectAttachmentGroup

The RPC response.

Example
// Create client
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = InterconnectAttachmentGroupsClient.Create();
// Initialize request argument(s)
string project = "";
string interconnectAttachmentGroup = "";
// Make the request
InterconnectAttachmentGroup response = interconnectAttachmentGroupsClient.Get(project, interconnectAttachmentGroup);

GetAsync(GetInterconnectAttachmentGroupRequest, CallSettings)

public virtual Task<InterconnectAttachmentGroup> GetAsync(GetInterconnectAttachmentGroupRequest request, CallSettings callSettings = null)

Returns the specified InterconnectAttachmentGroup resource in the given scope.

Parameters
Name Description
request GetInterconnectAttachmentGroupRequest

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
TaskInterconnectAttachmentGroup

A Task containing the RPC response.

Example
// Create client
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
GetInterconnectAttachmentGroupRequest request = new GetInterconnectAttachmentGroupRequest
{
    InterconnectAttachmentGroup = "",
    Project = "",
};
// Make the request
InterconnectAttachmentGroup response = await interconnectAttachmentGroupsClient.GetAsync(request);

GetAsync(GetInterconnectAttachmentGroupRequest, CancellationToken)

public virtual Task<InterconnectAttachmentGroup> GetAsync(GetInterconnectAttachmentGroupRequest request, CancellationToken cancellationToken)

Returns the specified InterconnectAttachmentGroup resource in the given scope.

Parameters
Name Description
request GetInterconnectAttachmentGroupRequest

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

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskInterconnectAttachmentGroup

A Task containing the RPC response.

Example
// Create client
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
GetInterconnectAttachmentGroupRequest request = new GetInterconnectAttachmentGroupRequest
{
    InterconnectAttachmentGroup = "",
    Project = "",
};
// Make the request
InterconnectAttachmentGroup response = await interconnectAttachmentGroupsClient.GetAsync(request);

GetAsync(string, string, CallSettings)

public virtual Task<InterconnectAttachmentGroup> GetAsync(string project, string interconnectAttachmentGroup, CallSettings callSettings = null)

Returns the specified InterconnectAttachmentGroup resource in the given scope.

Parameters
Name Description
project string

Project ID for this request.

interconnectAttachmentGroup string

Name of the InterconnectAttachmentGroup resource to return.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskInterconnectAttachmentGroup

A Task containing the RPC response.

Example
// Create client
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string interconnectAttachmentGroup = "";
// Make the request
InterconnectAttachmentGroup response = await interconnectAttachmentGroupsClient.GetAsync(project, interconnectAttachmentGroup);

GetAsync(string, string, CancellationToken)

public virtual Task<InterconnectAttachmentGroup> GetAsync(string project, string interconnectAttachmentGroup, CancellationToken cancellationToken)

Returns the specified InterconnectAttachmentGroup resource in the given scope.

Parameters
Name Description
project string

Project ID for this request.

interconnectAttachmentGroup string

Name of the InterconnectAttachmentGroup resource to return.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskInterconnectAttachmentGroup

A Task containing the RPC response.

Example
// Create client
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string interconnectAttachmentGroup = "";
// Make the request
InterconnectAttachmentGroup response = await interconnectAttachmentGroupsClient.GetAsync(project, interconnectAttachmentGroup);

GetIamPolicy(GetIamPolicyInterconnectAttachmentGroupRequest, CallSettings)

public virtual Policy GetIamPolicy(GetIamPolicyInterconnectAttachmentGroupRequest 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 GetIamPolicyInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = InterconnectAttachmentGroupsClient.Create();
// Initialize request argument(s)
GetIamPolicyInterconnectAttachmentGroupRequest request = new GetIamPolicyInterconnectAttachmentGroupRequest
{
    Resource = "",
    Project = "",
    OptionsRequestedPolicyVersion = 0,
};
// Make the request
Policy response = interconnectAttachmentGroupsClient.GetIamPolicy(request);

GetIamPolicy(string, string, CallSettings)

public virtual Policy GetIamPolicy(string project, 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.

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = InterconnectAttachmentGroupsClient.Create();
// Initialize request argument(s)
string project = "";
string resource = "";
// Make the request
Policy response = interconnectAttachmentGroupsClient.GetIamPolicy(project, resource);

GetIamPolicyAsync(GetIamPolicyInterconnectAttachmentGroupRequest, CallSettings)

public virtual Task<Policy> GetIamPolicyAsync(GetIamPolicyInterconnectAttachmentGroupRequest 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 GetIamPolicyInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
GetIamPolicyInterconnectAttachmentGroupRequest request = new GetIamPolicyInterconnectAttachmentGroupRequest
{
    Resource = "",
    Project = "",
    OptionsRequestedPolicyVersion = 0,
};
// Make the request
Policy response = await interconnectAttachmentGroupsClient.GetIamPolicyAsync(request);

GetIamPolicyAsync(GetIamPolicyInterconnectAttachmentGroupRequest, CancellationToken)

public virtual Task<Policy> GetIamPolicyAsync(GetIamPolicyInterconnectAttachmentGroupRequest 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 GetIamPolicyInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
GetIamPolicyInterconnectAttachmentGroupRequest request = new GetIamPolicyInterconnectAttachmentGroupRequest
{
    Resource = "",
    Project = "",
    OptionsRequestedPolicyVersion = 0,
};
// Make the request
Policy response = await interconnectAttachmentGroupsClient.GetIamPolicyAsync(request);

GetIamPolicyAsync(string, string, CallSettings)

public virtual Task<Policy> GetIamPolicyAsync(string project, 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.

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
// Make the request
Policy response = await interconnectAttachmentGroupsClient.GetIamPolicyAsync(project, resource);

GetIamPolicyAsync(string, string, CancellationToken)

public virtual Task<Policy> GetIamPolicyAsync(string project, 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.

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
// Make the request
Policy response = await interconnectAttachmentGroupsClient.GetIamPolicyAsync(project, resource);

GetOperationalStatus(GetOperationalStatusInterconnectAttachmentGroupRequest, CallSettings)

public virtual InterconnectAttachmentGroupsGetOperationalStatusResponse GetOperationalStatus(GetOperationalStatusInterconnectAttachmentGroupRequest request, CallSettings callSettings = null)

Returns the InterconnectAttachmentStatuses for the specified InterconnectAttachmentGroup resource.

Parameters
Name Description
request GetOperationalStatusInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroupsGetOperationalStatusResponse

The RPC response.

Example
// Create client
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = InterconnectAttachmentGroupsClient.Create();
// Initialize request argument(s)
GetOperationalStatusInterconnectAttachmentGroupRequest request = new GetOperationalStatusInterconnectAttachmentGroupRequest
{
    InterconnectAttachmentGroup = "",
    Project = "",
};
// Make the request
InterconnectAttachmentGroupsGetOperationalStatusResponse response = interconnectAttachmentGroupsClient.GetOperationalStatus(request);

GetOperationalStatus(string, string, CallSettings)

public virtual InterconnectAttachmentGroupsGetOperationalStatusResponse GetOperationalStatus(string project, string interconnectAttachmentGroup, CallSettings callSettings = null)

Returns the InterconnectAttachmentStatuses for the specified InterconnectAttachmentGroup resource.

Parameters
Name Description
project string

Project ID for this request.

interconnectAttachmentGroup string

Name of the interconnectAttachmentGroup resource to query.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
InterconnectAttachmentGroupsGetOperationalStatusResponse

The RPC response.

Example
// Create client
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = InterconnectAttachmentGroupsClient.Create();
// Initialize request argument(s)
string project = "";
string interconnectAttachmentGroup = "";
// Make the request
InterconnectAttachmentGroupsGetOperationalStatusResponse response = interconnectAttachmentGroupsClient.GetOperationalStatus(project, interconnectAttachmentGroup);

GetOperationalStatusAsync(GetOperationalStatusInterconnectAttachmentGroupRequest, CallSettings)

public virtual Task<InterconnectAttachmentGroupsGetOperationalStatusResponse> GetOperationalStatusAsync(GetOperationalStatusInterconnectAttachmentGroupRequest request, CallSettings callSettings = null)

Returns the InterconnectAttachmentStatuses for the specified InterconnectAttachmentGroup resource.

Parameters
Name Description
request GetOperationalStatusInterconnectAttachmentGroupRequest

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
TaskInterconnectAttachmentGroupsGetOperationalStatusResponse

A Task containing the RPC response.

Example
// Create client
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
GetOperationalStatusInterconnectAttachmentGroupRequest request = new GetOperationalStatusInterconnectAttachmentGroupRequest
{
    InterconnectAttachmentGroup = "",
    Project = "",
};
// Make the request
InterconnectAttachmentGroupsGetOperationalStatusResponse response = await interconnectAttachmentGroupsClient.GetOperationalStatusAsync(request);

GetOperationalStatusAsync(GetOperationalStatusInterconnectAttachmentGroupRequest, CancellationToken)

public virtual Task<InterconnectAttachmentGroupsGetOperationalStatusResponse> GetOperationalStatusAsync(GetOperationalStatusInterconnectAttachmentGroupRequest request, CancellationToken cancellationToken)

Returns the InterconnectAttachmentStatuses for the specified InterconnectAttachmentGroup resource.

Parameters
Name Description
request GetOperationalStatusInterconnectAttachmentGroupRequest

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

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskInterconnectAttachmentGroupsGetOperationalStatusResponse

A Task containing the RPC response.

Example
// Create client
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
GetOperationalStatusInterconnectAttachmentGroupRequest request = new GetOperationalStatusInterconnectAttachmentGroupRequest
{
    InterconnectAttachmentGroup = "",
    Project = "",
};
// Make the request
InterconnectAttachmentGroupsGetOperationalStatusResponse response = await interconnectAttachmentGroupsClient.GetOperationalStatusAsync(request);

GetOperationalStatusAsync(string, string, CallSettings)

public virtual Task<InterconnectAttachmentGroupsGetOperationalStatusResponse> GetOperationalStatusAsync(string project, string interconnectAttachmentGroup, CallSettings callSettings = null)

Returns the InterconnectAttachmentStatuses for the specified InterconnectAttachmentGroup resource.

Parameters
Name Description
project string

Project ID for this request.

interconnectAttachmentGroup string

Name of the interconnectAttachmentGroup resource to query.

callSettings CallSettings

If not null, applies overrides to this RPC call.

Returns
Type Description
TaskInterconnectAttachmentGroupsGetOperationalStatusResponse

A Task containing the RPC response.

Example
// Create client
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string interconnectAttachmentGroup = "";
// Make the request
InterconnectAttachmentGroupsGetOperationalStatusResponse response = await interconnectAttachmentGroupsClient.GetOperationalStatusAsync(project, interconnectAttachmentGroup);

GetOperationalStatusAsync(string, string, CancellationToken)

public virtual Task<InterconnectAttachmentGroupsGetOperationalStatusResponse> GetOperationalStatusAsync(string project, string interconnectAttachmentGroup, CancellationToken cancellationToken)

Returns the InterconnectAttachmentStatuses for the specified InterconnectAttachmentGroup resource.

Parameters
Name Description
project string

Project ID for this request.

interconnectAttachmentGroup string

Name of the interconnectAttachmentGroup resource to query.

cancellationToken CancellationToken

A CancellationToken to use for this RPC.

Returns
Type Description
TaskInterconnectAttachmentGroupsGetOperationalStatusResponse

A Task containing the RPC response.

Example
// Create client
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string interconnectAttachmentGroup = "";
// Make the request
InterconnectAttachmentGroupsGetOperationalStatusResponse response = await interconnectAttachmentGroupsClient.GetOperationalStatusAsync(project, interconnectAttachmentGroup);

Insert(InsertInterconnectAttachmentGroupRequest, CallSettings)

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

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

Parameters
Name Description
request InsertInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = InterconnectAttachmentGroupsClient.Create();
// Initialize request argument(s)
InsertInterconnectAttachmentGroupRequest request = new InsertInterconnectAttachmentGroupRequest
{
    InterconnectAttachmentGroupResource = new InterconnectAttachmentGroup(),
    RequestId = "",
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = interconnectAttachmentGroupsClient.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 = interconnectAttachmentGroupsClient.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, InterconnectAttachmentGroup, CallSettings)

public virtual Operation<Operation, Operation> Insert(string project, InterconnectAttachmentGroup interconnectAttachmentGroupResource, CallSettings callSettings = null)

Creates a InterconnectAttachmentGroup 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.

interconnectAttachmentGroupResource InterconnectAttachmentGroup

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = InterconnectAttachmentGroupsClient.Create();
// Initialize request argument(s)
string project = "";
InterconnectAttachmentGroup interconnectAttachmentGroupResource = new InterconnectAttachmentGroup();
// Make the request
lro::Operation<Operation, Operation> response = interconnectAttachmentGroupsClient.Insert(project, interconnectAttachmentGroupResource);

// 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 = interconnectAttachmentGroupsClient.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(InsertInterconnectAttachmentGroupRequest, CallSettings)

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

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

Parameters
Name Description
request InsertInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
InsertInterconnectAttachmentGroupRequest request = new InsertInterconnectAttachmentGroupRequest
{
    InterconnectAttachmentGroupResource = new InterconnectAttachmentGroup(),
    RequestId = "",
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await interconnectAttachmentGroupsClient.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 interconnectAttachmentGroupsClient.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(InsertInterconnectAttachmentGroupRequest, CancellationToken)

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

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

Parameters
Name Description
request InsertInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
InsertInterconnectAttachmentGroupRequest request = new InsertInterconnectAttachmentGroupRequest
{
    InterconnectAttachmentGroupResource = new InterconnectAttachmentGroup(),
    RequestId = "",
    Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await interconnectAttachmentGroupsClient.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 interconnectAttachmentGroupsClient.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, InterconnectAttachmentGroup, CallSettings)

public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, InterconnectAttachmentGroup interconnectAttachmentGroupResource, CallSettings callSettings = null)

Creates a InterconnectAttachmentGroup 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.

interconnectAttachmentGroupResource InterconnectAttachmentGroup

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
InterconnectAttachmentGroup interconnectAttachmentGroupResource = new InterconnectAttachmentGroup();
// Make the request
lro::Operation<Operation, Operation> response = await interconnectAttachmentGroupsClient.InsertAsync(project, interconnectAttachmentGroupResource);

// 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 interconnectAttachmentGroupsClient.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, InterconnectAttachmentGroup, CancellationToken)

public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, InterconnectAttachmentGroup interconnectAttachmentGroupResource, CancellationToken cancellationToken)

Creates a InterconnectAttachmentGroup 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.

interconnectAttachmentGroupResource InterconnectAttachmentGroup

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
InterconnectAttachmentGroup interconnectAttachmentGroupResource = new InterconnectAttachmentGroup();
// Make the request
lro::Operation<Operation, Operation> response = await interconnectAttachmentGroupsClient.InsertAsync(project, interconnectAttachmentGroupResource);

// 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 interconnectAttachmentGroupsClient.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(ListInterconnectAttachmentGroupsRequest, CallSettings)

public virtual PagedEnumerable<InterconnectAttachmentGroupsListResponse, InterconnectAttachmentGroup> List(ListInterconnectAttachmentGroupsRequest request, CallSettings callSettings = null)

Lists the InterconnectAttachmentGroups for a project in the given scope.

Parameters
Name Description
request ListInterconnectAttachmentGroupsRequest

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
PagedEnumerableInterconnectAttachmentGroupsListResponseInterconnectAttachmentGroup

A pageable sequence of InterconnectAttachmentGroup resources.

Example
// Create client
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = InterconnectAttachmentGroupsClient.Create();
// Initialize request argument(s)
ListInterconnectAttachmentGroupsRequest request = new ListInterconnectAttachmentGroupsRequest
{
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<InterconnectAttachmentGroupsListResponse, InterconnectAttachmentGroup> response = interconnectAttachmentGroupsClient.List(request);

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

public virtual PagedEnumerable<InterconnectAttachmentGroupsListResponse, InterconnectAttachmentGroup> List(string project, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists the InterconnectAttachmentGroups for a project in the given scope.

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
PagedEnumerableInterconnectAttachmentGroupsListResponseInterconnectAttachmentGroup

A pageable sequence of InterconnectAttachmentGroup resources.

Example
// Create client
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = InterconnectAttachmentGroupsClient.Create();
// Initialize request argument(s)
string project = "";
// Make the request
PagedEnumerable<InterconnectAttachmentGroupsListResponse, InterconnectAttachmentGroup> response = interconnectAttachmentGroupsClient.List(project);

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

public virtual PagedAsyncEnumerable<InterconnectAttachmentGroupsListResponse, InterconnectAttachmentGroup> ListAsync(ListInterconnectAttachmentGroupsRequest request, CallSettings callSettings = null)

Lists the InterconnectAttachmentGroups for a project in the given scope.

Parameters
Name Description
request ListInterconnectAttachmentGroupsRequest

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
PagedAsyncEnumerableInterconnectAttachmentGroupsListResponseInterconnectAttachmentGroup

A pageable asynchronous sequence of InterconnectAttachmentGroup resources.

Example
// Create client
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
ListInterconnectAttachmentGroupsRequest request = new ListInterconnectAttachmentGroupsRequest
{
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<InterconnectAttachmentGroupsListResponse, InterconnectAttachmentGroup> response = interconnectAttachmentGroupsClient.ListAsync(request);

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

public virtual PagedAsyncEnumerable<InterconnectAttachmentGroupsListResponse, InterconnectAttachmentGroup> ListAsync(string project, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)

Lists the InterconnectAttachmentGroups for a project in the given scope.

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
PagedAsyncEnumerableInterconnectAttachmentGroupsListResponseInterconnectAttachmentGroup

A pageable asynchronous sequence of InterconnectAttachmentGroup resources.

Example
// Create client
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
// Make the request
PagedAsyncEnumerable<InterconnectAttachmentGroupsListResponse, InterconnectAttachmentGroup> response = interconnectAttachmentGroupsClient.ListAsync(project);

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

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

Patches the specified InterconnectAttachmentGroup 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 PatchInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = InterconnectAttachmentGroupsClient.Create();
// Initialize request argument(s)
PatchInterconnectAttachmentGroupRequest request = new PatchInterconnectAttachmentGroupRequest
{
    InterconnectAttachmentGroupResource = new InterconnectAttachmentGroup(),
    RequestId = "",
    InterconnectAttachmentGroup = "",
    Project = "",
    UpdateMask = "",
};
// Make the request
lro::Operation<Operation, Operation> response = interconnectAttachmentGroupsClient.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 = interconnectAttachmentGroupsClient.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, InterconnectAttachmentGroup, CallSettings)

public virtual Operation<Operation, Operation> Patch(string project, string interconnectAttachmentGroup, InterconnectAttachmentGroup interconnectAttachmentGroupResource, CallSettings callSettings = null)

Patches the specified InterconnectAttachmentGroup 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.

interconnectAttachmentGroup string

Name of the InterconnectAttachmentGroup resource to patch.

interconnectAttachmentGroupResource InterconnectAttachmentGroup

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = InterconnectAttachmentGroupsClient.Create();
// Initialize request argument(s)
string project = "";
string interconnectAttachmentGroup = "";
InterconnectAttachmentGroup interconnectAttachmentGroupResource = new InterconnectAttachmentGroup();
// Make the request
lro::Operation<Operation, Operation> response = interconnectAttachmentGroupsClient.Patch(project, interconnectAttachmentGroup, interconnectAttachmentGroupResource);

// 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 = interconnectAttachmentGroupsClient.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(PatchInterconnectAttachmentGroupRequest, CallSettings)

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

Patches the specified InterconnectAttachmentGroup 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 PatchInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
PatchInterconnectAttachmentGroupRequest request = new PatchInterconnectAttachmentGroupRequest
{
    InterconnectAttachmentGroupResource = new InterconnectAttachmentGroup(),
    RequestId = "",
    InterconnectAttachmentGroup = "",
    Project = "",
    UpdateMask = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await interconnectAttachmentGroupsClient.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 interconnectAttachmentGroupsClient.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(PatchInterconnectAttachmentGroupRequest, CancellationToken)

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

Patches the specified InterconnectAttachmentGroup 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 PatchInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
PatchInterconnectAttachmentGroupRequest request = new PatchInterconnectAttachmentGroupRequest
{
    InterconnectAttachmentGroupResource = new InterconnectAttachmentGroup(),
    RequestId = "",
    InterconnectAttachmentGroup = "",
    Project = "",
    UpdateMask = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await interconnectAttachmentGroupsClient.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 interconnectAttachmentGroupsClient.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, InterconnectAttachmentGroup, CallSettings)

public virtual Task<Operation<Operation, Operation>> PatchAsync(string project, string interconnectAttachmentGroup, InterconnectAttachmentGroup interconnectAttachmentGroupResource, CallSettings callSettings = null)

Patches the specified InterconnectAttachmentGroup 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.

interconnectAttachmentGroup string

Name of the InterconnectAttachmentGroup resource to patch.

interconnectAttachmentGroupResource InterconnectAttachmentGroup

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string interconnectAttachmentGroup = "";
InterconnectAttachmentGroup interconnectAttachmentGroupResource = new InterconnectAttachmentGroup();
// Make the request
lro::Operation<Operation, Operation> response = await interconnectAttachmentGroupsClient.PatchAsync(project, interconnectAttachmentGroup, interconnectAttachmentGroupResource);

// 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 interconnectAttachmentGroupsClient.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, InterconnectAttachmentGroup, CancellationToken)

public virtual Task<Operation<Operation, Operation>> PatchAsync(string project, string interconnectAttachmentGroup, InterconnectAttachmentGroup interconnectAttachmentGroupResource, CancellationToken cancellationToken)

Patches the specified InterconnectAttachmentGroup 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.

interconnectAttachmentGroup string

Name of the InterconnectAttachmentGroup resource to patch.

interconnectAttachmentGroupResource InterconnectAttachmentGroup

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string interconnectAttachmentGroup = "";
InterconnectAttachmentGroup interconnectAttachmentGroupResource = new InterconnectAttachmentGroup();
// Make the request
lro::Operation<Operation, Operation> response = await interconnectAttachmentGroupsClient.PatchAsync(project, interconnectAttachmentGroup, interconnectAttachmentGroupResource);

// 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 interconnectAttachmentGroupsClient.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(SetIamPolicyInterconnectAttachmentGroupRequest, CallSettings)

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

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

Parameters
Name Description
request SetIamPolicyInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = InterconnectAttachmentGroupsClient.Create();
// Initialize request argument(s)
SetIamPolicyInterconnectAttachmentGroupRequest request = new SetIamPolicyInterconnectAttachmentGroupRequest
{
    Resource = "",
    Project = "",
    GlobalSetPolicyRequestResource = new GlobalSetPolicyRequest(),
};
// Make the request
Policy response = interconnectAttachmentGroupsClient.SetIamPolicy(request);

SetIamPolicy(string, string, GlobalSetPolicyRequest, CallSettings)

public virtual Policy SetIamPolicy(string project, string resource, GlobalSetPolicyRequest globalSetPolicyRequestResource, 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.

resource string

Name or id of the resource for this request.

globalSetPolicyRequestResource GlobalSetPolicyRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = InterconnectAttachmentGroupsClient.Create();
// Initialize request argument(s)
string project = "";
string resource = "";
GlobalSetPolicyRequest globalSetPolicyRequestResource = new GlobalSetPolicyRequest();
// Make the request
Policy response = interconnectAttachmentGroupsClient.SetIamPolicy(project, resource, globalSetPolicyRequestResource);

SetIamPolicyAsync(SetIamPolicyInterconnectAttachmentGroupRequest, CallSettings)

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

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

Parameters
Name Description
request SetIamPolicyInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
SetIamPolicyInterconnectAttachmentGroupRequest request = new SetIamPolicyInterconnectAttachmentGroupRequest
{
    Resource = "",
    Project = "",
    GlobalSetPolicyRequestResource = new GlobalSetPolicyRequest(),
};
// Make the request
Policy response = await interconnectAttachmentGroupsClient.SetIamPolicyAsync(request);

SetIamPolicyAsync(SetIamPolicyInterconnectAttachmentGroupRequest, CancellationToken)

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

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

Parameters
Name Description
request SetIamPolicyInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
SetIamPolicyInterconnectAttachmentGroupRequest request = new SetIamPolicyInterconnectAttachmentGroupRequest
{
    Resource = "",
    Project = "",
    GlobalSetPolicyRequestResource = new GlobalSetPolicyRequest(),
};
// Make the request
Policy response = await interconnectAttachmentGroupsClient.SetIamPolicyAsync(request);

SetIamPolicyAsync(string, string, GlobalSetPolicyRequest, CallSettings)

public virtual Task<Policy> SetIamPolicyAsync(string project, string resource, GlobalSetPolicyRequest globalSetPolicyRequestResource, 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.

resource string

Name or id of the resource for this request.

globalSetPolicyRequestResource GlobalSetPolicyRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
GlobalSetPolicyRequest globalSetPolicyRequestResource = new GlobalSetPolicyRequest();
// Make the request
Policy response = await interconnectAttachmentGroupsClient.SetIamPolicyAsync(project, resource, globalSetPolicyRequestResource);

SetIamPolicyAsync(string, string, GlobalSetPolicyRequest, CancellationToken)

public virtual Task<Policy> SetIamPolicyAsync(string project, string resource, GlobalSetPolicyRequest globalSetPolicyRequestResource, 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.

resource string

Name or id of the resource for this request.

globalSetPolicyRequestResource GlobalSetPolicyRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
GlobalSetPolicyRequest globalSetPolicyRequestResource = new GlobalSetPolicyRequest();
// Make the request
Policy response = await interconnectAttachmentGroupsClient.SetIamPolicyAsync(project, resource, globalSetPolicyRequestResource);

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(TestIamPermissionsInterconnectAttachmentGroupRequest, CallSettings)

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

Returns permissions that a caller has on the specified resource.

Parameters
Name Description
request TestIamPermissionsInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = InterconnectAttachmentGroupsClient.Create();
// Initialize request argument(s)
TestIamPermissionsInterconnectAttachmentGroupRequest request = new TestIamPermissionsInterconnectAttachmentGroupRequest
{
    Resource = "",
    Project = "",
    TestPermissionsRequestResource = new TestPermissionsRequest(),
};
// Make the request
TestPermissionsResponse response = interconnectAttachmentGroupsClient.TestIamPermissions(request);

TestIamPermissions(string, string, TestPermissionsRequest, CallSettings)

public virtual TestPermissionsResponse TestIamPermissions(string project, 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.

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = InterconnectAttachmentGroupsClient.Create();
// Initialize request argument(s)
string project = "";
string resource = "";
TestPermissionsRequest testPermissionsRequestResource = new TestPermissionsRequest();
// Make the request
TestPermissionsResponse response = interconnectAttachmentGroupsClient.TestIamPermissions(project, resource, testPermissionsRequestResource);

TestIamPermissionsAsync(TestIamPermissionsInterconnectAttachmentGroupRequest, CallSettings)

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

Returns permissions that a caller has on the specified resource.

Parameters
Name Description
request TestIamPermissionsInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
TestIamPermissionsInterconnectAttachmentGroupRequest request = new TestIamPermissionsInterconnectAttachmentGroupRequest
{
    Resource = "",
    Project = "",
    TestPermissionsRequestResource = new TestPermissionsRequest(),
};
// Make the request
TestPermissionsResponse response = await interconnectAttachmentGroupsClient.TestIamPermissionsAsync(request);

TestIamPermissionsAsync(TestIamPermissionsInterconnectAttachmentGroupRequest, CancellationToken)

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

Returns permissions that a caller has on the specified resource.

Parameters
Name Description
request TestIamPermissionsInterconnectAttachmentGroupRequest

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
TestIamPermissionsInterconnectAttachmentGroupRequest request = new TestIamPermissionsInterconnectAttachmentGroupRequest
{
    Resource = "",
    Project = "",
    TestPermissionsRequestResource = new TestPermissionsRequest(),
};
// Make the request
TestPermissionsResponse response = await interconnectAttachmentGroupsClient.TestIamPermissionsAsync(request);

TestIamPermissionsAsync(string, string, TestPermissionsRequest, CallSettings)

public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(string project, 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.

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
TestPermissionsRequest testPermissionsRequestResource = new TestPermissionsRequest();
// Make the request
TestPermissionsResponse response = await interconnectAttachmentGroupsClient.TestIamPermissionsAsync(project, resource, testPermissionsRequestResource);

TestIamPermissionsAsync(string, string, TestPermissionsRequest, CancellationToken)

public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(string project, 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.

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
InterconnectAttachmentGroupsClient interconnectAttachmentGroupsClient = await InterconnectAttachmentGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
TestPermissionsRequest testPermissionsRequestResource = new TestPermissionsRequest();
// Make the request
TestPermissionsResponse response = await interconnectAttachmentGroupsClient.TestIamPermissionsAsync(project, resource, testPermissionsRequestResource);