Compute Engine v1 API - Class GlobalAddressesClient (2.5.0)

public abstract class GlobalAddressesClient

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

GlobalAddresses client wrapper, for convenient use.

Inheritance

Object > GlobalAddressesClient

Namespace

Google.Cloud.Compute.V1

Assembly

Google.Cloud.Compute.V1.dll

Remarks

The GlobalAddresses API.

Properties

DefaultEndpoint

public static string DefaultEndpoint { get; }

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

Property Value
TypeDescription
String

DefaultScopes

public static IReadOnlyList<string> DefaultScopes { get; }

The default GlobalAddresses scopes.

Property Value
TypeDescription
IReadOnlyList<String>
Remarks

DeleteOperationsClient

public virtual OperationsClient DeleteOperationsClient { get; }

The long-running operations client for Delete.

Property Value
TypeDescription
OperationsClient

GrpcClient

public virtual GlobalAddresses.GlobalAddressesClient GrpcClient { get; }

The underlying gRPC GlobalAddresses client

Property Value
TypeDescription
GlobalAddresses.GlobalAddressesClient

InsertOperationsClient

public virtual OperationsClient InsertOperationsClient { get; }

The long-running operations client for Insert.

Property Value
TypeDescription
OperationsClient

ServiceMetadata

public static ServiceMetadata ServiceMetadata { get; }

The service metadata associated with this client type.

Property Value
TypeDescription
ServiceMetadata

SetLabelsOperationsClient

public virtual OperationsClient SetLabelsOperationsClient { get; }

The long-running operations client for SetLabels.

Property Value
TypeDescription
OperationsClient

Methods

Create()

public static GlobalAddressesClient Create()

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

Returns
TypeDescription
GlobalAddressesClient

The created GlobalAddressesClient.

CreateAsync(CancellationToken)

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

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

Parameter
NameDescription
cancellationTokenCancellationToken

The CancellationToken to use while creating the client.

Returns
TypeDescription
Task<GlobalAddressesClient>

The task representing the created GlobalAddressesClient.

Delete(DeleteGlobalAddressRequest, CallSettings)

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

Deletes the specified address resource.

Parameters
NameDescription
requestDeleteGlobalAddressRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Operation<Operation, Operation>

The RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = GlobalAddressesClient.Create();
// Initialize request argument(s)
DeleteGlobalAddressRequest request = new DeleteGlobalAddressRequest
{
    RequestId = "",
    Project = "",
    Address = "",
};
// Make the request
lro::Operation<Operation, Operation> response = globalAddressesClient.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 = globalAddressesClient.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 address, CallSettings callSettings = null)

Deletes the specified address resource.

Parameters
NameDescription
projectString

Project ID for this request.

addressString

Name of the address resource to delete.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Operation<Operation, Operation>

The RPC response.

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

// 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 = globalAddressesClient.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(DeleteGlobalAddressRequest, CallSettings)

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

Deletes the specified address resource.

Parameters
NameDescription
requestDeleteGlobalAddressRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();
// Initialize request argument(s)
DeleteGlobalAddressRequest request = new DeleteGlobalAddressRequest
{
    RequestId = "",
    Project = "",
    Address = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await globalAddressesClient.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 globalAddressesClient.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(DeleteGlobalAddressRequest, CancellationToken)

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

Deletes the specified address resource.

Parameters
NameDescription
requestDeleteGlobalAddressRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();
// Initialize request argument(s)
DeleteGlobalAddressRequest request = new DeleteGlobalAddressRequest
{
    RequestId = "",
    Project = "",
    Address = "",
};
// Make the request
lro::Operation<Operation, Operation> response = await globalAddressesClient.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 globalAddressesClient.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 address, CallSettings callSettings = null)

Deletes the specified address resource.

Parameters
NameDescription
projectString

Project ID for this request.

addressString

Name of the address resource to delete.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

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

// 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 globalAddressesClient.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 address, CancellationToken cancellationToken)

Deletes the specified address resource.

Parameters
NameDescription
projectString

Project ID for this request.

addressString

Name of the address resource to delete.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

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

// 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 globalAddressesClient.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(GetGlobalAddressRequest, CallSettings)

public virtual Address Get(GetGlobalAddressRequest request, CallSettings callSettings = null)

Returns the specified address resource. Gets a list of available addresses by making a list() request.

Parameters
NameDescription
requestGetGlobalAddressRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Address

The RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = GlobalAddressesClient.Create();
// Initialize request argument(s)
GetGlobalAddressRequest request = new GetGlobalAddressRequest
{
    Project = "",
    Address = "",
};
// Make the request
Address response = globalAddressesClient.Get(request);

Get(String, String, CallSettings)

