| GitHub Repository | Product Reference |
Service Description: Config Service manages compliance frameworks, cloud controls, and their configurations.
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 (ConfigClient configClient = ConfigClient.create()) {
FrameworkName name = FrameworkName.of("[ORGANIZATION]", "[LOCATION]", "[FRAMEWORK]");
Framework response = configClient.getFramework(name);
}
Note: close() needs to be called on the ConfigClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
| Method | Description | Method Variants |
|---|---|---|
ListFrameworks |
Lists the frameworks (both built-in and custom) that are available within the parent resource. The latest major version of each framework is returned. This method supports pagination. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetFramework |
Gets details about a framework. This method retrieves the latest major version of the framework. To retrieve a specific major version, include |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
CreateFramework |
Creates a custom framework in a given parent resource. You can't create built-in frameworks because those are managed by Google. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
UpdateFramework |
Updates a custom framework. This method allows for partial updates of a framework. Use the - If you provide an You can only update frameworks with the |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
DeleteFramework |
Deletes a custom framework, including all its major and minor revisions. Consider the following: - You can't delete built-in frameworks. You can only delete frameworks with type |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
ListCloudControls |
Lists the cloud controls (both built-in and custom) that are available in a given parent resource. The latest major version of each cloud control is returned. This method supports pagination. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetCloudControl |
Gets details about a cloud control. This method retrieves the latest major version of a cloud control that you identify by name. By default, the latest major version of the cloud control is returned. To retrieve a specific major version, include |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
CreateCloudControl |
Creates a custom cloud control in a given parent resource. You can't create built-in cloud controls because those are managed by Google. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
UpdateCloudControl |
Updates a custom cloud control. This method allows for partial updates of a cloud control. Use the - If you provide an You can only update cloud controls with the |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
DeleteCloudControl |
Deletes a custom cloud control, including all its major and minor revisions. Consider the following: - You can't delete built-in cloud controls. You can only delete cloud controls with type |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
ListLocations |
Lists information about the supported locations for this service. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetLocation |
Gets information about a location. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
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 ConfigSettings 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
ConfigSettings configSettings =
ConfigSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
ConfigClient configClient = ConfigClient.create(configSettings);
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
ConfigSettings configSettings = ConfigSettings.newBuilder().setEndpoint(myEndpoint).build();
ConfigClient configClient = ConfigClient.create(configSettings);
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
ConfigSettings configSettings = ConfigSettings.newHttpJsonBuilder().build();
ConfigClient configClient = ConfigClient.create(configSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Static Methods
create()
public static final ConfigClient create()Constructs an instance of ConfigClient with default settings.
| Returns | |
|---|---|
| Type | Description |
ConfigClient |
|
| Exceptions | |
|---|---|
| Type | Description |
IOException |
|
create(ConfigSettings settings)
public static final ConfigClient create(ConfigSettings settings)Constructs an instance of ConfigClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.
| Parameter | |
|---|---|
| Name | Description |
settings |
ConfigSettings |
| Returns | |
|---|---|
| Type | Description |
ConfigClient |
|
| Exceptions | |
|---|---|
| Type | Description |
IOException |
|
create(ConfigStub stub)
public static final ConfigClient create(ConfigStub stub)Constructs an instance of ConfigClient, using the given stub for making calls. This is for advanced usage - prefer using create(ConfigSettings).
| Parameter | |
|---|---|
| Name | Description |
stub |
ConfigStub |
| Returns | |
|---|---|
| Type | Description |
ConfigClient |
|
Constructors
ConfigClient(ConfigSettings settings)
protected ConfigClient(ConfigSettings settings)Constructs an instance of ConfigClient, using the given settings. This is protected so that it is easy to make a subclass, but otherwise, the static factory methods should be preferred.
| Parameter | |
|---|---|
| Name | Description |
settings |
ConfigSettings |
ConfigClient(ConfigStub stub)
protected ConfigClient(ConfigStub stub)| Parameter | |
|---|---|
| Name | Description |
stub |
ConfigStub |
Methods
awaitTermination(long duration, TimeUnit unit)
public boolean awaitTermination(long duration, TimeUnit unit)| Parameters | |
|---|---|
| Name | Description |
duration |
long |
unit |
TimeUnit |
| Returns | |
|---|---|
| Type | Description |
boolean |
|
| Exceptions | |
|---|---|
| Type | Description |
InterruptedException |
|
close()
public final void close()createCloudControl(CreateCloudControlRequest request)
public final CloudControl createCloudControl(CreateCloudControlRequest request)Creates a custom cloud control in a given parent resource. You can't create built-in cloud controls because those are managed by Google.
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 (ConfigClient configClient = ConfigClient.create()) {
CreateCloudControlRequest request =
CreateCloudControlRequest.newBuilder()
.setParent(OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString())
.setCloudControlId("cloudControlId657324195")
.setCloudControl(CloudControl.newBuilder().build())
.build();
CloudControl response = configClient.createCloudControl(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
CreateCloudControlRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
CloudControl |
|
createCloudControl(OrganizationLocationName parent, CloudControl cloudControl, String cloudControlId)
public final CloudControl createCloudControl(OrganizationLocationName parent, CloudControl cloudControl, String cloudControlId)Creates a custom cloud control in a given parent resource. You can't create built-in cloud controls because those are managed by Google.
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 (ConfigClient configClient = ConfigClient.create()) {
OrganizationLocationName parent = OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]");
CloudControl cloudControl = CloudControl.newBuilder().build();
String cloudControlId = "cloudControlId657324195";
CloudControl response = configClient.createCloudControl(parent, cloudControl, cloudControlId);
}
| Parameters | |
|---|---|
| Name | Description |
parent |
OrganizationLocationNameRequired. The parent resource name, in the format
|
cloudControl |
CloudControlRequired. The cloud control that's being created. |
cloudControlId |
StringRequired. The identifier for the cloud control, which is the last segment
of the cloud control name. The format is |
| Returns | |
|---|---|
| Type | Description |
CloudControl |
|
createCloudControl(String parent, CloudControl cloudControl, String cloudControlId)
public final CloudControl createCloudControl(String parent, CloudControl cloudControl, String cloudControlId)Creates a custom cloud control in a given parent resource. You can't create built-in cloud controls because those are managed by Google.
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 (ConfigClient configClient = ConfigClient.create()) {
String parent = OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString();
CloudControl cloudControl = CloudControl.newBuilder().build();
String cloudControlId = "cloudControlId657324195";
CloudControl response = configClient.createCloudControl(parent, cloudControl, cloudControlId);
}
| Parameters | |
|---|---|
| Name | Description |
parent |
StringRequired. The parent resource name, in the format
|
cloudControl |
CloudControlRequired. The cloud control that's being created. |
cloudControlId |
StringRequired. The identifier for the cloud control, which is the last segment
of the cloud control name. The format is |
| Returns | |
|---|---|
| Type | Description |
CloudControl |
|
createCloudControlCallable()
public final UnaryCallable<CreateCloudControlRequest,CloudControl> createCloudControlCallable()Creates a custom cloud control in a given parent resource. You can't create built-in cloud controls because those are managed by Google.
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 (ConfigClient configClient = ConfigClient.create()) {
CreateCloudControlRequest request =
CreateCloudControlRequest.newBuilder()
.setParent(OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString())
.setCloudControlId("cloudControlId657324195")
.setCloudControl(CloudControl.newBuilder().build())
.build();
ApiFuture<CloudControl> future =
configClient.createCloudControlCallable().futureCall(request);
// Do something.
CloudControl response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<CreateCloudControlRequest,CloudControl> |
|
createFramework(CreateFrameworkRequest request)
public final Framework createFramework(CreateFrameworkRequest request)Creates a custom framework in a given parent resource. You can't create built-in frameworks because those are managed by Google.
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 (ConfigClient configClient = ConfigClient.create()) {
CreateFrameworkRequest request =
CreateFrameworkRequest.newBuilder()
.setParent(OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString())
.setFrameworkId("frameworkId886666169")
.setFramework(Framework.newBuilder().build())
.build();
Framework response = configClient.createFramework(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
CreateFrameworkRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
Framework |
|
createFramework(OrganizationLocationName parent, Framework framework, String frameworkId)
public final Framework createFramework(OrganizationLocationName parent, Framework framework, String frameworkId)Creates a custom framework in a given parent resource. You can't create built-in frameworks because those are managed by Google.
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 (ConfigClient configClient = ConfigClient.create()) {
OrganizationLocationName parent = OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]");
Framework framework = Framework.newBuilder().build();
String frameworkId = "frameworkId886666169";
Framework response = configClient.createFramework(parent, framework, frameworkId);
}
| Parameters | |
|---|---|
| Name | Description |
parent |
OrganizationLocationNameRequired. The parent resource name, in the format
|
framework |
FrameworkRequired. The resource being created. |
frameworkId |
StringRequired. The identifier (ID) of the framework. The ID is not the full name of the framework; it's the last part of the full name of the framework. |
| Returns | |
|---|---|
| Type | Description |
Framework |
|
createFramework(String parent, Framework framework, String frameworkId)
public final Framework createFramework(String parent, Framework framework, String frameworkId)Creates a custom framework in a given parent resource. You can't create built-in frameworks because those are managed by Google.
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 (ConfigClient configClient = ConfigClient.create()) {
String parent = OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString();
Framework framework = Framework.newBuilder().build();
String frameworkId = "frameworkId886666169";
Framework response = configClient.createFramework(parent, framework, frameworkId);
}
| Parameters | |
|---|---|
| Name | Description |
parent |
StringRequired. The parent resource name, in the format
|
framework |
FrameworkRequired. The resource being created. |
frameworkId |
StringRequired. The identifier (ID) of the framework. The ID is not the full name of the framework; it's the last part of the full name of the framework. |
| Returns | |
|---|---|
| Type | Description |
Framework |
|
createFrameworkCallable()
public final UnaryCallable<CreateFrameworkRequest,Framework> createFrameworkCallable()Creates a custom framework in a given parent resource. You can't create built-in frameworks because those are managed by Google.
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 (ConfigClient configClient = ConfigClient.create()) {
CreateFrameworkRequest request =
CreateFrameworkRequest.newBuilder()
.setParent(OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString())
.setFrameworkId("frameworkId886666169")
.setFramework(Framework.newBuilder().build())
.build();
ApiFuture<Framework> future = configClient.createFrameworkCallable().futureCall(request);
// Do something.
Framework response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<CreateFrameworkRequest,Framework> |
|
deleteCloudControl(CloudControlName name)
public final void deleteCloudControl(CloudControlName name)Deletes a custom cloud control, including all its major and minor revisions. Consider the following:
- You can't delete built-in cloud controls. You can only delete cloud controls with type
CUSTOM. - You can't delete cloud controls if any of the versions are referenced by a
framework. - You can't restore a deleted cloud control. This action is permanent.
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 (ConfigClient configClient = ConfigClient.create()) {
CloudControlName name =
CloudControlName.of("[ORGANIZATION]", "[LOCATION]", "[CLOUD_CONTROL]");
configClient.deleteCloudControl(name);
}
| Parameter | |
|---|---|
| Name | Description |
name |
CloudControlNameRequired. The name of the cloud control to delete, in the format
|
deleteCloudControl(DeleteCloudControlRequest request)
public final void deleteCloudControl(DeleteCloudControlRequest request)Deletes a custom cloud control, including all its major and minor revisions. Consider the following:
- You can't delete built-in cloud controls. You can only delete cloud controls with type
CUSTOM. - You can't delete cloud controls if any of the versions are referenced by a
framework. - You can't restore a deleted cloud control. This action is permanent.
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 (ConfigClient configClient = ConfigClient.create()) {
DeleteCloudControlRequest request =
DeleteCloudControlRequest.newBuilder()
.setName(
CloudControlName.of("[ORGANIZATION]", "[LOCATION]", "[CLOUD_CONTROL]").toString())
.build();
configClient.deleteCloudControl(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
DeleteCloudControlRequestThe request object containing all of the parameters for the API call. |
deleteCloudControl(String name)
public final void deleteCloudControl(String name)Deletes a custom cloud control, including all its major and minor revisions. Consider the following:
- You can't delete built-in cloud controls. You can only delete cloud controls with type
CUSTOM. - You can't delete cloud controls if any of the versions are referenced by a
framework. - You can't restore a deleted cloud control. This action is permanent.
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 (ConfigClient configClient = ConfigClient.create()) {
String name =
CloudControlName.of("[ORGANIZATION]", "[LOCATION]", "[CLOUD_CONTROL]").toString();
configClient.deleteCloudControl(name);
}
| Parameter | |
|---|---|
| Name | Description |
name |
StringRequired. The name of the cloud control to delete, in the format
|
deleteCloudControlCallable()
public final UnaryCallable<DeleteCloudControlRequest,Empty> deleteCloudControlCallable()Deletes a custom cloud control, including all its major and minor revisions. Consider the following:
- You can't delete built-in cloud controls. You can only delete cloud controls with type
CUSTOM. - You can't delete cloud controls if any of the versions are referenced by a
framework. - You can't restore a deleted cloud control. This action is permanent.
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 (ConfigClient configClient = ConfigClient.create()) {
DeleteCloudControlRequest request =
DeleteCloudControlRequest.newBuilder()
.setName(
CloudControlName.of("[ORGANIZATION]", "[LOCATION]", "[CLOUD_CONTROL]").toString())
.build();
ApiFuture<Empty> future = configClient.deleteCloudControlCallable().futureCall(request);
// Do something.
future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<DeleteCloudControlRequest,Empty> |
|
deleteFramework(DeleteFrameworkRequest request)
public final void deleteFramework(DeleteFrameworkRequest request)Deletes a custom framework, including all its major and minor revisions. Consider the following:
- You can't delete built-in frameworks. You can only delete frameworks with type CUSTOM. -
You can't delete frameworks that are deployed to a resource. - You can't restore a deleted
framework. This action is permanent.
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 (ConfigClient configClient = ConfigClient.create()) {
DeleteFrameworkRequest request =
DeleteFrameworkRequest.newBuilder()
.setName(FrameworkName.of("[ORGANIZATION]", "[LOCATION]", "[FRAMEWORK]").toString())
.build();
configClient.deleteFramework(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
DeleteFrameworkRequestThe request object containing all of the parameters for the API call. |
deleteFramework(FrameworkName name)
public final void deleteFramework(FrameworkName name)Deletes a custom framework, including all its major and minor revisions. Consider the following:
- You can't delete built-in frameworks. You can only delete frameworks with type CUSTOM. -
You can't delete frameworks that are deployed to a resource. - You can't restore a deleted
framework. This action is permanent.
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 (ConfigClient configClient = ConfigClient.create()) {
FrameworkName name = FrameworkName.of("[ORGANIZATION]", "[LOCATION]", "[FRAMEWORK]");
configClient.deleteFramework(name);
}
| Parameter | |
|---|---|
| Name | Description |
name |
FrameworkNameRequired. The name of the resource, in the format
|
deleteFramework(String name)
public final void deleteFramework(String name)Deletes a custom framework, including all its major and minor revisions. Consider the following:
- You can't delete built-in frameworks. You can only delete frameworks with type CUSTOM. -
You can't delete frameworks that are deployed to a resource. - You can't restore a deleted
framework. This action is permanent.
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 (ConfigClient configClient = ConfigClient.create()) {
String name = FrameworkName.of("[ORGANIZATION]", "[LOCATION]", "[FRAMEWORK]").toString();
configClient.deleteFramework(name);
}
| Parameter | |
|---|---|
| Name | Description |
name |
StringRequired. The name of the resource, in the format
|
deleteFrameworkCallable()
public final UnaryCallable<DeleteFrameworkRequest,Empty> deleteFrameworkCallable()Deletes a custom framework, including all its major and minor revisions. Consider the following:
- You can't delete built-in frameworks. You can only delete frameworks with type CUSTOM. -
You can't delete frameworks that are deployed to a resource. - You can't restore a deleted
framework. This action is permanent.
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 (ConfigClient configClient = ConfigClient.create()) {
DeleteFrameworkRequest request =
DeleteFrameworkRequest.newBuilder()
.setName(FrameworkName.of("[ORGANIZATION]", "[LOCATION]", "[FRAMEWORK]").toString())
.build();
ApiFuture<Empty> future = configClient.deleteFrameworkCallable().futureCall(request);
// Do something.
future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<DeleteFrameworkRequest,Empty> |
|
getCloudControl(CloudControlName name)
public final CloudControl getCloudControl(CloudControlName name)Gets details about a cloud control. This method retrieves the latest major version of a cloud control that you identify by name.
By default, the latest major version of the cloud control is returned. To retrieve a
specific major version, include major_revision_id in the 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 (ConfigClient configClient = ConfigClient.create()) {
CloudControlName name =
CloudControlName.of("[ORGANIZATION]", "[LOCATION]", "[CLOUD_CONTROL]");
CloudControl response = configClient.getCloudControl(name);
}
| Parameter | |
|---|---|
| Name | Description |
name |
CloudControlNameRequired. The name of the cloud control to retrieve, in the format
|
| Returns | |
|---|---|
| Type | Description |
CloudControl |
|
getCloudControl(GetCloudControlRequest request)
public final CloudControl getCloudControl(GetCloudControlRequest request)Gets details about a cloud control. This method retrieves the latest major version of a cloud control that you identify by name.
By default, the latest major version of the cloud control is returned. To retrieve a
specific major version, include major_revision_id in the 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 (ConfigClient configClient = ConfigClient.create()) {
GetCloudControlRequest request =
GetCloudControlRequest.newBuilder()
.setName(
CloudControlName.of("[ORGANIZATION]", "[LOCATION]", "[CLOUD_CONTROL]").toString())
.setMajorRevisionId(612576889)
.build();
CloudControl response = configClient.getCloudControl(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
GetCloudControlRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
CloudControl |
|
getCloudControl(String name)
public final CloudControl getCloudControl(String name)Gets details about a cloud control. This method retrieves the latest major version of a cloud control that you identify by name.
By default, the latest major version of the cloud control is returned. To retrieve a
specific major version, include major_revision_id in the 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 (ConfigClient configClient = ConfigClient.create()) {
String name =
CloudControlName.of("[ORGANIZATION]", "[LOCATION]", "[CLOUD_CONTROL]").toString();
CloudControl response = configClient.getCloudControl(name);
}
| Parameter | |
|---|---|
| Name | Description |
name |
StringRequired. The name of the cloud control to retrieve, in the format
|
| Returns | |
|---|---|
| Type | Description |
CloudControl |
|
getCloudControlCallable()
public final UnaryCallable<GetCloudControlRequest,CloudControl> getCloudControlCallable()Gets details about a cloud control. This method retrieves the latest major version of a cloud control that you identify by name.
By default, the latest major version of the cloud control is returned. To retrieve a
specific major version, include major_revision_id in the 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 (ConfigClient configClient = ConfigClient.create()) {
GetCloudControlRequest request =
GetCloudControlRequest.newBuilder()
.setName(
CloudControlName.of("[ORGANIZATION]", "[LOCATION]", "[CLOUD_CONTROL]").toString())
.setMajorRevisionId(612576889)
.build();
ApiFuture<CloudControl> future = configClient.getCloudControlCallable().futureCall(request);
// Do something.
CloudControl response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<GetCloudControlRequest,CloudControl> |
|
getFramework(FrameworkName name)
public final Framework getFramework(FrameworkName name)Gets details about a framework. This method retrieves the latest major version of the framework.
To retrieve a specific major version, include major_revision_id in the 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 (ConfigClient configClient = ConfigClient.create()) {
FrameworkName name = FrameworkName.of("[ORGANIZATION]", "[LOCATION]", "[FRAMEWORK]");
Framework response = configClient.getFramework(name);
}
| Parameter | |
|---|---|
| Name | Description |
name |
FrameworkNameRequired. The name of the framework to retrieve, in the format
|
| Returns | |
|---|---|
| Type | Description |
Framework |
|
getFramework(GetFrameworkRequest request)
public final Framework getFramework(GetFrameworkRequest request)Gets details about a framework. This method retrieves the latest major version of the framework.
To retrieve a specific major version, include major_revision_id in the 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 (ConfigClient configClient = ConfigClient.create()) {
GetFrameworkRequest request =
GetFrameworkRequest.newBuilder()
.setName(FrameworkName.of("[ORGANIZATION]", "[LOCATION]", "[FRAMEWORK]").toString())
.setMajorRevisionId(612576889)
.build();
Framework response = configClient.getFramework(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
GetFrameworkRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
Framework |
|
getFramework(String name)
public final Framework getFramework(String name)Gets details about a framework. This method retrieves the latest major version of the framework.
To retrieve a specific major version, include major_revision_id in the 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 (ConfigClient configClient = ConfigClient.create()) {
String name = FrameworkName.of("[ORGANIZATION]", "[LOCATION]", "[FRAMEWORK]").toString();
Framework response = configClient.getFramework(name);
}
| Parameter | |
|---|---|
| Name | Description |
name |
StringRequired. The name of the framework to retrieve, in the format
|
| Returns | |
|---|---|
| Type | Description |
Framework |
|
getFrameworkCallable()
public final UnaryCallable<GetFrameworkRequest,Framework> getFrameworkCallable()Gets details about a framework. This method retrieves the latest major version of the framework.
To retrieve a specific major version, include major_revision_id in the 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 (ConfigClient configClient = ConfigClient.create()) {
GetFrameworkRequest request =
GetFrameworkRequest.newBuilder()
.setName(FrameworkName.of("[ORGANIZATION]", "[LOCATION]", "[FRAMEWORK]").toString())
.setMajorRevisionId(612576889)
.build();
ApiFuture<Framework> future = configClient.getFrameworkCallable().futureCall(request);
// Do something.
Framework response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<GetFrameworkRequest,Framework> |
|
getLocation(GetLocationRequest request)
public final Location getLocation(GetLocationRequest request)Gets information about a location.
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 (ConfigClient configClient = ConfigClient.create()) {
GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
Location response = configClient.getLocation(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
com.google.cloud.location.GetLocationRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
com.google.cloud.location.Location |
|
getLocationCallable()
public final UnaryCallable<GetLocationRequest,Location> getLocationCallable()Gets information about a location.
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 (ConfigClient configClient = ConfigClient.create()) {
GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
ApiFuture<Location> future = configClient.getLocationCallable().futureCall(request);
// Do something.
Location response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<com.google.cloud.location.GetLocationRequest,com.google.cloud.location.Location> |
|
getSettings()
public final ConfigSettings getSettings()| Returns | |
|---|---|
| Type | Description |
ConfigSettings |
|
getStub()
public ConfigStub getStub()| Returns | |
|---|---|
| Type | Description |
ConfigStub |
|
isShutdown()
public boolean isShutdown()| Returns | |
|---|---|
| Type | Description |
boolean |
|
isTerminated()
public boolean isTerminated()| Returns | |
|---|---|
| Type | Description |
boolean |
|
listCloudControls(ListCloudControlsRequest request)
public final ConfigClient.ListCloudControlsPagedResponse listCloudControls(ListCloudControlsRequest request)Lists the cloud controls (both built-in and custom) that are available in a given parent resource. The latest major version of each cloud control is returned. This method supports pagination.
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 (ConfigClient configClient = ConfigClient.create()) {
ListCloudControlsRequest request =
ListCloudControlsRequest.newBuilder()
.setParent(OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (CloudControl element : configClient.listCloudControls(request).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
request |
ListCloudControlsRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
ConfigClient.ListCloudControlsPagedResponse |
|
listCloudControls(OrganizationLocationName parent)
public final ConfigClient.ListCloudControlsPagedResponse listCloudControls(OrganizationLocationName parent)Lists the cloud controls (both built-in and custom) that are available in a given parent resource. The latest major version of each cloud control is returned. This method supports pagination.
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 (ConfigClient configClient = ConfigClient.create()) {
OrganizationLocationName parent = OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]");
for (CloudControl element : configClient.listCloudControls(parent).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
parent |
OrganizationLocationNameRequired. The parent resource name, in the format
|
| Returns | |
|---|---|
| Type | Description |
ConfigClient.ListCloudControlsPagedResponse |
|
listCloudControls(String parent)
public final ConfigClient.ListCloudControlsPagedResponse listCloudControls(String parent)Lists the cloud controls (both built-in and custom) that are available in a given parent resource. The latest major version of each cloud control is returned. This method supports pagination.
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 (ConfigClient configClient = ConfigClient.create()) {
String parent = OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString();
for (CloudControl element : configClient.listCloudControls(parent).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
parent |
StringRequired. The parent resource name, in the format
|
| Returns | |
|---|---|
| Type | Description |
ConfigClient.ListCloudControlsPagedResponse |
|
listCloudControlsCallable()
public final UnaryCallable<ListCloudControlsRequest,ListCloudControlsResponse> listCloudControlsCallable()Lists the cloud controls (both built-in and custom) that are available in a given parent resource. The latest major version of each cloud control is returned. This method supports pagination.
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 (ConfigClient configClient = ConfigClient.create()) {
ListCloudControlsRequest request =
ListCloudControlsRequest.newBuilder()
.setParent(OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListCloudControlsResponse response = configClient.listCloudControlsCallable().call(request);
for (CloudControl element : response.getCloudControlsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<ListCloudControlsRequest,ListCloudControlsResponse> |
|
listCloudControlsPagedCallable()
public final UnaryCallable<ListCloudControlsRequest,ConfigClient.ListCloudControlsPagedResponse> listCloudControlsPagedCallable()Lists the cloud controls (both built-in and custom) that are available in a given parent resource. The latest major version of each cloud control is returned. This method supports pagination.
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 (ConfigClient configClient = ConfigClient.create()) {
ListCloudControlsRequest request =
ListCloudControlsRequest.newBuilder()
.setParent(OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<CloudControl> future =
configClient.listCloudControlsPagedCallable().futureCall(request);
// Do something.
for (CloudControl element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<ListCloudControlsRequest,ListCloudControlsPagedResponse> |
|
listFrameworks(ListFrameworksRequest request)
public final ConfigClient.ListFrameworksPagedResponse listFrameworks(ListFrameworksRequest request)Lists the frameworks (both built-in and custom) that are available within the parent resource. The latest major version of each framework is returned. This method supports pagination.
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 (ConfigClient configClient = ConfigClient.create()) {
ListFrameworksRequest request =
ListFrameworksRequest.newBuilder()
.setParent(OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Framework element : configClient.listFrameworks(request).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
request |
ListFrameworksRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
ConfigClient.ListFrameworksPagedResponse |
|
listFrameworks(OrganizationLocationName parent)
public final ConfigClient.ListFrameworksPagedResponse listFrameworks(OrganizationLocationName parent)Lists the frameworks (both built-in and custom) that are available within the parent resource. The latest major version of each framework is returned. This method supports pagination.
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 (ConfigClient configClient = ConfigClient.create()) {
OrganizationLocationName parent = OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]");
for (Framework element : configClient.listFrameworks(parent).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
parent |
OrganizationLocationNameRequired. The parent resource name, in the format
|
| Returns | |
|---|---|
| Type | Description |
ConfigClient.ListFrameworksPagedResponse |
|
listFrameworks(String parent)
public final ConfigClient.ListFrameworksPagedResponse listFrameworks(String parent)Lists the frameworks (both built-in and custom) that are available within the parent resource. The latest major version of each framework is returned. This method supports pagination.
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 (ConfigClient configClient = ConfigClient.create()) {
String parent = OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString();
for (Framework element : configClient.listFrameworks(parent).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
parent |
StringRequired. The parent resource name, in the format
|
| Returns | |
|---|---|
| Type | Description |
ConfigClient.ListFrameworksPagedResponse |
|
listFrameworksCallable()
public final UnaryCallable<ListFrameworksRequest,ListFrameworksResponse> listFrameworksCallable()Lists the frameworks (both built-in and custom) that are available within the parent resource. The latest major version of each framework is returned. This method supports pagination.
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 (ConfigClient configClient = ConfigClient.create()) {
ListFrameworksRequest request =
ListFrameworksRequest.newBuilder()
.setParent(OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListFrameworksResponse response = configClient.listFrameworksCallable().call(request);
for (Framework element : response.getFrameworksList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<ListFrameworksRequest,ListFrameworksResponse> |
|
listFrameworksPagedCallable()
public final UnaryCallable<ListFrameworksRequest,ConfigClient.ListFrameworksPagedResponse> listFrameworksPagedCallable()Lists the frameworks (both built-in and custom) that are available within the parent resource. The latest major version of each framework is returned. This method supports pagination.
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 (ConfigClient configClient = ConfigClient.create()) {
ListFrameworksRequest request =
ListFrameworksRequest.newBuilder()
.setParent(OrganizationLocationName.of("[ORGANIZATION]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Framework> future = configClient.listFrameworksPagedCallable().futureCall(request);
// Do something.
for (Framework element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<ListFrameworksRequest,ListFrameworksPagedResponse> |
|
listLocations(ListLocationsRequest request)
public final ConfigClient.ListLocationsPagedResponse listLocations(ListLocationsRequest request)Lists information about the supported locations for this service.
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 (ConfigClient configClient = ConfigClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Location element : configClient.listLocations(request).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
request |
com.google.cloud.location.ListLocationsRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
ConfigClient.ListLocationsPagedResponse |
|
listLocationsCallable()
public final UnaryCallable<ListLocationsRequest,ListLocationsResponse> listLocationsCallable()Lists information about the supported locations for this service.
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 (ConfigClient configClient = ConfigClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListLocationsResponse response = configClient.listLocationsCallable().call(request);
for (Location element : response.getLocationsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<com.google.cloud.location.ListLocationsRequest,com.google.cloud.location.ListLocationsResponse> |
|
listLocationsPagedCallable()
public final UnaryCallable<ListLocationsRequest,ConfigClient.ListLocationsPagedResponse> listLocationsPagedCallable()Lists information about the supported locations for this service.
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 (ConfigClient configClient = ConfigClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Location> future = configClient.listLocationsPagedCallable().futureCall(request);
// Do something.
for (Location element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<com.google.cloud.location.ListLocationsRequest,ListLocationsPagedResponse> |
|
shutdown()
public void shutdown()shutdownNow()
public void shutdownNow()updateCloudControl(CloudControl cloudControl, FieldMask updateMask)
public final CloudControl updateCloudControl(CloudControl cloudControl, FieldMask updateMask)Updates a custom cloud control. This method allows for partial updates of a cloud control. Use
the update_mask to specify which fields to update. Consider the following:
- If you provide an update_mask, only the fields that are specified in the mask are
updated. - If you don't provide an update_mask, all the fields that are present in the
request's cloud_control body are used to overwrite the existing resource.
You can only update cloud controls with the CUSTOM type. A successful update creates a new
version of the cloud control.
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 (ConfigClient configClient = ConfigClient.create()) {
CloudControl cloudControl = CloudControl.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
CloudControl response = configClient.updateCloudControl(cloudControl, updateMask);
}
| Parameters | |
|---|---|
| Name | Description |
cloudControl |
CloudControlRequired. The cloud control that you're updating. |
updateMask |
FieldMaskOptional. Use a field mask to specify the fields to be overwritten in the
cloud control during the update. The fields that you specify in the You can update the following fields: - Display name - Description - Parameters - Rules - Parameter specification |
| Returns | |
|---|---|
| Type | Description |
CloudControl |
|
updateCloudControl(UpdateCloudControlRequest request)
public final CloudControl updateCloudControl(UpdateCloudControlRequest request)Updates a custom cloud control. This method allows for partial updates of a cloud control. Use
the update_mask to specify which fields to update. Consider the following:
- If you provide an update_mask, only the fields that are specified in the mask are
updated. - If you don't provide an update_mask, all the fields that are present in the
request's cloud_control body are used to overwrite the existing resource.
You can only update cloud controls with the CUSTOM type. A successful update creates a new
version of the cloud control.
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 (ConfigClient configClient = ConfigClient.create()) {
UpdateCloudControlRequest request =
UpdateCloudControlRequest.newBuilder()
.setUpdateMask(FieldMask.newBuilder().build())
.setCloudControl(CloudControl.newBuilder().build())
.build();
CloudControl response = configClient.updateCloudControl(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
UpdateCloudControlRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
CloudControl |
|
updateCloudControlCallable()
public final UnaryCallable<UpdateCloudControlRequest,CloudControl> updateCloudControlCallable()Updates a custom cloud control. This method allows for partial updates of a cloud control. Use
the update_mask to specify which fields to update. Consider the following:
- If you provide an update_mask, only the fields that are specified in the mask are
updated. - If you don't provide an update_mask, all the fields that are present in the
request's cloud_control body are used to overwrite the existing resource.
You can only update cloud controls with the CUSTOM type. A successful update creates a new
version of the cloud control.
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 (ConfigClient configClient = ConfigClient.create()) {
UpdateCloudControlRequest request =
UpdateCloudControlRequest.newBuilder()
.setUpdateMask(FieldMask.newBuilder().build())
.setCloudControl(CloudControl.newBuilder().build())
.build();
ApiFuture<CloudControl> future =
configClient.updateCloudControlCallable().futureCall(request);
// Do something.
CloudControl response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<UpdateCloudControlRequest,CloudControl> |
|
updateFramework(Framework framework, FieldMask updateMask)
public final Framework updateFramework(Framework framework, FieldMask updateMask)Updates a custom framework. This method allows for partial updates of a framework. Use the
update_mask to specify which fields to update. Consider the following:
- If you provide an update_mask, only the fields that are specified in the mask are
updated. - If you don't provide an update_mask, all the fields that are present in the
request's framework body are used to overwrite the existing resource.
You can only update frameworks with the CUSTOM type. A successful update creates a new
version of the framework.
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 (ConfigClient configClient = ConfigClient.create()) {
Framework framework = Framework.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
Framework response = configClient.updateFramework(framework, updateMask);
}
| Parameters | |
|---|---|
| Name | Description |
framework |
FrameworkRequired. The resource that is being updated. |
updateMask |
FieldMaskOptional. A field mask is used to specify the fields to be overwritten in the
framework resource by the update. The fields specified in the |
| Returns | |
|---|---|
| Type | Description |
Framework |
|
updateFramework(UpdateFrameworkRequest request)
public final Framework updateFramework(UpdateFrameworkRequest request)Updates a custom framework. This method allows for partial updates of a framework. Use the
update_mask to specify which fields to update. Consider the following:
- If you provide an update_mask, only the fields that are specified in the mask are
updated. - If you don't provide an update_mask, all the fields that are present in the
request's framework body are used to overwrite the existing resource.
You can only update frameworks with the CUSTOM type. A successful update creates a new
version of the framework.
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 (ConfigClient configClient = ConfigClient.create()) {
UpdateFrameworkRequest request =
UpdateFrameworkRequest.newBuilder()
.setUpdateMask(FieldMask.newBuilder().build())
.setFramework(Framework.newBuilder().build())
.setMajorRevisionId(612576889)
.build();
Framework response = configClient.updateFramework(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
UpdateFrameworkRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
Framework |
|
updateFrameworkCallable()
public final UnaryCallable<UpdateFrameworkRequest,Framework> updateFrameworkCallable()Updates a custom framework. This method allows for partial updates of a framework. Use the
update_mask to specify which fields to update. Consider the following:
- If you provide an update_mask, only the fields that are specified in the mask are
updated. - If you don't provide an update_mask, all the fields that are present in the
request's framework body are used to overwrite the existing resource.
You can only update frameworks with the CUSTOM type. A successful update creates a new
version of the framework.
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 (ConfigClient configClient = ConfigClient.create()) {
UpdateFrameworkRequest request =
UpdateFrameworkRequest.newBuilder()
.setUpdateMask(FieldMask.newBuilder().build())
.setFramework(Framework.newBuilder().build())
.setMajorRevisionId(612576889)
.build();
ApiFuture<Framework> future = configClient.updateFrameworkCallable().futureCall(request);
// Do something.
Framework response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<UpdateFrameworkRequest,Framework> |
|