@BetaApi @Generated(value="by gapic-generator-java") public class CompanyServiceClient extends Object implements BackgroundResource
This class provides the ability to make remote calls to the backing service through method calls that map to API methods. Sample code to get started:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
ProjectName parent = ProjectName.of("[PROJECT]");
Company company = Company.newBuilder().build();
Company response = companyServiceClient.createCompany(parent, company);
}
Note: close() needs to be called on the CompanyServiceClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
The surface of this class includes several types of Java methods for each of the API's methods:
See the individual methods for example code.
Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.
This class can be customized by passing in a custom instance of CompanyServiceSettings to create(). For example:
To customize credentials:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
CompanyServiceSettings companyServiceSettings =
CompanyServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
CompanyServiceClient companyServiceClient = CompanyServiceClient.create(companyServiceSettings);
To customize the endpoint:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
CompanyServiceSettings companyServiceSettings =
CompanyServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
CompanyServiceClient companyServiceClient = CompanyServiceClient.create(companyServiceSettings);
To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
CompanyServiceSettings companyServiceSettings =
CompanyServiceSettings.newBuilder()
.setTransportChannelProvider(
CompanyServiceSettings.defaultHttpJsonTransportProviderBuilder().build())
.build();
CompanyServiceClient companyServiceClient = CompanyServiceClient.create(companyServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Modifier and Type | Class and Description |
---|---|
static class |
CompanyServiceClient.ListCompaniesFixedSizeCollection |
static class |
CompanyServiceClient.ListCompaniesPage |
static class |
CompanyServiceClient.ListCompaniesPagedResponse |
Modifier | Constructor and Description |
---|---|
protected |
CompanyServiceClient(CompanyServiceSettings settings)
Constructs an instance of CompanyServiceClient, using the given settings.
|
protected |
CompanyServiceClient(CompanyServiceStub stub) |
Modifier and Type | Method and Description |
---|---|
boolean |
awaitTermination(long duration,
TimeUnit unit) |
void |
close() |
static CompanyServiceClient |
create()
Constructs an instance of CompanyServiceClient with default settings.
|
static CompanyServiceClient |
create(CompanyServiceSettings settings)
Constructs an instance of CompanyServiceClient, using the given settings.
|
static CompanyServiceClient |
create(CompanyServiceStub stub)
Constructs an instance of CompanyServiceClient, using the given stub for making calls.
|
Company |
createCompany(CreateCompanyRequest request)
Creates a new company entity.
|
Company |
createCompany(ProjectName parent,
Company company)
Creates a new company entity.
|
Company |
createCompany(String parent,
Company company)
Creates a new company entity.
|
Company |
createCompany(TenantName parent,
Company company)
Creates a new company entity.
|
UnaryCallable<CreateCompanyRequest,Company> |
createCompanyCallable()
Creates a new company entity.
|
void |
deleteCompany(CompanyName name)
Deletes specified company.
|
void |
deleteCompany(DeleteCompanyRequest request)
Deletes specified company.
|
void |
deleteCompany(String name)
Deletes specified company.
|
UnaryCallable<DeleteCompanyRequest,Empty> |
deleteCompanyCallable()
Deletes specified company.
|
Company |
getCompany(CompanyName name)
Retrieves specified company.
|
Company |
getCompany(GetCompanyRequest request)
Retrieves specified company.
|
Company |
getCompany(String name)
Retrieves specified company.
|
UnaryCallable<GetCompanyRequest,Company> |
getCompanyCallable()
Retrieves specified company.
|
CompanyServiceSettings |
getSettings() |
CompanyServiceStub |
getStub() |
boolean |
isShutdown() |
boolean |
isTerminated() |
CompanyServiceClient.ListCompaniesPagedResponse |
listCompanies(ListCompaniesRequest request)
Lists all companies associated with the project.
|
CompanyServiceClient.ListCompaniesPagedResponse |
listCompanies(ProjectName parent)
Lists all companies associated with the project.
|
CompanyServiceClient.ListCompaniesPagedResponse |
listCompanies(String parent)
Lists all companies associated with the project.
|
CompanyServiceClient.ListCompaniesPagedResponse |
listCompanies(TenantName parent)
Lists all companies associated with the project.
|
UnaryCallable<ListCompaniesRequest,ListCompaniesResponse> |
listCompaniesCallable()
Lists all companies associated with the project.
|
UnaryCallable<ListCompaniesRequest,CompanyServiceClient.ListCompaniesPagedResponse> |
listCompaniesPagedCallable()
Lists all companies associated with the project.
|
void |
shutdown() |
void |
shutdownNow() |
Company |
updateCompany(Company company)
Updates specified company.
|
Company |
updateCompany(UpdateCompanyRequest request)
Updates specified company.
|
UnaryCallable<UpdateCompanyRequest,Company> |
updateCompanyCallable()
Updates specified company.
|
protected CompanyServiceClient(CompanyServiceSettings settings) throws IOException
IOException
protected CompanyServiceClient(CompanyServiceStub stub)
public static final CompanyServiceClient create() throws IOException
IOException
public static final CompanyServiceClient create(CompanyServiceSettings settings) throws IOException
IOException
public static final CompanyServiceClient create(CompanyServiceStub stub)
public final CompanyServiceSettings getSettings()
public CompanyServiceStub getStub()
public final Company createCompany(ProjectName parent, Company company)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
ProjectName parent = ProjectName.of("[PROJECT]");
Company company = Company.newBuilder().build();
Company response = companyServiceClient.createCompany(parent, company);
}
parent
- Required. Resource name of the tenant under which the company is created.
The format is "projects/{project_id}/tenants/{tenant_id}", for example, "projects/foo/tenant/bar". If tenant id is unspecified, a default tenant is created, for example, "projects/foo".
company
- Required. The company to be created.ApiException
- if the remote call failspublic final Company createCompany(TenantName parent, Company company)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
TenantName parent = TenantName.of("[PROJECT]", "[TENANT]");
Company company = Company.newBuilder().build();
Company response = companyServiceClient.createCompany(parent, company);
}
parent
- Required. Resource name of the tenant under which the company is created.
The format is "projects/{project_id}/tenants/{tenant_id}", for example, "projects/foo/tenant/bar". If tenant id is unspecified, a default tenant is created, for example, "projects/foo".
company
- Required. The company to be created.ApiException
- if the remote call failspublic final Company createCompany(String parent, Company company)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
String parent = TenantName.of("[PROJECT]", "[TENANT]").toString();
Company company = Company.newBuilder().build();
Company response = companyServiceClient.createCompany(parent, company);
}
parent
- Required. Resource name of the tenant under which the company is created.
The format is "projects/{project_id}/tenants/{tenant_id}", for example, "projects/foo/tenant/bar". If tenant id is unspecified, a default tenant is created, for example, "projects/foo".
company
- Required. The company to be created.ApiException
- if the remote call failspublic final Company createCompany(CreateCompanyRequest request)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
CreateCompanyRequest request =
CreateCompanyRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.setCompany(Company.newBuilder().build())
.build();
Company response = companyServiceClient.createCompany(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<CreateCompanyRequest,Company> createCompanyCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
CreateCompanyRequest request =
CreateCompanyRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.setCompany(Company.newBuilder().build())
.build();
ApiFuture<Company> future = companyServiceClient.createCompanyCallable().futureCall(request);
// Do something.
Company response = future.get();
}
public final Company getCompany(CompanyName name)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
CompanyName name =
CompanyName.ofProjectTenantCompanyName("[PROJECT]", "[TENANT]", "[COMPANY]");
Company response = companyServiceClient.getCompany(name);
}
name
- Required. The resource name of the company to be retrieved.
The format is "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for example, "projects/api-test-project/tenants/foo/companies/bar".
If tenant id is unspecified, the default tenant is used, for example, "projects/api-test-project/companies/bar".
ApiException
- if the remote call failspublic final Company getCompany(String name)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
String name =
CompanyName.ofProjectTenantCompanyName("[PROJECT]", "[TENANT]", "[COMPANY]").toString();
Company response = companyServiceClient.getCompany(name);
}
name
- Required. The resource name of the company to be retrieved.
The format is "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for example, "projects/api-test-project/tenants/foo/companies/bar".
If tenant id is unspecified, the default tenant is used, for example, "projects/api-test-project/companies/bar".
ApiException
- if the remote call failspublic final Company getCompany(GetCompanyRequest request)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
GetCompanyRequest request =
GetCompanyRequest.newBuilder()
.setName(
CompanyName.ofProjectTenantCompanyName("[PROJECT]", "[TENANT]", "[COMPANY]")
.toString())
.build();
Company response = companyServiceClient.getCompany(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<GetCompanyRequest,Company> getCompanyCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
GetCompanyRequest request =
GetCompanyRequest.newBuilder()
.setName(
CompanyName.ofProjectTenantCompanyName("[PROJECT]", "[TENANT]", "[COMPANY]")
.toString())
.build();
ApiFuture<Company> future = companyServiceClient.getCompanyCallable().futureCall(request);
// Do something.
Company response = future.get();
}
public final Company updateCompany(Company company)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
Company company = Company.newBuilder().build();
Company response = companyServiceClient.updateCompany(company);
}
company
- Required. The company resource to replace the current resource in the system.ApiException
- if the remote call failspublic final Company updateCompany(UpdateCompanyRequest request)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
UpdateCompanyRequest request =
UpdateCompanyRequest.newBuilder()
.setCompany(Company.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Company response = companyServiceClient.updateCompany(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<UpdateCompanyRequest,Company> updateCompanyCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
UpdateCompanyRequest request =
UpdateCompanyRequest.newBuilder()
.setCompany(Company.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Company> future = companyServiceClient.updateCompanyCallable().futureCall(request);
// Do something.
Company response = future.get();
}
public final void deleteCompany(CompanyName name)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
CompanyName name =
CompanyName.ofProjectTenantCompanyName("[PROJECT]", "[TENANT]", "[COMPANY]");
companyServiceClient.deleteCompany(name);
}
name
- Required. The resource name of the company to be deleted.
The format is "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for example, "projects/foo/tenants/bar/companies/baz".
If tenant id is unspecified, the default tenant is used, for example, "projects/foo/companies/bar".
ApiException
- if the remote call failspublic final void deleteCompany(String name)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
String name =
CompanyName.ofProjectTenantCompanyName("[PROJECT]", "[TENANT]", "[COMPANY]").toString();
companyServiceClient.deleteCompany(name);
}
name
- Required. The resource name of the company to be deleted.
The format is "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for example, "projects/foo/tenants/bar/companies/baz".
If tenant id is unspecified, the default tenant is used, for example, "projects/foo/companies/bar".
ApiException
- if the remote call failspublic final void deleteCompany(DeleteCompanyRequest request)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
DeleteCompanyRequest request =
DeleteCompanyRequest.newBuilder()
.setName(
CompanyName.ofProjectTenantCompanyName("[PROJECT]", "[TENANT]", "[COMPANY]")
.toString())
.build();
companyServiceClient.deleteCompany(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<DeleteCompanyRequest,Empty> deleteCompanyCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
DeleteCompanyRequest request =
DeleteCompanyRequest.newBuilder()
.setName(
CompanyName.ofProjectTenantCompanyName("[PROJECT]", "[TENANT]", "[COMPANY]")
.toString())
.build();
ApiFuture<Empty> future = companyServiceClient.deleteCompanyCallable().futureCall(request);
// Do something.
future.get();
}
public final CompanyServiceClient.ListCompaniesPagedResponse listCompanies(ProjectName parent)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
ProjectName parent = ProjectName.of("[PROJECT]");
for (Company element : companyServiceClient.listCompanies(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent
- Required. Resource name of the tenant under which the company is created.
The format is "projects/{project_id}/tenants/{tenant_id}", for example, "projects/foo/tenant/bar".
If tenant id is unspecified, the default tenant will be used, for example, "projects/foo".
ApiException
- if the remote call failspublic final CompanyServiceClient.ListCompaniesPagedResponse listCompanies(TenantName parent)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
TenantName parent = TenantName.of("[PROJECT]", "[TENANT]");
for (Company element : companyServiceClient.listCompanies(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent
- Required. Resource name of the tenant under which the company is created.
The format is "projects/{project_id}/tenants/{tenant_id}", for example, "projects/foo/tenant/bar".
If tenant id is unspecified, the default tenant will be used, for example, "projects/foo".
ApiException
- if the remote call failspublic final CompanyServiceClient.ListCompaniesPagedResponse listCompanies(String parent)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
String parent = TenantName.of("[PROJECT]", "[TENANT]").toString();
for (Company element : companyServiceClient.listCompanies(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent
- Required. Resource name of the tenant under which the company is created.
The format is "projects/{project_id}/tenants/{tenant_id}", for example, "projects/foo/tenant/bar".
If tenant id is unspecified, the default tenant will be used, for example, "projects/foo".
ApiException
- if the remote call failspublic final CompanyServiceClient.ListCompaniesPagedResponse listCompanies(ListCompaniesRequest request)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
ListCompaniesRequest request =
ListCompaniesRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.setPageToken("pageToken873572522")
.setPageSize(883849137)
.setRequireOpenJobs(true)
.build();
for (Company element : companyServiceClient.listCompanies(request).iterateAll()) {
// doThingsWith(element);
}
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<ListCompaniesRequest,CompanyServiceClient.ListCompaniesPagedResponse> listCompaniesPagedCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
ListCompaniesRequest request =
ListCompaniesRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.setPageToken("pageToken873572522")
.setPageSize(883849137)
.setRequireOpenJobs(true)
.build();
ApiFuture<Company> future =
companyServiceClient.listCompaniesPagedCallable().futureCall(request);
// Do something.
for (Company element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final UnaryCallable<ListCompaniesRequest,ListCompaniesResponse> listCompaniesCallable()
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompanyServiceClient companyServiceClient = CompanyServiceClient.create()) {
ListCompaniesRequest request =
ListCompaniesRequest.newBuilder()
.setParent(TenantName.of("[PROJECT]", "[TENANT]").toString())
.setPageToken("pageToken873572522")
.setPageSize(883849137)
.setRequireOpenJobs(true)
.build();
while (true) {
ListCompaniesResponse response = companyServiceClient.listCompaniesCallable().call(request);
for (Company element : response.getCompaniesList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final void close()
close
in interface AutoCloseable
public void shutdown()
shutdown
in interface BackgroundResource
public boolean isShutdown()
isShutdown
in interface BackgroundResource
public boolean isTerminated()
isTerminated
in interface BackgroundResource
public void shutdownNow()
shutdownNow
in interface BackgroundResource
public boolean awaitTermination(long duration, TimeUnit unit) throws InterruptedException
awaitTermination
in interface BackgroundResource
InterruptedException
Copyright © 2022 Google LLC. All rights reserved.