@BetaApi @Generated(value="by gapic-generator-java") public class ScheduleServiceClient extends Object implements com.google.api.gax.core.BackgroundResource
This class provides the ability to make remote calls to the backing service through method calls that map to API methods. Sample code to get started:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
Schedule schedule = Schedule.newBuilder().build();
Schedule response = scheduleServiceClient.createSchedule(parent, schedule);
}
Note: close() needs to be called on the ScheduleServiceClient 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 |
|---|---|---|
CreateSchedule |
Creates a Schedule. |
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.
|
DeleteSchedule |
Deletes a Schedule. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetSchedule |
Gets a Schedule. |
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.
|
ListSchedules |
Lists Schedules in a Location. |
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.
|
PauseSchedule |
Pauses a Schedule. Will mark [Schedule.state][google.cloud.aiplatform.v1beta1.Schedule.state] to 'PAUSED'. If the schedule is paused, no new runs will be created. Already created runs will NOT be paused or canceled. |
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.
|
ResumeSchedule |
Resumes a paused Schedule to start scheduling new runs. Will mark [Schedule.state][google.cloud.aiplatform.v1beta1.Schedule.state] to 'ACTIVE'. Only paused Schedule can be resumed. When the Schedule is resumed, new runs will be scheduled starting from the next execution time after the current time based on the time_specification in the Schedule. If [Schedule.catchUp][] is set up true, all missed runs will be scheduled for backfill first. |
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.
|
UpdateSchedule |
Updates an active or paused Schedule. When the Schedule is updated, new runs will be scheduled starting from the updated next execution time after the update time based on the time_specification in the updated Schedule. All unstarted runs before the update time will be skipped while already created runs will NOT be paused or canceled. |
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.
|
SetIamPolicy |
Sets the access control policy on the specified resource. Replacesany existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors. |
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.
|
GetIamPolicy |
Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set. |
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.
|
TestIamPermissions |
Returns permissions that a caller has on the specified resource. If theresource does not exist, this will return an empty set ofpermissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning. |
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 ScheduleServiceSettings 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
ScheduleServiceSettings scheduleServiceSettings =
ScheduleServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
ScheduleServiceClient scheduleServiceClient =
ScheduleServiceClient.create(scheduleServiceSettings);
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
ScheduleServiceSettings scheduleServiceSettings =
ScheduleServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
ScheduleServiceClient scheduleServiceClient =
ScheduleServiceClient.create(scheduleServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
| Modifier and Type | Class and Description |
|---|---|
static class |
ScheduleServiceClient.ListLocationsFixedSizeCollection |
static class |
ScheduleServiceClient.ListLocationsPage |
static class |
ScheduleServiceClient.ListLocationsPagedResponse |
static class |
ScheduleServiceClient.ListSchedulesFixedSizeCollection |
static class |
ScheduleServiceClient.ListSchedulesPage |
static class |
ScheduleServiceClient.ListSchedulesPagedResponse |
| Modifier | Constructor and Description |
|---|---|
protected |
ScheduleServiceClient(ScheduleServiceSettings settings)
Constructs an instance of ScheduleServiceClient, using the given settings.
|
protected |
ScheduleServiceClient(ScheduleServiceStub stub) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
awaitTermination(long duration,
TimeUnit unit) |
void |
close() |
static ScheduleServiceClient |
create()
Constructs an instance of ScheduleServiceClient with default settings.
|
static ScheduleServiceClient |
create(ScheduleServiceSettings settings)
Constructs an instance of ScheduleServiceClient, using the given settings.
|
static ScheduleServiceClient |
create(ScheduleServiceStub stub)
Constructs an instance of ScheduleServiceClient, using the given stub for making calls.
|
Schedule |
createSchedule(CreateScheduleRequest request)
Creates a Schedule.
|
Schedule |
createSchedule(LocationName parent,
Schedule schedule)
Creates a Schedule.
|
Schedule |
createSchedule(String parent,
Schedule schedule)
Creates a Schedule.
|
com.google.api.gax.rpc.UnaryCallable<CreateScheduleRequest,Schedule> |
createScheduleCallable()
Creates a Schedule.
|
com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,DeleteOperationMetadata> |
deleteScheduleAsync(DeleteScheduleRequest request)
Deletes a Schedule.
|
com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,DeleteOperationMetadata> |
deleteScheduleAsync(ScheduleName name)
Deletes a Schedule.
|
com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,DeleteOperationMetadata> |
deleteScheduleAsync(String name)
Deletes a Schedule.
|
com.google.api.gax.rpc.UnaryCallable<DeleteScheduleRequest,com.google.longrunning.Operation> |
deleteScheduleCallable()
Deletes a Schedule.
|
com.google.api.gax.rpc.OperationCallable<DeleteScheduleRequest,com.google.protobuf.Empty,DeleteOperationMetadata> |
deleteScheduleOperationCallable()
Deletes a Schedule.
|
com.google.iam.v1.Policy |
getIamPolicy(com.google.iam.v1.GetIamPolicyRequest request)
Gets the access control policy for a resource.
|
com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.GetIamPolicyRequest,com.google.iam.v1.Policy> |
getIamPolicyCallable()
Gets the access control policy for a resource.
|
com.google.cloud.location.Location |
getLocation(com.google.cloud.location.GetLocationRequest request)
Gets information about a location.
|
com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.GetLocationRequest,com.google.cloud.location.Location> |
getLocationCallable()
Gets information about a location.
|
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.
|
Schedule |
getSchedule(GetScheduleRequest request)
Gets a Schedule.
|
Schedule |
getSchedule(ScheduleName name)
Gets a Schedule.
|
Schedule |
getSchedule(String name)
Gets a Schedule.
|
com.google.api.gax.rpc.UnaryCallable<GetScheduleRequest,Schedule> |
getScheduleCallable()
Gets a Schedule.
|
ScheduleServiceSettings |
getSettings() |
ScheduleServiceStub |
getStub() |
boolean |
isShutdown() |
boolean |
isTerminated() |
ScheduleServiceClient.ListLocationsPagedResponse |
listLocations(com.google.cloud.location.ListLocationsRequest request)
Lists information about the supported locations for this service.
|
com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.ListLocationsRequest,com.google.cloud.location.ListLocationsResponse> |
listLocationsCallable()
Lists information about the supported locations for this service.
|
com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.ListLocationsRequest,ScheduleServiceClient.ListLocationsPagedResponse> |
listLocationsPagedCallable()
Lists information about the supported locations for this service.
|
ScheduleServiceClient.ListSchedulesPagedResponse |
listSchedules(ListSchedulesRequest request)
Lists Schedules in a Location.
|
ScheduleServiceClient.ListSchedulesPagedResponse |
listSchedules(LocationName parent)
Lists Schedules in a Location.
|
ScheduleServiceClient.ListSchedulesPagedResponse |
listSchedules(String parent)
Lists Schedules in a Location.
|
com.google.api.gax.rpc.UnaryCallable<ListSchedulesRequest,ListSchedulesResponse> |
listSchedulesCallable()
Lists Schedules in a Location.
|
com.google.api.gax.rpc.UnaryCallable<ListSchedulesRequest,ScheduleServiceClient.ListSchedulesPagedResponse> |
listSchedulesPagedCallable()
Lists Schedules in a Location.
|
void |
pauseSchedule(PauseScheduleRequest request)
Pauses a Schedule.
|
void |
pauseSchedule(ScheduleName name)
Pauses a Schedule.
|
void |
pauseSchedule(String name)
Pauses a Schedule.
|
com.google.api.gax.rpc.UnaryCallable<PauseScheduleRequest,com.google.protobuf.Empty> |
pauseScheduleCallable()
Pauses a Schedule.
|
void |
resumeSchedule(ResumeScheduleRequest request)
Resumes a paused Schedule to start scheduling new runs.
|
void |
resumeSchedule(ScheduleName name)
Resumes a paused Schedule to start scheduling new runs.
|
void |
resumeSchedule(ScheduleName name,
boolean catchUp)
Resumes a paused Schedule to start scheduling new runs.
|
void |
resumeSchedule(String name)
Resumes a paused Schedule to start scheduling new runs.
|
void |
resumeSchedule(String name,
boolean catchUp)
Resumes a paused Schedule to start scheduling new runs.
|
com.google.api.gax.rpc.UnaryCallable<ResumeScheduleRequest,com.google.protobuf.Empty> |
resumeScheduleCallable()
Resumes a paused Schedule to start scheduling new runs.
|
com.google.iam.v1.Policy |
setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request)
Sets the access control policy on the specified resource.
|
com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.SetIamPolicyRequest,com.google.iam.v1.Policy> |
setIamPolicyCallable()
Sets the access control policy on the specified resource.
|
void |
shutdown() |
void |
shutdownNow() |
com.google.iam.v1.TestIamPermissionsResponse |
testIamPermissions(com.google.iam.v1.TestIamPermissionsRequest request)
Returns permissions that a caller has on the specified resource.
|
com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.TestIamPermissionsRequest,com.google.iam.v1.TestIamPermissionsResponse> |
testIamPermissionsCallable()
Returns permissions that a caller has on the specified resource.
|
Schedule |
updateSchedule(Schedule schedule,
com.google.protobuf.FieldMask updateMask)
Updates an active or paused Schedule.
|
Schedule |
updateSchedule(UpdateScheduleRequest request)
Updates an active or paused Schedule.
|
com.google.api.gax.rpc.UnaryCallable<UpdateScheduleRequest,Schedule> |
updateScheduleCallable()
Updates an active or paused Schedule.
|
protected ScheduleServiceClient(ScheduleServiceSettings settings) throws IOException
IOExceptionprotected ScheduleServiceClient(ScheduleServiceStub stub)
public static final ScheduleServiceClient create() throws IOException
IOExceptionpublic static final ScheduleServiceClient create(ScheduleServiceSettings settings) throws IOException
IOExceptionpublic static final ScheduleServiceClient create(ScheduleServiceStub stub)
public final ScheduleServiceSettings getSettings()
public ScheduleServiceStub getStub()
public final com.google.longrunning.OperationsClient getOperationsClient()
public final Schedule createSchedule(LocationName parent, Schedule schedule)
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
Schedule schedule = Schedule.newBuilder().build();
Schedule response = scheduleServiceClient.createSchedule(parent, schedule);
}
parent - Required. The resource name of the Location to create the Schedule in. Format:
`projects/{project}/locations/{location}`schedule - Required. The Schedule to create.com.google.api.gax.rpc.ApiException - if the remote call failspublic final Schedule createSchedule(String parent, Schedule schedule)
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
Schedule schedule = Schedule.newBuilder().build();
Schedule response = scheduleServiceClient.createSchedule(parent, schedule);
}
parent - Required. The resource name of the Location to create the Schedule in. Format:
`projects/{project}/locations/{location}`schedule - Required. The Schedule to create.com.google.api.gax.rpc.ApiException - if the remote call failspublic final Schedule createSchedule(CreateScheduleRequest 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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
CreateScheduleRequest request =
CreateScheduleRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setSchedule(Schedule.newBuilder().build())
.build();
Schedule response = scheduleServiceClient.createSchedule(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<CreateScheduleRequest,Schedule> createScheduleCallable()
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
CreateScheduleRequest request =
CreateScheduleRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setSchedule(Schedule.newBuilder().build())
.build();
ApiFuture<Schedule> future =
scheduleServiceClient.createScheduleCallable().futureCall(request);
// Do something.
Schedule response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,DeleteOperationMetadata> deleteScheduleAsync(ScheduleName name)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
ScheduleName name = ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]");
scheduleServiceClient.deleteScheduleAsync(name).get();
}
name - Required. The name of the Schedule resource to be deleted. Format:
`projects/{project}/locations/{location}/schedules/{schedule}`com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,DeleteOperationMetadata> deleteScheduleAsync(String name)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
String name = ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString();
scheduleServiceClient.deleteScheduleAsync(name).get();
}
name - Required. The name of the Schedule resource to be deleted. Format:
`projects/{project}/locations/{location}/schedules/{schedule}`com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,DeleteOperationMetadata> deleteScheduleAsync(DeleteScheduleRequest 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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
DeleteScheduleRequest request =
DeleteScheduleRequest.newBuilder()
.setName(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
.build();
scheduleServiceClient.deleteScheduleAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<DeleteScheduleRequest,com.google.protobuf.Empty,DeleteOperationMetadata> deleteScheduleOperationCallable()
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
DeleteScheduleRequest request =
DeleteScheduleRequest.newBuilder()
.setName(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
.build();
OperationFuture<Empty, DeleteOperationMetadata> future =
scheduleServiceClient.deleteScheduleOperationCallable().futureCall(request);
// Do something.
future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<DeleteScheduleRequest,com.google.longrunning.Operation> deleteScheduleCallable()
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
DeleteScheduleRequest request =
DeleteScheduleRequest.newBuilder()
.setName(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
.build();
ApiFuture<Operation> future =
scheduleServiceClient.deleteScheduleCallable().futureCall(request);
// Do something.
future.get();
}
public final Schedule getSchedule(ScheduleName name)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
ScheduleName name = ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]");
Schedule response = scheduleServiceClient.getSchedule(name);
}
name - Required. The name of the Schedule resource. Format:
`projects/{project}/locations/{location}/schedules/{schedule}`com.google.api.gax.rpc.ApiException - if the remote call failspublic final Schedule getSchedule(String name)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
String name = ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString();
Schedule response = scheduleServiceClient.getSchedule(name);
}
name - Required. The name of the Schedule resource. Format:
`projects/{project}/locations/{location}/schedules/{schedule}`com.google.api.gax.rpc.ApiException - if the remote call failspublic final Schedule getSchedule(GetScheduleRequest 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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
GetScheduleRequest request =
GetScheduleRequest.newBuilder()
.setName(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
.build();
Schedule response = scheduleServiceClient.getSchedule(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<GetScheduleRequest,Schedule> getScheduleCallable()
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
GetScheduleRequest request =
GetScheduleRequest.newBuilder()
.setName(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
.build();
ApiFuture<Schedule> future = scheduleServiceClient.getScheduleCallable().futureCall(request);
// Do something.
Schedule response = future.get();
}
public final ScheduleServiceClient.ListSchedulesPagedResponse listSchedules(LocationName parent)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
for (Schedule element : scheduleServiceClient.listSchedules(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The resource name of the Location to list the Schedules from. Format:
`projects/{project}/locations/{location}`com.google.api.gax.rpc.ApiException - if the remote call failspublic final ScheduleServiceClient.ListSchedulesPagedResponse listSchedules(String parent)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
for (Schedule element : scheduleServiceClient.listSchedules(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The resource name of the Location to list the Schedules from. Format:
`projects/{project}/locations/{location}`com.google.api.gax.rpc.ApiException - if the remote call failspublic final ScheduleServiceClient.ListSchedulesPagedResponse listSchedules(ListSchedulesRequest 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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
ListSchedulesRequest request =
ListSchedulesRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setOrderBy("orderBy-1207110587")
.build();
for (Schedule element : scheduleServiceClient.listSchedules(request).iterateAll()) {
// doThingsWith(element);
}
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<ListSchedulesRequest,ScheduleServiceClient.ListSchedulesPagedResponse> listSchedulesPagedCallable()
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
ListSchedulesRequest request =
ListSchedulesRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setOrderBy("orderBy-1207110587")
.build();
ApiFuture<Schedule> future =
scheduleServiceClient.listSchedulesPagedCallable().futureCall(request);
// Do something.
for (Schedule element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<ListSchedulesRequest,ListSchedulesResponse> listSchedulesCallable()
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
ListSchedulesRequest request =
ListSchedulesRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setOrderBy("orderBy-1207110587")
.build();
while (true) {
ListSchedulesResponse response =
scheduleServiceClient.listSchedulesCallable().call(request);
for (Schedule element : response.getSchedulesList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final void pauseSchedule(ScheduleName name)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
ScheduleName name = ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]");
scheduleServiceClient.pauseSchedule(name);
}
name - Required. The name of the Schedule resource to be paused. Format:
`projects/{project}/locations/{location}/schedules/{schedule}`com.google.api.gax.rpc.ApiException - if the remote call failspublic final void pauseSchedule(String name)
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
String name = ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString();
scheduleServiceClient.pauseSchedule(name);
}
name - Required. The name of the Schedule resource to be paused. Format:
`projects/{project}/locations/{location}/schedules/{schedule}`com.google.api.gax.rpc.ApiException - if the remote call failspublic final void pauseSchedule(PauseScheduleRequest 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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
PauseScheduleRequest request =
PauseScheduleRequest.newBuilder()
.setName(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
.build();
scheduleServiceClient.pauseSchedule(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<PauseScheduleRequest,com.google.protobuf.Empty> pauseScheduleCallable()
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
PauseScheduleRequest request =
PauseScheduleRequest.newBuilder()
.setName(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
.build();
ApiFuture<Empty> future = scheduleServiceClient.pauseScheduleCallable().futureCall(request);
// Do something.
future.get();
}
public final void resumeSchedule(ScheduleName name)
When the Schedule is resumed, new runs will be scheduled starting from the next execution time after the current time based on the time_specification in the Schedule. If [Schedule.catchUp][] is set up true, all missed runs will be scheduled for backfill first.
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
ScheduleName name = ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]");
scheduleServiceClient.resumeSchedule(name);
}
name - Required. The name of the Schedule resource to be resumed. Format:
`projects/{project}/locations/{location}/schedules/{schedule}`com.google.api.gax.rpc.ApiException - if the remote call failspublic final void resumeSchedule(String name)
When the Schedule is resumed, new runs will be scheduled starting from the next execution time after the current time based on the time_specification in the Schedule. If [Schedule.catchUp][] is set up true, all missed runs will be scheduled for backfill first.
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
String name = ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString();
scheduleServiceClient.resumeSchedule(name);
}
name - Required. The name of the Schedule resource to be resumed. Format:
`projects/{project}/locations/{location}/schedules/{schedule}`com.google.api.gax.rpc.ApiException - if the remote call failspublic final void resumeSchedule(ScheduleName name, boolean catchUp)
When the Schedule is resumed, new runs will be scheduled starting from the next execution time after the current time based on the time_specification in the Schedule. If [Schedule.catchUp][] is set up true, all missed runs will be scheduled for backfill first.
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
ScheduleName name = ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]");
boolean catchUp = true;
scheduleServiceClient.resumeSchedule(name, catchUp);
}
name - Required. The name of the Schedule resource to be resumed. Format:
`projects/{project}/locations/{location}/schedules/{schedule}`catchUp - Optional. Whether to backfill missed runs when the schedule is resumed from
PAUSED state. If set to true, all missed runs will be scheduled. New runs will be scheduled
after the backfill is complete. This will also update
[Schedule.catch_up][google.cloud.aiplatform.v1beta1.Schedule.catch_up] field. Default to
false.com.google.api.gax.rpc.ApiException - if the remote call failspublic final void resumeSchedule(String name, boolean catchUp)
When the Schedule is resumed, new runs will be scheduled starting from the next execution time after the current time based on the time_specification in the Schedule. If [Schedule.catchUp][] is set up true, all missed runs will be scheduled for backfill first.
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
String name = ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString();
boolean catchUp = true;
scheduleServiceClient.resumeSchedule(name, catchUp);
}
name - Required. The name of the Schedule resource to be resumed. Format:
`projects/{project}/locations/{location}/schedules/{schedule}`catchUp - Optional. Whether to backfill missed runs when the schedule is resumed from
PAUSED state. If set to true, all missed runs will be scheduled. New runs will be scheduled
after the backfill is complete. This will also update
[Schedule.catch_up][google.cloud.aiplatform.v1beta1.Schedule.catch_up] field. Default to
false.com.google.api.gax.rpc.ApiException - if the remote call failspublic final void resumeSchedule(ResumeScheduleRequest request)
When the Schedule is resumed, new runs will be scheduled starting from the next execution time after the current time based on the time_specification in the Schedule. If [Schedule.catchUp][] is set up true, all missed runs will be scheduled for backfill first.
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
ResumeScheduleRequest request =
ResumeScheduleRequest.newBuilder()
.setName(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
.setCatchUp(true)
.build();
scheduleServiceClient.resumeSchedule(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<ResumeScheduleRequest,com.google.protobuf.Empty> resumeScheduleCallable()
When the Schedule is resumed, new runs will be scheduled starting from the next execution time after the current time based on the time_specification in the Schedule. If [Schedule.catchUp][] is set up true, all missed runs will be scheduled for backfill first.
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
ResumeScheduleRequest request =
ResumeScheduleRequest.newBuilder()
.setName(ScheduleName.of("[PROJECT]", "[LOCATION]", "[SCHEDULE]").toString())
.setCatchUp(true)
.build();
ApiFuture<Empty> future = scheduleServiceClient.resumeScheduleCallable().futureCall(request);
// Do something.
future.get();
}
public final Schedule updateSchedule(Schedule schedule, com.google.protobuf.FieldMask updateMask)
When the Schedule is updated, new runs will be scheduled starting from the updated next execution time after the update time based on the time_specification in the updated Schedule. All unstarted runs before the update time will be skipped while already created runs will NOT be paused or canceled.
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
Schedule schedule = Schedule.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
Schedule response = scheduleServiceClient.updateSchedule(schedule, updateMask);
}
schedule - Required. The Schedule which replaces the resource on the server. The following
restrictions will be applied:
* The scheduled request type cannot be changed. * The non-empty fields cannot be unset. * The output_only fields will be ignored if specified.
updateMask - Required. The update mask applies to the resource. See
[google.protobuf.FieldMask][google.protobuf.FieldMask].com.google.api.gax.rpc.ApiException - if the remote call failspublic final Schedule updateSchedule(UpdateScheduleRequest request)
When the Schedule is updated, new runs will be scheduled starting from the updated next execution time after the update time based on the time_specification in the updated Schedule. All unstarted runs before the update time will be skipped while already created runs will NOT be paused or canceled.
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
UpdateScheduleRequest request =
UpdateScheduleRequest.newBuilder()
.setSchedule(Schedule.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Schedule response = scheduleServiceClient.updateSchedule(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<UpdateScheduleRequest,Schedule> updateScheduleCallable()
When the Schedule is updated, new runs will be scheduled starting from the updated next execution time after the update time based on the time_specification in the updated Schedule. All unstarted runs before the update time will be skipped while already created runs will NOT be paused or canceled.
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
UpdateScheduleRequest request =
UpdateScheduleRequest.newBuilder()
.setSchedule(Schedule.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Schedule> future =
scheduleServiceClient.updateScheduleCallable().futureCall(request);
// Do something.
Schedule response = future.get();
}
public final ScheduleServiceClient.ListLocationsPagedResponse listLocations(com.google.cloud.location.ListLocationsRequest 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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Location element : scheduleServiceClient.listLocations(request).iterateAll()) {
// doThingsWith(element);
}
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.ListLocationsRequest,ScheduleServiceClient.ListLocationsPagedResponse> listLocationsPagedCallable()
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Location> future =
scheduleServiceClient.listLocationsPagedCallable().futureCall(request);
// Do something.
for (Location element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.ListLocationsRequest,com.google.cloud.location.ListLocationsResponse> listLocationsCallable()
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListLocationsResponse response =
scheduleServiceClient.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;
}
}
}
public final com.google.cloud.location.Location getLocation(com.google.cloud.location.GetLocationRequest 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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
Location response = scheduleServiceClient.getLocation(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.GetLocationRequest,com.google.cloud.location.Location> getLocationCallable()
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
ApiFuture<Location> future = scheduleServiceClient.getLocationCallable().futureCall(request);
// Do something.
Location response = future.get();
}
public final com.google.iam.v1.Policy setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request)
Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors.
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
SetIamPolicyRequest request =
SetIamPolicyRequest.newBuilder()
.setResource(
EndpointName.ofProjectLocationEndpointName(
"[PROJECT]", "[LOCATION]", "[ENDPOINT]")
.toString())
.setPolicy(Policy.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Policy response = scheduleServiceClient.setIamPolicy(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.SetIamPolicyRequest,com.google.iam.v1.Policy> setIamPolicyCallable()
Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors.
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
SetIamPolicyRequest request =
SetIamPolicyRequest.newBuilder()
.setResource(
EndpointName.ofProjectLocationEndpointName(
"[PROJECT]", "[LOCATION]", "[ENDPOINT]")
.toString())
.setPolicy(Policy.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Policy> future = scheduleServiceClient.setIamPolicyCallable().futureCall(request);
// Do something.
Policy response = future.get();
}
public final com.google.iam.v1.Policy getIamPolicy(com.google.iam.v1.GetIamPolicyRequest 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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
GetIamPolicyRequest request =
GetIamPolicyRequest.newBuilder()
.setResource(
EndpointName.ofProjectLocationEndpointName(
"[PROJECT]", "[LOCATION]", "[ENDPOINT]")
.toString())
.setOptions(GetPolicyOptions.newBuilder().build())
.build();
Policy response = scheduleServiceClient.getIamPolicy(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.GetIamPolicyRequest,com.google.iam.v1.Policy> getIamPolicyCallable()
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
GetIamPolicyRequest request =
GetIamPolicyRequest.newBuilder()
.setResource(
EndpointName.ofProjectLocationEndpointName(
"[PROJECT]", "[LOCATION]", "[ENDPOINT]")
.toString())
.setOptions(GetPolicyOptions.newBuilder().build())
.build();
ApiFuture<Policy> future = scheduleServiceClient.getIamPolicyCallable().futureCall(request);
// Do something.
Policy response = future.get();
}
public final com.google.iam.v1.TestIamPermissionsResponse testIamPermissions(com.google.iam.v1.TestIamPermissionsRequest request)
Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning.
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
TestIamPermissionsRequest request =
TestIamPermissionsRequest.newBuilder()
.setResource(
EndpointName.ofProjectLocationEndpointName(
"[PROJECT]", "[LOCATION]", "[ENDPOINT]")
.toString())
.addAllPermissions(new ArrayList<String>())
.build();
TestIamPermissionsResponse response = scheduleServiceClient.testIamPermissions(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.TestIamPermissionsRequest,com.google.iam.v1.TestIamPermissionsResponse> testIamPermissionsCallable()
Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning.
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 (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
TestIamPermissionsRequest request =
TestIamPermissionsRequest.newBuilder()
.setResource(
EndpointName.ofProjectLocationEndpointName(
"[PROJECT]", "[LOCATION]", "[ENDPOINT]")
.toString())
.addAllPermissions(new ArrayList<String>())
.build();
ApiFuture<TestIamPermissionsResponse> future =
scheduleServiceClient.testIamPermissionsCallable().futureCall(request);
// Do something.
TestIamPermissionsResponse response = future.get();
}
public final void close()
close in interface AutoCloseablepublic void shutdown()
shutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isShutdown()
isShutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isTerminated()
isTerminated in interface com.google.api.gax.core.BackgroundResourcepublic void shutdownNow()
shutdownNow in interface com.google.api.gax.core.BackgroundResourcepublic boolean awaitTermination(long duration,
TimeUnit unit)
throws InterruptedException
awaitTermination in interface com.google.api.gax.core.BackgroundResourceInterruptedExceptionCopyright © 2024 Google LLC. All rights reserved.