Class SimulatorClient
- java.lang.Object
-
- com.google.cloud.policysimulator.v1.SimulatorClient
-
- All Implemented Interfaces:
com.google.api.gax.core.BackgroundResource
,AutoCloseable
@Generated("by gapic-generator-java") public class SimulatorClient extends Object implements com.google.api.gax.core.BackgroundResource
Service Description: Policy Simulator API service.Policy Simulator is a collection of endpoints for creating, running, and viewing a [Replay][google.cloud.policysimulator.v1.Replay]. A [Replay][google.cloud.policysimulator.v1.Replay] is a type of simulation that lets you see how your principals' access to resources might change if you changed your IAM policy.
During a [Replay][google.cloud.policysimulator.v1.Replay], Policy Simulator re-evaluates, or replays, past access attempts under both the current policy and your proposed policy, and compares those results to determine how your principals' access might change under the proposed policy.
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 (SimulatorClient simulatorClient = SimulatorClient.create()) { ReplayName name = ReplayName.ofProjectLocationReplayName("[PROJECT]", "[LOCATION]", "[REPLAY]"); Replay response = simulatorClient.getReplay(name); }
Note: close() needs to be called on the SimulatorClient 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:
- A "flattened" method. With this type of method, the fields of the request type have been converted into function parameters. It may be the case that not all fields are available as parameters, and not every API method will have a flattened method entry point.
- A "request object" method. This type of method only takes one parameter, a request object, which must be constructed before the call. Not every API method will have a request object method.
- A "callable" method. This type of method takes no parameters and returns 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 SimulatorSettings 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 SimulatorSettings simulatorSettings = SimulatorSettings.newBuilder() .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials)) .build(); SimulatorClient simulatorClient = SimulatorClient.create(simulatorSettings);
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 SimulatorSettings simulatorSettings = SimulatorSettings.newBuilder().setEndpoint(myEndpoint).build(); SimulatorClient simulatorClient = SimulatorClient.create(simulatorSettings);
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 SimulatorSettings simulatorSettings = SimulatorSettings.newHttpJsonBuilder().build(); SimulatorClient simulatorClient = SimulatorClient.create(simulatorSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SimulatorClient.ListReplayResultsFixedSizeCollection
static class
SimulatorClient.ListReplayResultsPage
static class
SimulatorClient.ListReplayResultsPagedResponse
-
Constructor Summary
Constructors Modifier Constructor Description protected
SimulatorClient(SimulatorSettings settings)
Constructs an instance of SimulatorClient, using the given settings.protected
SimulatorClient(SimulatorStub stub)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
awaitTermination(long duration, TimeUnit unit)
void
close()
static SimulatorClient
create()
Constructs an instance of SimulatorClient with default settings.static SimulatorClient
create(SimulatorSettings settings)
Constructs an instance of SimulatorClient, using the given settings.static SimulatorClient
create(SimulatorStub stub)
Constructs an instance of SimulatorClient, using the given stub for making calls.com.google.api.gax.longrunning.OperationFuture<Replay,ReplayOperationMetadata>
createReplayAsync(CreateReplayRequest request)
Creates and starts a [Replay][google.cloud.policysimulator.v1.Replay] using the given [ReplayConfig][google.cloud.policysimulator.v1.ReplayConfig].com.google.api.gax.longrunning.OperationFuture<Replay,ReplayOperationMetadata>
createReplayAsync(String parent, Replay replay)
Creates and starts a [Replay][google.cloud.policysimulator.v1.Replay] using the given [ReplayConfig][google.cloud.policysimulator.v1.ReplayConfig].com.google.api.gax.rpc.UnaryCallable<CreateReplayRequest,com.google.longrunning.Operation>
createReplayCallable()
Creates and starts a [Replay][google.cloud.policysimulator.v1.Replay] using the given [ReplayConfig][google.cloud.policysimulator.v1.ReplayConfig].com.google.api.gax.rpc.OperationCallable<CreateReplayRequest,Replay,ReplayOperationMetadata>
createReplayOperationCallable()
Creates and starts a [Replay][google.cloud.policysimulator.v1.Replay] using the given [ReplayConfig][google.cloud.policysimulator.v1.ReplayConfig].com.google.api.gax.httpjson.longrunning.OperationsClient
getHttpJsonOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.com.google.longrunning.OperationsClient
getOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.Replay
getReplay(GetReplayRequest request)
Gets the specified [Replay][google.cloud.policysimulator.v1.Replay].Replay
getReplay(ReplayName name)
Gets the specified [Replay][google.cloud.policysimulator.v1.Replay].Replay
getReplay(String name)
Gets the specified [Replay][google.cloud.policysimulator.v1.Replay].com.google.api.gax.rpc.UnaryCallable<GetReplayRequest,Replay>
getReplayCallable()
Gets the specified [Replay][google.cloud.policysimulator.v1.Replay].SimulatorSettings
getSettings()
SimulatorStub
getStub()
boolean
isShutdown()
boolean
isTerminated()
SimulatorClient.ListReplayResultsPagedResponse
listReplayResults(ListReplayResultsRequest request)
Lists the results of running a [Replay][google.cloud.policysimulator.v1.Replay].SimulatorClient.ListReplayResultsPagedResponse
listReplayResults(ReplayName parent)
Lists the results of running a [Replay][google.cloud.policysimulator.v1.Replay].SimulatorClient.ListReplayResultsPagedResponse
listReplayResults(String parent)
Lists the results of running a [Replay][google.cloud.policysimulator.v1.Replay].com.google.api.gax.rpc.UnaryCallable<ListReplayResultsRequest,ListReplayResultsResponse>
listReplayResultsCallable()
Lists the results of running a [Replay][google.cloud.policysimulator.v1.Replay].com.google.api.gax.rpc.UnaryCallable<ListReplayResultsRequest,SimulatorClient.ListReplayResultsPagedResponse>
listReplayResultsPagedCallable()
Lists the results of running a [Replay][google.cloud.policysimulator.v1.Replay].void
shutdown()
void
shutdownNow()
-
-
-
Constructor Detail
-
SimulatorClient
protected SimulatorClient(SimulatorSettings settings) throws IOException
Constructs an instance of SimulatorClient, 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.- Throws:
IOException
-
SimulatorClient
protected SimulatorClient(SimulatorStub stub)
-
-
Method Detail
-
create
public static final SimulatorClient create() throws IOException
Constructs an instance of SimulatorClient with default settings.- Throws:
IOException
-
create
public static final SimulatorClient create(SimulatorSettings settings) throws IOException
Constructs an instance of SimulatorClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.- Throws:
IOException
-
create
public static final SimulatorClient create(SimulatorStub stub)
Constructs an instance of SimulatorClient, using the given stub for making calls. This is for advanced usage - prefer using create(SimulatorSettings).
-
getSettings
public final SimulatorSettings getSettings()
-
getStub
public SimulatorStub getStub()
-
getOperationsClient
public final com.google.longrunning.OperationsClient getOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.
-
getHttpJsonOperationsClient
@BetaApi public final com.google.api.gax.httpjson.longrunning.OperationsClient getHttpJsonOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.
-
getReplay
public final Replay getReplay(ReplayName name)
Gets the specified [Replay][google.cloud.policysimulator.v1.Replay]. Each `Replay` is available for at least 7 days.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 (SimulatorClient simulatorClient = SimulatorClient.create()) { ReplayName name = ReplayName.ofProjectLocationReplayName("[PROJECT]", "[LOCATION]", "[REPLAY]"); Replay response = simulatorClient.getReplay(name); }
- Parameters:
name
- Required. The name of the [Replay][google.cloud.policysimulator.v1.Replay] to retrieve, in the following format:`{projects|folders|organizations}/{resource-id}/locations/global/replays/{replay-id}`, where `{resource-id}` is the ID of the project, folder, or organization that owns the `Replay`.
Example: `projects/my-example-project/locations/global/replays/506a5f7f-38ce-4d7d-8e03-479ce1833c36`
- Throws:
com.google.api.gax.rpc.ApiException
- if the remote call fails
-
getReplay
public final Replay getReplay(String name)
Gets the specified [Replay][google.cloud.policysimulator.v1.Replay]. Each `Replay` is available for at least 7 days.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 (SimulatorClient simulatorClient = SimulatorClient.create()) { String name = ReplayName.ofProjectLocationReplayName("[PROJECT]", "[LOCATION]", "[REPLAY]").toString(); Replay response = simulatorClient.getReplay(name); }
- Parameters:
name
- Required. The name of the [Replay][google.cloud.policysimulator.v1.Replay] to retrieve, in the following format:`{projects|folders|organizations}/{resource-id}/locations/global/replays/{replay-id}`, where `{resource-id}` is the ID of the project, folder, or organization that owns the `Replay`.
Example: `projects/my-example-project/locations/global/replays/506a5f7f-38ce-4d7d-8e03-479ce1833c36`
- Throws:
com.google.api.gax.rpc.ApiException
- if the remote call fails
-
getReplay
public final Replay getReplay(GetReplayRequest request)
Gets the specified [Replay][google.cloud.policysimulator.v1.Replay]. Each `Replay` is available for at least 7 days.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 (SimulatorClient simulatorClient = SimulatorClient.create()) { GetReplayRequest request = GetReplayRequest.newBuilder() .setName( ReplayName.ofProjectLocationReplayName("[PROJECT]", "[LOCATION]", "[REPLAY]") .toString()) .build(); Replay response = simulatorClient.getReplay(request); }
- Parameters:
request
- The request object containing all of the parameters for the API call.- Throws:
com.google.api.gax.rpc.ApiException
- if the remote call fails
-
getReplayCallable
public final com.google.api.gax.rpc.UnaryCallable<GetReplayRequest,Replay> getReplayCallable()
Gets the specified [Replay][google.cloud.policysimulator.v1.Replay]. Each `Replay` is available for at least 7 days.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 (SimulatorClient simulatorClient = SimulatorClient.create()) { GetReplayRequest request = GetReplayRequest.newBuilder() .setName( ReplayName.ofProjectLocationReplayName("[PROJECT]", "[LOCATION]", "[REPLAY]") .toString()) .build(); ApiFuture<Replay> future = simulatorClient.getReplayCallable().futureCall(request); // Do something. Replay response = future.get(); }
-
createReplayAsync
public final com.google.api.gax.longrunning.OperationFuture<Replay,ReplayOperationMetadata> createReplayAsync(String parent, Replay replay)
Creates and starts a [Replay][google.cloud.policysimulator.v1.Replay] using the given [ReplayConfig][google.cloud.policysimulator.v1.ReplayConfig].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 (SimulatorClient simulatorClient = SimulatorClient.create()) { String parent = "parent-995424086"; Replay replay = Replay.newBuilder().build(); Replay response = simulatorClient.createReplayAsync(parent, replay).get(); }
- Parameters:
parent
- Required. The parent resource where this [Replay][google.cloud.policysimulator.v1.Replay] will be created. This resource must be a project, folder, or organization with a location.Example: `projects/my-example-project/locations/global`
replay
- Required. The [Replay][google.cloud.policysimulator.v1.Replay] to create. Set `Replay.ReplayConfig` to configure the replay.- Throws:
com.google.api.gax.rpc.ApiException
- if the remote call fails
-
createReplayAsync
public final com.google.api.gax.longrunning.OperationFuture<Replay,ReplayOperationMetadata> createReplayAsync(CreateReplayRequest request)
Creates and starts a [Replay][google.cloud.policysimulator.v1.Replay] using the given [ReplayConfig][google.cloud.policysimulator.v1.ReplayConfig].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 (SimulatorClient simulatorClient = SimulatorClient.create()) { CreateReplayRequest request = CreateReplayRequest.newBuilder() .setParent("parent-995424086") .setReplay(Replay.newBuilder().build()) .build(); Replay response = simulatorClient.createReplayAsync(request).get(); }
- Parameters:
request
- The request object containing all of the parameters for the API call.- Throws:
com.google.api.gax.rpc.ApiException
- if the remote call fails
-
createReplayOperationCallable
public final com.google.api.gax.rpc.OperationCallable<CreateReplayRequest,Replay,ReplayOperationMetadata> createReplayOperationCallable()
Creates and starts a [Replay][google.cloud.policysimulator.v1.Replay] using the given [ReplayConfig][google.cloud.policysimulator.v1.ReplayConfig].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 (SimulatorClient simulatorClient = SimulatorClient.create()) { CreateReplayRequest request = CreateReplayRequest.newBuilder() .setParent("parent-995424086") .setReplay(Replay.newBuilder().build()) .build(); OperationFuture<Replay, ReplayOperationMetadata> future = simulatorClient.createReplayOperationCallable().futureCall(request); // Do something. Replay response = future.get(); }
-
createReplayCallable
public final com.google.api.gax.rpc.UnaryCallable<CreateReplayRequest,com.google.longrunning.Operation> createReplayCallable()
Creates and starts a [Replay][google.cloud.policysimulator.v1.Replay] using the given [ReplayConfig][google.cloud.policysimulator.v1.ReplayConfig].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 (SimulatorClient simulatorClient = SimulatorClient.create()) { CreateReplayRequest request = CreateReplayRequest.newBuilder() .setParent("parent-995424086") .setReplay(Replay.newBuilder().build()) .build(); ApiFuture<Operation> future = simulatorClient.createReplayCallable().futureCall(request); // Do something. Operation response = future.get(); }
-
listReplayResults
public final SimulatorClient.ListReplayResultsPagedResponse listReplayResults(ReplayName parent)
Lists the results of running a [Replay][google.cloud.policysimulator.v1.Replay].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 (SimulatorClient simulatorClient = SimulatorClient.create()) { ReplayName parent = ReplayName.ofProjectLocationReplayName("[PROJECT]", "[LOCATION]", "[REPLAY]"); for (ReplayResult element : simulatorClient.listReplayResults(parent).iterateAll()) { // doThingsWith(element); } }
- Parameters:
parent
- Required. The [Replay][google.cloud.policysimulator.v1.Replay] whose results are listed, in the following format:`{projects|folders|organizations}/{resource-id}/locations/global/replays/{replay-id}`
Example: `projects/my-project/locations/global/replays/506a5f7f-38ce-4d7d-8e03-479ce1833c36`
- Throws:
com.google.api.gax.rpc.ApiException
- if the remote call fails
-
listReplayResults
public final SimulatorClient.ListReplayResultsPagedResponse listReplayResults(String parent)
Lists the results of running a [Replay][google.cloud.policysimulator.v1.Replay].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 (SimulatorClient simulatorClient = SimulatorClient.create()) { String parent = ReplayName.ofProjectLocationReplayName("[PROJECT]", "[LOCATION]", "[REPLAY]").toString(); for (ReplayResult element : simulatorClient.listReplayResults(parent).iterateAll()) { // doThingsWith(element); } }
- Parameters:
parent
- Required. The [Replay][google.cloud.policysimulator.v1.Replay] whose results are listed, in the following format:`{projects|folders|organizations}/{resource-id}/locations/global/replays/{replay-id}`
Example: `projects/my-project/locations/global/replays/506a5f7f-38ce-4d7d-8e03-479ce1833c36`
- Throws:
com.google.api.gax.rpc.ApiException
- if the remote call fails
-
listReplayResults
public final SimulatorClient.ListReplayResultsPagedResponse listReplayResults(ListReplayResultsRequest request)
Lists the results of running a [Replay][google.cloud.policysimulator.v1.Replay].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 (SimulatorClient simulatorClient = SimulatorClient.create()) { ListReplayResultsRequest request = ListReplayResultsRequest.newBuilder() .setParent( ReplayName.ofProjectLocationReplayName("[PROJECT]", "[LOCATION]", "[REPLAY]") .toString()) .setPageSize(883849137) .setPageToken("pageToken873572522") .build(); for (ReplayResult element : simulatorClient.listReplayResults(request).iterateAll()) { // doThingsWith(element); } }
- Parameters:
request
- The request object containing all of the parameters for the API call.- Throws:
com.google.api.gax.rpc.ApiException
- if the remote call fails
-
listReplayResultsPagedCallable
public final com.google.api.gax.rpc.UnaryCallable<ListReplayResultsRequest,SimulatorClient.ListReplayResultsPagedResponse> listReplayResultsPagedCallable()
Lists the results of running a [Replay][google.cloud.policysimulator.v1.Replay].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 (SimulatorClient simulatorClient = SimulatorClient.create()) { ListReplayResultsRequest request = ListReplayResultsRequest.newBuilder() .setParent( ReplayName.ofProjectLocationReplayName("[PROJECT]", "[LOCATION]", "[REPLAY]") .toString()) .setPageSize(883849137) .setPageToken("pageToken873572522") .build(); ApiFuture<ReplayResult> future = simulatorClient.listReplayResultsPagedCallable().futureCall(request); // Do something. for (ReplayResult element : future.get().iterateAll()) { // doThingsWith(element); } }
-
listReplayResultsCallable
public final com.google.api.gax.rpc.UnaryCallable<ListReplayResultsRequest,ListReplayResultsResponse> listReplayResultsCallable()
Lists the results of running a [Replay][google.cloud.policysimulator.v1.Replay].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 (SimulatorClient simulatorClient = SimulatorClient.create()) { ListReplayResultsRequest request = ListReplayResultsRequest.newBuilder() .setParent( ReplayName.ofProjectLocationReplayName("[PROJECT]", "[LOCATION]", "[REPLAY]") .toString()) .setPageSize(883849137) .setPageToken("pageToken873572522") .build(); while (true) { ListReplayResultsResponse response = simulatorClient.listReplayResultsCallable().call(request); for (ReplayResult element : response.getReplayResultsList()) { // doThingsWith(element); } String nextPageToken = response.getNextPageToken(); if (!Strings.isNullOrEmpty(nextPageToken)) { request = request.toBuilder().setPageToken(nextPageToken).build(); } else { break; } } }
-
close
public final void close()
- Specified by:
close
in interfaceAutoCloseable
-
shutdown
public void shutdown()
- Specified by:
shutdown
in interfacecom.google.api.gax.core.BackgroundResource
-
isShutdown
public boolean isShutdown()
- Specified by:
isShutdown
in interfacecom.google.api.gax.core.BackgroundResource
-
isTerminated
public boolean isTerminated()
- Specified by:
isTerminated
in interfacecom.google.api.gax.core.BackgroundResource
-
shutdownNow
public void shutdownNow()
- Specified by:
shutdownNow
in interfacecom.google.api.gax.core.BackgroundResource
-
awaitTermination
public boolean awaitTermination(long duration, TimeUnit unit) throws InterruptedException
- Specified by:
awaitTermination
in interfacecom.google.api.gax.core.BackgroundResource
- Throws:
InterruptedException
-
-