public virtual Address Get(string project, string address, CallSettings callSettings = null)

Returns the specified address resource. Gets a list of available addresses by making a list() request.

Parameters
NameDescription
projectString

Project ID for this request.

addressString

Name of the address resource to return.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Address

The RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = GlobalAddressesClient.Create();
// Initialize request argument(s)
string project = "";
string address = "";
// Make the request
Address response = globalAddressesClient.Get(project, address);

GetAsync(GetGlobalAddressRequest, CallSettings)

public virtual Task<Address> GetAsync(GetGlobalAddressRequest request, CallSettings callSettings = null)

Returns the specified address resource. Gets a list of available addresses by making a list() request.

Parameters
NameDescription
requestGetGlobalAddressRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Address>

A Task containing the RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();
// Initialize request argument(s)
GetGlobalAddressRequest request = new GetGlobalAddressRequest
{
    Project = "",
    Address = "",
};
// Make the request
Address response = await globalAddressesClient.GetAsync(request);

GetAsync(GetGlobalAddressRequest, CancellationToken)

public virtual Task<Address> GetAsync(GetGlobalAddressRequest request, CancellationToken cancellationToken)

Returns the specified address resource. Gets a list of available addresses by making a list() request.

Parameters
NameDescription
requestGetGlobalAddressRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Address>

A Task containing the RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();
// Initialize request argument(s)
GetGlobalAddressRequest request = new GetGlobalAddressRequest
{
    Project = "",
    Address = "",
};
// Make the request
Address response = await globalAddressesClient.GetAsync(request);

GetAsync(String, String, CallSettings)

public virtual Task<Address> GetAsync(string project, string address, CallSettings callSettings = null)

Returns the specified address resource. Gets a list of available addresses by making a list() request.

Parameters
NameDescription
projectString

Project ID for this request.

addressString

Name of the address resource to return.

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Address>

A Task containing the RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string address = "";
// Make the request
Address response = await globalAddressesClient.GetAsync(project, address);

GetAsync(String, String, CancellationToken)

public virtual Task<Address> GetAsync(string project, string address, CancellationToken cancellationToken)

Returns the specified address resource. Gets a list of available addresses by making a list() request.

Parameters
NameDescription
projectString

Project ID for this request.

addressString

Name of the address resource to return.

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Address>

A Task containing the RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string address = "";
// Make the request
Address response = await globalAddressesClient.GetAsync(project, address);

Insert(InsertGlobalAddressRequest, CallSettings)

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

Creates an address resource in the specified project by using the data included in the request.

Parameters
NameDescription
requestInsertGlobalAddressRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Operation<Operation, Operation>

The RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = GlobalAddressesClient.Create();
// Initialize request argument(s)
InsertGlobalAddressRequest request = new InsertGlobalAddressRequest
{
    RequestId = "",
    Project = "",
    AddressResource = new Address(),
};
// Make the request
lro::Operation<Operation, Operation> response = globalAddressesClient.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 = globalAddressesClient.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, Address, CallSettings)

public virtual Operation<Operation, Operation> Insert(string project, Address addressResource, CallSettings callSettings = null)

Creates an address resource in the specified project by using the data included in the request.

Parameters
NameDescription
projectString

Project ID for this request.

addressResourceAddress

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Operation<Operation, Operation>

The RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = GlobalAddressesClient.Create();
// Initialize request argument(s)
string project = "";
Address addressResource = new Address();
// Make the request
lro::Operation<Operation, Operation> response = globalAddressesClient.Insert(project, addressResource);

// 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 = globalAddressesClient.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(InsertGlobalAddressRequest, CallSettings)

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

Creates an address resource in the specified project by using the data included in the request.

Parameters
NameDescription
requestInsertGlobalAddressRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();
// Initialize request argument(s)
InsertGlobalAddressRequest request = new InsertGlobalAddressRequest
{
    RequestId = "",
    Project = "",
    AddressResource = new Address(),
};
// Make the request
lro::Operation<Operation, Operation> response = await globalAddressesClient.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 globalAddressesClient.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(InsertGlobalAddressRequest, CancellationToken)

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

Creates an address resource in the specified project by using the data included in the request.

Parameters
NameDescription
requestInsertGlobalAddressRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();
// Initialize request argument(s)
InsertGlobalAddressRequest request = new InsertGlobalAddressRequest
{
    RequestId = "",
    Project = "",
    AddressResource = new Address(),
};
// Make the request
lro::Operation<Operation, Operation> response = await globalAddressesClient.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 globalAddressesClient.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, Address, CallSettings)

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

Creates an address resource in the specified project by using the data included in the request.

Parameters
NameDescription
projectString

Project ID for this request.

