public abstract class InterconnectGroupsClient
Reference documentation and code samples for the Compute Engine v1 API class InterconnectGroupsClient.
InterconnectGroups client wrapper, for convenient use.
Derived Types
Namespace
Google.Cloud.Compute.V1Assembly
Google.Cloud.Compute.V1.dll
Remarks
The InterconnectGroups API.
Properties
CreateMembersOperationsClient
public virtual OperationsClient CreateMembersOperationsClient { get; }
The long-running operations client for CreateMembers
.
Property Value | |
---|---|
Type | Description |
OperationsClient |
DefaultEndpoint
public static string DefaultEndpoint { get; }
The default endpoint for the InterconnectGroups 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 InterconnectGroups scopes.
Property Value | |
---|---|
Type | Description |
IReadOnlyListstring |
The default InterconnectGroups scopes are:
DeleteOperationsClient
public virtual OperationsClient DeleteOperationsClient { get; }
The long-running operations client for Delete
.
Property Value | |
---|---|
Type | Description |
OperationsClient |
GrpcClient
public virtual InterconnectGroups.InterconnectGroupsClient GrpcClient { get; }
The underlying gRPC InterconnectGroups client
Property Value | |
---|---|
Type | Description |
InterconnectGroupsInterconnectGroupsClient |
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 InterconnectGroupsClient Create()
Synchronously creates a InterconnectGroupsClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use InterconnectGroupsClientBuilder .
Returns | |
---|---|
Type | Description |
InterconnectGroupsClient |
The created InterconnectGroupsClient. |
CreateAsync(CancellationToken)
public static Task<InterconnectGroupsClient> CreateAsync(CancellationToken cancellationToken = default)
Asynchronously creates a InterconnectGroupsClient using the default credentials, endpoint and settings. To specify custom credentials or other settings, use InterconnectGroupsClientBuilder .
Parameter | |
---|---|
Name | Description |
cancellationToken |
CancellationToken The CancellationToken to use while creating the client. |
Returns | |
---|---|
Type | Description |
TaskInterconnectGroupsClient |
The task representing the created InterconnectGroupsClient. |
CreateMembers(CreateMembersInterconnectGroupRequest, CallSettings)
public virtual Operation<Operation, Operation> CreateMembers(CreateMembersInterconnectGroupRequest request, CallSettings callSettings = null)
Create Interconnects with redundancy by creating them in a specified interconnect group.
Parameters | |
---|---|
Name | Description |
request |
CreateMembersInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
CreateMembersInterconnectGroupRequest request = new CreateMembersInterconnectGroupRequest
{
Project = "",
InterconnectGroupsCreateMembersRequestResource = new InterconnectGroupsCreateMembersRequest(),
InterconnectGroup = "",
};
// Make the request
lro::Operation<Operation, Operation> response = interconnectGroupsClient.CreateMembers(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 = interconnectGroupsClient.PollOnceCreateMembers(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;
}
CreateMembers(string, string, InterconnectGroupsCreateMembersRequest, CallSettings)
public virtual Operation<Operation, Operation> CreateMembers(string project, string interconnectGroup, InterconnectGroupsCreateMembersRequest interconnectGroupsCreateMembersRequestResource, CallSettings callSettings = null)
Create Interconnects with redundancy by creating them in a specified interconnect group.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
interconnectGroup |
string Name of the group resource to create members for. |
interconnectGroupsCreateMembersRequestResource |
InterconnectGroupsCreateMembersRequest The body resource for this request |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationOperationOperation |
The RPC response. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
string project = "";
string interconnectGroup = "";
InterconnectGroupsCreateMembersRequest interconnectGroupsCreateMembersRequestResource = new InterconnectGroupsCreateMembersRequest();
// Make the request
lro::Operation<Operation, Operation> response = interconnectGroupsClient.CreateMembers(project, interconnectGroup, interconnectGroupsCreateMembersRequestResource);
// 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 = interconnectGroupsClient.PollOnceCreateMembers(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;
}
CreateMembersAsync(CreateMembersInterconnectGroupRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> CreateMembersAsync(CreateMembersInterconnectGroupRequest request, CallSettings callSettings = null)
Create Interconnects with redundancy by creating them in a specified interconnect group.
Parameters | |
---|---|
Name | Description |
request |
CreateMembersInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
CreateMembersInterconnectGroupRequest request = new CreateMembersInterconnectGroupRequest
{
Project = "",
InterconnectGroupsCreateMembersRequestResource = new InterconnectGroupsCreateMembersRequest(),
InterconnectGroup = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await interconnectGroupsClient.CreateMembersAsync(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 interconnectGroupsClient.PollOnceCreateMembersAsync(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;
}
CreateMembersAsync(CreateMembersInterconnectGroupRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> CreateMembersAsync(CreateMembersInterconnectGroupRequest request, CancellationToken cancellationToken)
Create Interconnects with redundancy by creating them in a specified interconnect group.
Parameters | |
---|---|
Name | Description |
request |
CreateMembersInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
CreateMembersInterconnectGroupRequest request = new CreateMembersInterconnectGroupRequest
{
Project = "",
InterconnectGroupsCreateMembersRequestResource = new InterconnectGroupsCreateMembersRequest(),
InterconnectGroup = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await interconnectGroupsClient.CreateMembersAsync(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 interconnectGroupsClient.PollOnceCreateMembersAsync(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;
}
CreateMembersAsync(string, string, InterconnectGroupsCreateMembersRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> CreateMembersAsync(string project, string interconnectGroup, InterconnectGroupsCreateMembersRequest interconnectGroupsCreateMembersRequestResource, CallSettings callSettings = null)
Create Interconnects with redundancy by creating them in a specified interconnect group.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
interconnectGroup |
string Name of the group resource to create members for. |
interconnectGroupsCreateMembersRequestResource |
InterconnectGroupsCreateMembersRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string interconnectGroup = "";
InterconnectGroupsCreateMembersRequest interconnectGroupsCreateMembersRequestResource = new InterconnectGroupsCreateMembersRequest();
// Make the request
lro::Operation<Operation, Operation> response = await interconnectGroupsClient.CreateMembersAsync(project, interconnectGroup, interconnectGroupsCreateMembersRequestResource);
// 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 interconnectGroupsClient.PollOnceCreateMembersAsync(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;
}
CreateMembersAsync(string, string, InterconnectGroupsCreateMembersRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> CreateMembersAsync(string project, string interconnectGroup, InterconnectGroupsCreateMembersRequest interconnectGroupsCreateMembersRequestResource, CancellationToken cancellationToken)
Create Interconnects with redundancy by creating them in a specified interconnect group.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
interconnectGroup |
string Name of the group resource to create members for. |
interconnectGroupsCreateMembersRequestResource |
InterconnectGroupsCreateMembersRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string interconnectGroup = "";
InterconnectGroupsCreateMembersRequest interconnectGroupsCreateMembersRequestResource = new InterconnectGroupsCreateMembersRequest();
// Make the request
lro::Operation<Operation, Operation> response = await interconnectGroupsClient.CreateMembersAsync(project, interconnectGroup, interconnectGroupsCreateMembersRequestResource);
// 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 interconnectGroupsClient.PollOnceCreateMembersAsync(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(DeleteInterconnectGroupRequest, CallSettings)
public virtual Operation<Operation, Operation> Delete(DeleteInterconnectGroupRequest request, CallSettings callSettings = null)
Deletes the specified InterconnectGroup in the given scope
Parameters | |
---|---|
Name | Description |
request |
DeleteInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
DeleteInterconnectGroupRequest request = new DeleteInterconnectGroupRequest
{
RequestId = "",
Project = "",
InterconnectGroup = "",
};
// Make the request
lro::Operation<Operation, Operation> response = interconnectGroupsClient.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 = interconnectGroupsClient.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 interconnectGroup, CallSettings callSettings = null)
Deletes the specified InterconnectGroup in the given scope
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
interconnectGroup |
string Name of the InterconnectGroup resource to delete. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationOperationOperation |
The RPC response. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
string project = "";
string interconnectGroup = "";
// Make the request
lro::Operation<Operation, Operation> response = interconnectGroupsClient.Delete(project, interconnectGroup);
// 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 = interconnectGroupsClient.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(DeleteInterconnectGroupRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteInterconnectGroupRequest request, CallSettings callSettings = null)
Deletes the specified InterconnectGroup in the given scope
Parameters | |
---|---|
Name | Description |
request |
DeleteInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
DeleteInterconnectGroupRequest request = new DeleteInterconnectGroupRequest
{
RequestId = "",
Project = "",
InterconnectGroup = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await interconnectGroupsClient.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 interconnectGroupsClient.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(DeleteInterconnectGroupRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> DeleteAsync(DeleteInterconnectGroupRequest request, CancellationToken cancellationToken)
Deletes the specified InterconnectGroup in the given scope
Parameters | |
---|---|
Name | Description |
request |
DeleteInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
DeleteInterconnectGroupRequest request = new DeleteInterconnectGroupRequest
{
RequestId = "",
Project = "",
InterconnectGroup = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await interconnectGroupsClient.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 interconnectGroupsClient.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 interconnectGroup, CallSettings callSettings = null)
Deletes the specified InterconnectGroup in the given scope
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
interconnectGroup |
string Name of the InterconnectGroup resource to delete. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
A Task containing the RPC response. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string interconnectGroup = "";
// Make the request
lro::Operation<Operation, Operation> response = await interconnectGroupsClient.DeleteAsync(project, interconnectGroup);
// 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 interconnectGroupsClient.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 interconnectGroup, CancellationToken cancellationToken)
Deletes the specified InterconnectGroup in the given scope
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
interconnectGroup |
string Name of the InterconnectGroup resource to delete. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
A Task containing the RPC response. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string interconnectGroup = "";
// Make the request
lro::Operation<Operation, Operation> response = await interconnectGroupsClient.DeleteAsync(project, interconnectGroup);
// 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 interconnectGroupsClient.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(GetInterconnectGroupRequest, CallSettings)
public virtual InterconnectGroup Get(GetInterconnectGroupRequest request, CallSettings callSettings = null)
Returns the specified InterconnectGroup resource in the given scope.
Parameters | |
---|---|
Name | Description |
request |
GetInterconnectGroupRequest 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 |
InterconnectGroup |
The RPC response. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
GetInterconnectGroupRequest request = new GetInterconnectGroupRequest
{
Project = "",
InterconnectGroup = "",
};
// Make the request
InterconnectGroup response = interconnectGroupsClient.Get(request);
Get(string, string, CallSettings)
public virtual InterconnectGroup Get(string project, string interconnectGroup, CallSettings callSettings = null)
Returns the specified InterconnectGroup resource in the given scope.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
interconnectGroup |
string Name of the InterconnectGroup resource to return. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
InterconnectGroup |
The RPC response. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
string project = "";
string interconnectGroup = "";
// Make the request
InterconnectGroup response = interconnectGroupsClient.Get(project, interconnectGroup);
GetAsync(GetInterconnectGroupRequest, CallSettings)
public virtual Task<InterconnectGroup> GetAsync(GetInterconnectGroupRequest request, CallSettings callSettings = null)
Returns the specified InterconnectGroup resource in the given scope.
Parameters | |
---|---|
Name | Description |
request |
GetInterconnectGroupRequest 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 |
TaskInterconnectGroup |
A Task containing the RPC response. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
GetInterconnectGroupRequest request = new GetInterconnectGroupRequest
{
Project = "",
InterconnectGroup = "",
};
// Make the request
InterconnectGroup response = await interconnectGroupsClient.GetAsync(request);
GetAsync(GetInterconnectGroupRequest, CancellationToken)
public virtual Task<InterconnectGroup> GetAsync(GetInterconnectGroupRequest request, CancellationToken cancellationToken)
Returns the specified InterconnectGroup resource in the given scope.
Parameters | |
---|---|
Name | Description |
request |
GetInterconnectGroupRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskInterconnectGroup |
A Task containing the RPC response. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
GetInterconnectGroupRequest request = new GetInterconnectGroupRequest
{
Project = "",
InterconnectGroup = "",
};
// Make the request
InterconnectGroup response = await interconnectGroupsClient.GetAsync(request);
GetAsync(string, string, CallSettings)
public virtual Task<InterconnectGroup> GetAsync(string project, string interconnectGroup, CallSettings callSettings = null)
Returns the specified InterconnectGroup resource in the given scope.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
interconnectGroup |
string Name of the InterconnectGroup resource to return. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskInterconnectGroup |
A Task containing the RPC response. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string interconnectGroup = "";
// Make the request
InterconnectGroup response = await interconnectGroupsClient.GetAsync(project, interconnectGroup);
GetAsync(string, string, CancellationToken)
public virtual Task<InterconnectGroup> GetAsync(string project, string interconnectGroup, CancellationToken cancellationToken)
Returns the specified InterconnectGroup resource in the given scope.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
interconnectGroup |
string Name of the InterconnectGroup resource to return. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskInterconnectGroup |
A Task containing the RPC response. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string interconnectGroup = "";
// Make the request
InterconnectGroup response = await interconnectGroupsClient.GetAsync(project, interconnectGroup);
GetIamPolicy(GetIamPolicyInterconnectGroupRequest, CallSettings)
public virtual Policy GetIamPolicy(GetIamPolicyInterconnectGroupRequest 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 |
GetIamPolicyInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
GetIamPolicyInterconnectGroupRequest request = new GetIamPolicyInterconnectGroupRequest
{
Resource = "",
Project = "",
OptionsRequestedPolicyVersion = 0,
};
// Make the request
Policy response = interconnectGroupsClient.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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
string project = "";
string resource = "";
// Make the request
Policy response = interconnectGroupsClient.GetIamPolicy(project, resource);
GetIamPolicyAsync(GetIamPolicyInterconnectGroupRequest, CallSettings)
public virtual Task<Policy> GetIamPolicyAsync(GetIamPolicyInterconnectGroupRequest 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 |
GetIamPolicyInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
GetIamPolicyInterconnectGroupRequest request = new GetIamPolicyInterconnectGroupRequest
{
Resource = "",
Project = "",
OptionsRequestedPolicyVersion = 0,
};
// Make the request
Policy response = await interconnectGroupsClient.GetIamPolicyAsync(request);
GetIamPolicyAsync(GetIamPolicyInterconnectGroupRequest, CancellationToken)
public virtual Task<Policy> GetIamPolicyAsync(GetIamPolicyInterconnectGroupRequest 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 |
GetIamPolicyInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
GetIamPolicyInterconnectGroupRequest request = new GetIamPolicyInterconnectGroupRequest
{
Resource = "",
Project = "",
OptionsRequestedPolicyVersion = 0,
};
// Make the request
Policy response = await interconnectGroupsClient.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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
// Make the request
Policy response = await interconnectGroupsClient.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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
// Make the request
Policy response = await interconnectGroupsClient.GetIamPolicyAsync(project, resource);
GetOperationalStatus(GetOperationalStatusInterconnectGroupRequest, CallSettings)
public virtual InterconnectGroupsGetOperationalStatusResponse GetOperationalStatus(GetOperationalStatusInterconnectGroupRequest request, CallSettings callSettings = null)
Returns the interconnectStatuses for the specified InterconnectGroup.
Parameters | |
---|---|
Name | Description |
request |
GetOperationalStatusInterconnectGroupRequest 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 |
InterconnectGroupsGetOperationalStatusResponse |
The RPC response. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
GetOperationalStatusInterconnectGroupRequest request = new GetOperationalStatusInterconnectGroupRequest
{
Project = "",
InterconnectGroup = "",
};
// Make the request
InterconnectGroupsGetOperationalStatusResponse response = interconnectGroupsClient.GetOperationalStatus(request);
GetOperationalStatus(string, string, CallSettings)
public virtual InterconnectGroupsGetOperationalStatusResponse GetOperationalStatus(string project, string interconnectGroup, CallSettings callSettings = null)
Returns the interconnectStatuses for the specified InterconnectGroup.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
interconnectGroup |
string Name of the interconnectGroup resource to query. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
InterconnectGroupsGetOperationalStatusResponse |
The RPC response. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
string project = "";
string interconnectGroup = "";
// Make the request
InterconnectGroupsGetOperationalStatusResponse response = interconnectGroupsClient.GetOperationalStatus(project, interconnectGroup);
GetOperationalStatusAsync(GetOperationalStatusInterconnectGroupRequest, CallSettings)
public virtual Task<InterconnectGroupsGetOperationalStatusResponse> GetOperationalStatusAsync(GetOperationalStatusInterconnectGroupRequest request, CallSettings callSettings = null)
Returns the interconnectStatuses for the specified InterconnectGroup.
Parameters | |
---|---|
Name | Description |
request |
GetOperationalStatusInterconnectGroupRequest 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 |
TaskInterconnectGroupsGetOperationalStatusResponse |
A Task containing the RPC response. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
GetOperationalStatusInterconnectGroupRequest request = new GetOperationalStatusInterconnectGroupRequest
{
Project = "",
InterconnectGroup = "",
};
// Make the request
InterconnectGroupsGetOperationalStatusResponse response = await interconnectGroupsClient.GetOperationalStatusAsync(request);
GetOperationalStatusAsync(GetOperationalStatusInterconnectGroupRequest, CancellationToken)
public virtual Task<InterconnectGroupsGetOperationalStatusResponse> GetOperationalStatusAsync(GetOperationalStatusInterconnectGroupRequest request, CancellationToken cancellationToken)
Returns the interconnectStatuses for the specified InterconnectGroup.
Parameters | |
---|---|
Name | Description |
request |
GetOperationalStatusInterconnectGroupRequest The request object containing all of the parameters for the API call. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskInterconnectGroupsGetOperationalStatusResponse |
A Task containing the RPC response. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
GetOperationalStatusInterconnectGroupRequest request = new GetOperationalStatusInterconnectGroupRequest
{
Project = "",
InterconnectGroup = "",
};
// Make the request
InterconnectGroupsGetOperationalStatusResponse response = await interconnectGroupsClient.GetOperationalStatusAsync(request);
GetOperationalStatusAsync(string, string, CallSettings)
public virtual Task<InterconnectGroupsGetOperationalStatusResponse> GetOperationalStatusAsync(string project, string interconnectGroup, CallSettings callSettings = null)
Returns the interconnectStatuses for the specified InterconnectGroup.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
interconnectGroup |
string Name of the interconnectGroup resource to query. |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskInterconnectGroupsGetOperationalStatusResponse |
A Task containing the RPC response. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string interconnectGroup = "";
// Make the request
InterconnectGroupsGetOperationalStatusResponse response = await interconnectGroupsClient.GetOperationalStatusAsync(project, interconnectGroup);
GetOperationalStatusAsync(string, string, CancellationToken)
public virtual Task<InterconnectGroupsGetOperationalStatusResponse> GetOperationalStatusAsync(string project, string interconnectGroup, CancellationToken cancellationToken)
Returns the interconnectStatuses for the specified InterconnectGroup.
Parameters | |
---|---|
Name | Description |
project |
string Project ID for this request. |
interconnectGroup |
string Name of the interconnectGroup resource to query. |
cancellationToken |
CancellationToken A CancellationToken to use for this RPC. |
Returns | |
---|---|
Type | Description |
TaskInterconnectGroupsGetOperationalStatusResponse |
A Task containing the RPC response. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string interconnectGroup = "";
// Make the request
InterconnectGroupsGetOperationalStatusResponse response = await interconnectGroupsClient.GetOperationalStatusAsync(project, interconnectGroup);
Insert(InsertInterconnectGroupRequest, CallSettings)
public virtual Operation<Operation, Operation> Insert(InsertInterconnectGroupRequest request, CallSettings callSettings = null)
Creates a InterconnectGroup in the specified project in the given scope using the parameters that are included in the request.
Parameters | |
---|---|
Name | Description |
request |
InsertInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
InsertInterconnectGroupRequest request = new InsertInterconnectGroupRequest
{
RequestId = "",
InterconnectGroupResource = new InterconnectGroup(),
Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = interconnectGroupsClient.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 = interconnectGroupsClient.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, InterconnectGroup, CallSettings)
public virtual Operation<Operation, Operation> Insert(string project, InterconnectGroup interconnectGroupResource, CallSettings callSettings = null)
Creates a InterconnectGroup 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. |
interconnectGroupResource |
InterconnectGroup The body resource for this request |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationOperationOperation |
The RPC response. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
string project = "";
InterconnectGroup interconnectGroupResource = new InterconnectGroup();
// Make the request
lro::Operation<Operation, Operation> response = interconnectGroupsClient.Insert(project, interconnectGroupResource);
// 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 = interconnectGroupsClient.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(InsertInterconnectGroupRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> InsertAsync(InsertInterconnectGroupRequest request, CallSettings callSettings = null)
Creates a InterconnectGroup in the specified project in the given scope using the parameters that are included in the request.
Parameters | |
---|---|
Name | Description |
request |
InsertInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
InsertInterconnectGroupRequest request = new InsertInterconnectGroupRequest
{
RequestId = "",
InterconnectGroupResource = new InterconnectGroup(),
Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await interconnectGroupsClient.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 interconnectGroupsClient.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(InsertInterconnectGroupRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> InsertAsync(InsertInterconnectGroupRequest request, CancellationToken cancellationToken)
Creates a InterconnectGroup in the specified project in the given scope using the parameters that are included in the request.
Parameters | |
---|---|
Name | Description |
request |
InsertInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
InsertInterconnectGroupRequest request = new InsertInterconnectGroupRequest
{
RequestId = "",
InterconnectGroupResource = new InterconnectGroup(),
Project = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await interconnectGroupsClient.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 interconnectGroupsClient.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, InterconnectGroup, CallSettings)
public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, InterconnectGroup interconnectGroupResource, CallSettings callSettings = null)
Creates a InterconnectGroup 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. |
interconnectGroupResource |
InterconnectGroup 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
InterconnectGroup interconnectGroupResource = new InterconnectGroup();
// Make the request
lro::Operation<Operation, Operation> response = await interconnectGroupsClient.InsertAsync(project, interconnectGroupResource);
// 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 interconnectGroupsClient.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, InterconnectGroup, CancellationToken)
public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, InterconnectGroup interconnectGroupResource, CancellationToken cancellationToken)
Creates a InterconnectGroup 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. |
interconnectGroupResource |
InterconnectGroup 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
InterconnectGroup interconnectGroupResource = new InterconnectGroup();
// Make the request
lro::Operation<Operation, Operation> response = await interconnectGroupsClient.InsertAsync(project, interconnectGroupResource);
// 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 interconnectGroupsClient.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(ListInterconnectGroupsRequest, CallSettings)
public virtual PagedEnumerable<InterconnectGroupsListResponse, InterconnectGroup> List(ListInterconnectGroupsRequest request, CallSettings callSettings = null)
Lists the InterconnectGroups for a project in the given scope.
Parameters | |
---|---|
Name | Description |
request |
ListInterconnectGroupsRequest 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 |
PagedEnumerableInterconnectGroupsListResponseInterconnectGroup |
A pageable sequence of InterconnectGroup resources. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
ListInterconnectGroupsRequest request = new ListInterconnectGroupsRequest
{
OrderBy = "",
Project = "",
Filter = "",
ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<InterconnectGroupsListResponse, InterconnectGroup> response = interconnectGroupsClient.List(request);
// Iterate over all response items, lazily performing RPCs as required
foreach (InterconnectGroup 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 (InterconnectGroupsListResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (InterconnectGroup 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<InterconnectGroup> 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 (InterconnectGroup 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<InterconnectGroupsListResponse, InterconnectGroup> List(string project, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists the InterconnectGroups 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 |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedEnumerableInterconnectGroupsListResponseInterconnectGroup |
A pageable sequence of InterconnectGroup resources. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
string project = "";
// Make the request
PagedEnumerable<InterconnectGroupsListResponse, InterconnectGroup> response = interconnectGroupsClient.List(project);
// Iterate over all response items, lazily performing RPCs as required
foreach (InterconnectGroup 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 (InterconnectGroupsListResponse page in response.AsRawResponses())
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (InterconnectGroup 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<InterconnectGroup> 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 (InterconnectGroup 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(ListInterconnectGroupsRequest, CallSettings)
public virtual PagedAsyncEnumerable<InterconnectGroupsListResponse, InterconnectGroup> ListAsync(ListInterconnectGroupsRequest request, CallSettings callSettings = null)
Lists the InterconnectGroups for a project in the given scope.
Parameters | |
---|---|
Name | Description |
request |
ListInterconnectGroupsRequest 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 |
PagedAsyncEnumerableInterconnectGroupsListResponseInterconnectGroup |
A pageable asynchronous sequence of InterconnectGroup resources. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
ListInterconnectGroupsRequest request = new ListInterconnectGroupsRequest
{
OrderBy = "",
Project = "",
Filter = "",
ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<InterconnectGroupsListResponse, InterconnectGroup> response = interconnectGroupsClient.ListAsync(request);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((InterconnectGroup 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((InterconnectGroupsListResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (InterconnectGroup 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<InterconnectGroup> 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 (InterconnectGroup 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<InterconnectGroupsListResponse, InterconnectGroup> ListAsync(string project, string pageToken = null, int? pageSize = null, CallSettings callSettings = null)
Lists the InterconnectGroups 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 |
pageSize |
int The size of page to request. The response will not be larger than this, but may be smaller. A value of
|
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
PagedAsyncEnumerableInterconnectGroupsListResponseInterconnectGroup |
A pageable asynchronous sequence of InterconnectGroup resources. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
// Make the request
PagedAsyncEnumerable<InterconnectGroupsListResponse, InterconnectGroup> response = interconnectGroupsClient.ListAsync(project);
// Iterate over all response items, lazily performing RPCs as required
await response.ForEachAsync((InterconnectGroup 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((InterconnectGroupsListResponse page) =>
{
// Do something with each page of items
Console.WriteLine("A page of results:");
foreach (InterconnectGroup 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<InterconnectGroup> 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 (InterconnectGroup 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(PatchInterconnectGroupRequest, CallSettings)
public virtual Operation<Operation, Operation> Patch(PatchInterconnectGroupRequest request, CallSettings callSettings = null)
Patches the specified InterconnectGroup 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 |
PatchInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
PatchInterconnectGroupRequest request = new PatchInterconnectGroupRequest
{
RequestId = "",
InterconnectGroupResource = new InterconnectGroup(),
Project = "",
InterconnectGroup = "",
UpdateMask = "",
};
// Make the request
lro::Operation<Operation, Operation> response = interconnectGroupsClient.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 = interconnectGroupsClient.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, InterconnectGroup, CallSettings)
public virtual Operation<Operation, Operation> Patch(string project, string interconnectGroup, InterconnectGroup interconnectGroupResource, CallSettings callSettings = null)
Patches the specified InterconnectGroup 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. |
interconnectGroup |
string Name of the InterconnectGroup resource to patch. |
interconnectGroupResource |
InterconnectGroup The body resource for this request |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationOperationOperation |
The RPC response. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
string project = "";
string interconnectGroup = "";
InterconnectGroup interconnectGroupResource = new InterconnectGroup();
// Make the request
lro::Operation<Operation, Operation> response = interconnectGroupsClient.Patch(project, interconnectGroup, interconnectGroupResource);
// 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 = interconnectGroupsClient.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(PatchInterconnectGroupRequest, CallSettings)
public virtual Task<Operation<Operation, Operation>> PatchAsync(PatchInterconnectGroupRequest request, CallSettings callSettings = null)
Patches the specified InterconnectGroup 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 |
PatchInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
PatchInterconnectGroupRequest request = new PatchInterconnectGroupRequest
{
RequestId = "",
InterconnectGroupResource = new InterconnectGroup(),
Project = "",
InterconnectGroup = "",
UpdateMask = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await interconnectGroupsClient.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 interconnectGroupsClient.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(PatchInterconnectGroupRequest, CancellationToken)
public virtual Task<Operation<Operation, Operation>> PatchAsync(PatchInterconnectGroupRequest request, CancellationToken cancellationToken)
Patches the specified InterconnectGroup 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 |
PatchInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
PatchInterconnectGroupRequest request = new PatchInterconnectGroupRequest
{
RequestId = "",
InterconnectGroupResource = new InterconnectGroup(),
Project = "",
InterconnectGroup = "",
UpdateMask = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await interconnectGroupsClient.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 interconnectGroupsClient.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, InterconnectGroup, CallSettings)
public virtual Task<Operation<Operation, Operation>> PatchAsync(string project, string interconnectGroup, InterconnectGroup interconnectGroupResource, CallSettings callSettings = null)
Patches the specified InterconnectGroup 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. |
interconnectGroup |
string Name of the InterconnectGroup resource to patch. |
interconnectGroupResource |
InterconnectGroup 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string interconnectGroup = "";
InterconnectGroup interconnectGroupResource = new InterconnectGroup();
// Make the request
lro::Operation<Operation, Operation> response = await interconnectGroupsClient.PatchAsync(project, interconnectGroup, interconnectGroupResource);
// 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 interconnectGroupsClient.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, InterconnectGroup, CancellationToken)
public virtual Task<Operation<Operation, Operation>> PatchAsync(string project, string interconnectGroup, InterconnectGroup interconnectGroupResource, CancellationToken cancellationToken)
Patches the specified InterconnectGroup 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. |
interconnectGroup |
string Name of the InterconnectGroup resource to patch. |
interconnectGroupResource |
InterconnectGroup 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string interconnectGroup = "";
InterconnectGroup interconnectGroupResource = new InterconnectGroup();
// Make the request
lro::Operation<Operation, Operation> response = await interconnectGroupsClient.PatchAsync(project, interconnectGroup, interconnectGroupResource);
// 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 interconnectGroupsClient.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;
}
PollOnceCreateMembers(string, CallSettings)
public virtual Operation<Operation, Operation> PollOnceCreateMembers(string operationName, CallSettings callSettings = null)
Poll an operation once, using an operationName
from a previous invocation of CreateMembers
.
Parameters | |
---|---|
Name | Description |
operationName |
string The name of a previously invoked operation. Must not be |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
OperationOperationOperation |
The result of polling the operation. |
PollOnceCreateMembersAsync(string, CallSettings)
public virtual Task<Operation<Operation, Operation>> PollOnceCreateMembersAsync(string operationName, CallSettings callSettings = null)
Asynchronously poll an operation once, using an operationName
from a previous invocation of
CreateMembers
.
Parameters | |
---|---|
Name | Description |
operationName |
string The name of a previously invoked operation. Must not be |
callSettings |
CallSettings If not null, applies overrides to this RPC call. |
Returns | |
---|---|
Type | Description |
TaskOperationOperationOperation |
A task representing the result of polling the operation. |
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 |
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 |
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 |
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 |
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 |
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 |
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(SetIamPolicyInterconnectGroupRequest, CallSettings)
public virtual Policy SetIamPolicy(SetIamPolicyInterconnectGroupRequest request, CallSettings callSettings = null)
Sets the access control policy on the specified resource. Replaces any existing policy.
Parameters | |
---|---|
Name | Description |
request |
SetIamPolicyInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
SetIamPolicyInterconnectGroupRequest request = new SetIamPolicyInterconnectGroupRequest
{
Resource = "",
Project = "",
GlobalSetPolicyRequestResource = new GlobalSetPolicyRequest(),
};
// Make the request
Policy response = interconnectGroupsClient.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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
string project = "";
string resource = "";
GlobalSetPolicyRequest globalSetPolicyRequestResource = new GlobalSetPolicyRequest();
// Make the request
Policy response = interconnectGroupsClient.SetIamPolicy(project, resource, globalSetPolicyRequestResource);
SetIamPolicyAsync(SetIamPolicyInterconnectGroupRequest, CallSettings)
public virtual Task<Policy> SetIamPolicyAsync(SetIamPolicyInterconnectGroupRequest request, CallSettings callSettings = null)
Sets the access control policy on the specified resource. Replaces any existing policy.
Parameters | |
---|---|
Name | Description |
request |
SetIamPolicyInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
SetIamPolicyInterconnectGroupRequest request = new SetIamPolicyInterconnectGroupRequest
{
Resource = "",
Project = "",
GlobalSetPolicyRequestResource = new GlobalSetPolicyRequest(),
};
// Make the request
Policy response = await interconnectGroupsClient.SetIamPolicyAsync(request);
SetIamPolicyAsync(SetIamPolicyInterconnectGroupRequest, CancellationToken)
public virtual Task<Policy> SetIamPolicyAsync(SetIamPolicyInterconnectGroupRequest request, CancellationToken cancellationToken)
Sets the access control policy on the specified resource. Replaces any existing policy.
Parameters | |
---|---|
Name | Description |
request |
SetIamPolicyInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
SetIamPolicyInterconnectGroupRequest request = new SetIamPolicyInterconnectGroupRequest
{
Resource = "",
Project = "",
GlobalSetPolicyRequestResource = new GlobalSetPolicyRequest(),
};
// Make the request
Policy response = await interconnectGroupsClient.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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
GlobalSetPolicyRequest globalSetPolicyRequestResource = new GlobalSetPolicyRequest();
// Make the request
Policy response = await interconnectGroupsClient.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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
GlobalSetPolicyRequest globalSetPolicyRequestResource = new GlobalSetPolicyRequest();
// Make the request
Policy response = await interconnectGroupsClient.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. |
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(TestIamPermissionsInterconnectGroupRequest, CallSettings)
public virtual TestPermissionsResponse TestIamPermissions(TestIamPermissionsInterconnectGroupRequest request, CallSettings callSettings = null)
Returns permissions that a caller has on the specified resource.
Parameters | |
---|---|
Name | Description |
request |
TestIamPermissionsInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
TestIamPermissionsInterconnectGroupRequest request = new TestIamPermissionsInterconnectGroupRequest
{
Resource = "",
Project = "",
TestPermissionsRequestResource = new TestPermissionsRequest(),
};
// Make the request
TestPermissionsResponse response = interconnectGroupsClient.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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = InterconnectGroupsClient.Create();
// Initialize request argument(s)
string project = "";
string resource = "";
TestPermissionsRequest testPermissionsRequestResource = new TestPermissionsRequest();
// Make the request
TestPermissionsResponse response = interconnectGroupsClient.TestIamPermissions(project, resource, testPermissionsRequestResource);
TestIamPermissionsAsync(TestIamPermissionsInterconnectGroupRequest, CallSettings)
public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(TestIamPermissionsInterconnectGroupRequest request, CallSettings callSettings = null)
Returns permissions that a caller has on the specified resource.
Parameters | |
---|---|
Name | Description |
request |
TestIamPermissionsInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
TestIamPermissionsInterconnectGroupRequest request = new TestIamPermissionsInterconnectGroupRequest
{
Resource = "",
Project = "",
TestPermissionsRequestResource = new TestPermissionsRequest(),
};
// Make the request
TestPermissionsResponse response = await interconnectGroupsClient.TestIamPermissionsAsync(request);
TestIamPermissionsAsync(TestIamPermissionsInterconnectGroupRequest, CancellationToken)
public virtual Task<TestPermissionsResponse> TestIamPermissionsAsync(TestIamPermissionsInterconnectGroupRequest request, CancellationToken cancellationToken)
Returns permissions that a caller has on the specified resource.
Parameters | |
---|---|
Name | Description |
request |
TestIamPermissionsInterconnectGroupRequest 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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
TestIamPermissionsInterconnectGroupRequest request = new TestIamPermissionsInterconnectGroupRequest
{
Resource = "",
Project = "",
TestPermissionsRequestResource = new TestPermissionsRequest(),
};
// Make the request
TestPermissionsResponse response = await interconnectGroupsClient.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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
TestPermissionsRequest testPermissionsRequestResource = new TestPermissionsRequest();
// Make the request
TestPermissionsResponse response = await interconnectGroupsClient.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. |
// Create client
InterconnectGroupsClient interconnectGroupsClient = await InterconnectGroupsClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
TestPermissionsRequest testPermissionsRequestResource = new TestPermissionsRequest();
// Make the request
TestPermissionsResponse response = await interconnectGroupsClient.TestIamPermissionsAsync(project, resource, testPermissionsRequestResource);