ProjectsLocationsSchedules
class ProjectsLocationsSchedules extends Resource (View source)
The "schedules" collection of methods.
Typical usage is:
$aiplatformService = new Google\Service\Aiplatform(...);
$schedules = $aiplatformService->projects_locations_schedules;
Methods
Creates a Schedule. (schedules.create)
Deletes a Schedule. (schedules.delete)
Gets a Schedule. (schedules.get)
Lists Schedules in a Location. (schedules.listProjectsLocationsSchedules)
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. (schedules.patch)
Pauses a Schedule. Will mark Schedule.state to 'PAUSED'. If the schedule is paused, no new runs will be created. Already created runs will NOT be paused or canceled. (schedules.pause)
Resumes a paused Schedule to start scheduling new runs. Will mark 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. (schedules.resume)
Details
GoogleCloudAiplatformV1Schedule
create(string $parent, GoogleCloudAiplatformV1Schedule $postBody, array $optParams = [])
Creates a Schedule. (schedules.create)
GoogleLongrunningOperation
delete(string $name, array $optParams = [])
Deletes a Schedule. (schedules.delete)
GoogleCloudAiplatformV1Schedule
get(string $name, array $optParams = [])
Gets a Schedule. (schedules.get)
GoogleCloudAiplatformV1ListSchedulesResponse
listProjectsLocationsSchedules(string $parent, array $optParams = [])
Lists Schedules in a Location. (schedules.listProjectsLocationsSchedules)
GoogleCloudAiplatformV1Schedule
patch(string $name, GoogleCloudAiplatformV1Schedule $postBody, array $optParams = [])
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. (schedules.patch)
GoogleProtobufEmpty
pause(string $name, GoogleCloudAiplatformV1PauseScheduleRequest $postBody, array $optParams = [])
Pauses a Schedule. Will mark Schedule.state to 'PAUSED'. If the schedule is paused, no new runs will be created. Already created runs will NOT be paused or canceled. (schedules.pause)
GoogleProtobufEmpty
resume(string $name, GoogleCloudAiplatformV1ResumeScheduleRequest $postBody, array $optParams = [])
Resumes a paused Schedule to start scheduling new runs. Will mark 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. (schedules.resume)