addressResourceAddress

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
Address addressResource = new Address();
// Make the request
lro::Operation<Operation, Operation> response = await globalAddressesClient.InsertAsync(project, addressResource);

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

public virtual Task<Operation<Operation, Operation>> InsertAsync(string project, Address addressResource, CancellationToken cancellationToken)

Creates an address resource in the specified project by using the data included in the request.

Parameters
NameDescription
projectString

Project ID for this request.

addressResourceAddress

The body resource for this request

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
Address addressResource = new Address();
// Make the request
lro::Operation<Operation, Operation> response = await globalAddressesClient.InsertAsync(project, addressResource);

// 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 globalAddressesClient.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(ListGlobalAddressesRequest, CallSettings)

public virtual PagedEnumerable<AddressList, Address> List(ListGlobalAddressesRequest request, CallSettings callSettings = null)

Retrieves a list of global addresses.

Parameters
NameDescription
requestListGlobalAddressesRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedEnumerable<AddressList, Address>

A pageable sequence of Address resources.

Example
// Create client
GlobalAddressesClient globalAddressesClient = GlobalAddressesClient.Create();
// Initialize request argument(s)
ListGlobalAddressesRequest request = new ListGlobalAddressesRequest
{
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedEnumerable<AddressList, Address> response = globalAddressesClient.List(request);

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

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

Retrieves a list of global addresses.

Parameters
NameDescription
projectString

Project ID for this request.

pageTokenString

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

pageSizeNullable<Int32>

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedEnumerable<AddressList, Address>

A pageable sequence of Address resources.

Example
// Create client
GlobalAddressesClient globalAddressesClient = GlobalAddressesClient.Create();
// Initialize request argument(s)
string project = "";
// Make the request
PagedEnumerable<AddressList, Address> response = globalAddressesClient.List(project);

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

public virtual PagedAsyncEnumerable<AddressList, Address> ListAsync(ListGlobalAddressesRequest request, CallSettings callSettings = null)

Retrieves a list of global addresses.

Parameters
NameDescription
requestListGlobalAddressesRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedAsyncEnumerable<AddressList, Address>

A pageable asynchronous sequence of Address resources.

Example
// Create client
GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();
// Initialize request argument(s)
ListGlobalAddressesRequest request = new ListGlobalAddressesRequest
{
    OrderBy = "",
    Project = "",
    Filter = "",
    ReturnPartialSuccess = false,
};
// Make the request
PagedAsyncEnumerable<AddressList, Address> response = globalAddressesClient.ListAsync(request);

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

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

Retrieves a list of global addresses.

Parameters
NameDescription
projectString

Project ID for this request.

pageTokenString

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

pageSizeNullable<Int32>

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
PagedAsyncEnumerable<AddressList, Address>

A pageable asynchronous sequence of Address resources.

Example
// Create client
GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
// Make the request
PagedAsyncEnumerable<AddressList, Address> response = globalAddressesClient.ListAsync(project);

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

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
NameDescription
operationNameString

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Operation<Operation, Operation>

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
NameDescription
operationNameString

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

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
NameDescription
operationNameString

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Operation<Operation, Operation>

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
NameDescription
operationNameString

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A task representing the result of polling the operation.

PollOnceSetLabels(String, CallSettings)

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

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

Parameters
NameDescription
operationNameString

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Operation<Operation, Operation>

The result of polling the operation.

PollOnceSetLabelsAsync(String, CallSettings)

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

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

Parameters
NameDescription
operationNameString

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A task representing the result of polling the operation.

SetLabels(SetLabelsGlobalAddressRequest, CallSettings)

public virtual Operation<Operation, Operation> SetLabels(SetLabelsGlobalAddressRequest request, CallSettings callSettings = null)

Sets the labels on a GlobalAddress. To learn more about labels, read the Labeling Resources documentation.

Parameters
NameDescription
requestSetLabelsGlobalAddressRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Operation<Operation, Operation>

The RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = GlobalAddressesClient.Create();
// Initialize request argument(s)
SetLabelsGlobalAddressRequest request = new SetLabelsGlobalAddressRequest
{
    Resource = "",
    Project = "",
    GlobalSetLabelsRequestResource = new GlobalSetLabelsRequest(),
};
// Make the request
lro::Operation<Operation, Operation> response = globalAddressesClient.SetLabels(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 = globalAddressesClient.PollOnceSetLabels(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;
}

SetLabels(String, String, GlobalSetLabelsRequest, CallSettings)

public virtual Operation<Operation, Operation> SetLabels(string project, string resource, GlobalSetLabelsRequest globalSetLabelsRequestResource, CallSettings callSettings = null)

Sets the labels on a GlobalAddress. To learn more about labels, read the Labeling Resources documentation.

Parameters
NameDescription
projectString

Project ID for this request.

resourceString

Name or id of the resource for this request.

globalSetLabelsRequestResourceGlobalSetLabelsRequest

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Operation<Operation, Operation>

The RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = GlobalAddressesClient.Create();
// Initialize request argument(s)
string project = "";
string resource = "";
GlobalSetLabelsRequest globalSetLabelsRequestResource = new GlobalSetLabelsRequest();
// Make the request
lro::Operation<Operation, Operation> response = globalAddressesClient.SetLabels(project, resource, globalSetLabelsRequestResource);

// 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 = globalAddressesClient.PollOnceSetLabels(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;
}

SetLabelsAsync(SetLabelsGlobalAddressRequest, CallSettings)

public virtual Task<Operation<Operation, Operation>> SetLabelsAsync(SetLabelsGlobalAddressRequest request, CallSettings callSettings = null)

Sets the labels on a GlobalAddress. To learn more about labels, read the Labeling Resources documentation.

Parameters
NameDescription
requestSetLabelsGlobalAddressRequest

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

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();
// Initialize request argument(s)
SetLabelsGlobalAddressRequest request = new SetLabelsGlobalAddressRequest
{
    Resource = "",
    Project = "",
    GlobalSetLabelsRequestResource = new GlobalSetLabelsRequest(),
};
// Make the request
lro::Operation<Operation, Operation> response = await globalAddressesClient.SetLabelsAsync(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 globalAddressesClient.PollOnceSetLabelsAsync(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;
}

SetLabelsAsync(SetLabelsGlobalAddressRequest, CancellationToken)

public virtual Task<Operation<Operation, Operation>> SetLabelsAsync(SetLabelsGlobalAddressRequest request, CancellationToken cancellationToken)

Sets the labels on a GlobalAddress. To learn more about labels, read the Labeling Resources documentation.

Parameters
NameDescription
requestSetLabelsGlobalAddressRequest

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

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();
// Initialize request argument(s)
SetLabelsGlobalAddressRequest request = new SetLabelsGlobalAddressRequest
{
    Resource = "",
    Project = "",
    GlobalSetLabelsRequestResource = new GlobalSetLabelsRequest(),
};
// Make the request
lro::Operation<Operation, Operation> response = await globalAddressesClient.SetLabelsAsync(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 globalAddressesClient.PollOnceSetLabelsAsync(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;
}

SetLabelsAsync(String, String, GlobalSetLabelsRequest, CallSettings)

public virtual Task<Operation<Operation, Operation>> SetLabelsAsync(string project, string resource, GlobalSetLabelsRequest globalSetLabelsRequestResource, CallSettings callSettings = null)

Sets the labels on a GlobalAddress. To learn more about labels, read the Labeling Resources documentation.

Parameters
NameDescription
projectString

Project ID for this request.

resourceString

Name or id of the resource for this request.

globalSetLabelsRequestResourceGlobalSetLabelsRequest

The body resource for this request

callSettingsCallSettings

If not null, applies overrides to this RPC call.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
GlobalSetLabelsRequest globalSetLabelsRequestResource = new GlobalSetLabelsRequest();
// Make the request
lro::Operation<Operation, Operation> response = await globalAddressesClient.SetLabelsAsync(project, resource, globalSetLabelsRequestResource);

// 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 globalAddressesClient.PollOnceSetLabelsAsync(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;
}

SetLabelsAsync(String, String, GlobalSetLabelsRequest, CancellationToken)

public virtual Task<Operation<Operation, Operation>> SetLabelsAsync(string project, string resource, GlobalSetLabelsRequest globalSetLabelsRequestResource, CancellationToken cancellationToken)

Sets the labels on a GlobalAddress. To learn more about labels, read the Labeling Resources documentation.

Parameters
NameDescription
projectString

Project ID for this request.

resourceString

Name or id of the resource for this request.

globalSetLabelsRequestResourceGlobalSetLabelsRequest

The body resource for this request

cancellationTokenCancellationToken

A CancellationToken to use for this RPC.

Returns
TypeDescription
Task<Operation<Operation, Operation>>

A Task containing the RPC response.

Example
// Create client
GlobalAddressesClient globalAddressesClient = await GlobalAddressesClient.CreateAsync();
// Initialize request argument(s)
string project = "";
string resource = "";
GlobalSetLabelsRequest globalSetLabelsRequestResource = new GlobalSetLabelsRequest();
// Make the request
lro::Operation<Operation, Operation> response = await globalAddressesClient.SetLabelsAsync(project, resource, globalSetLabelsRequestResource);

// 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 globalAddressesClient.PollOnceSetLabelsAsync(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;
}

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
TypeDescription
Task

A task representing the asynchronous shutdown operation.

Remarks

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