-
Notifications
You must be signed in to change notification settings - Fork 463
Expand file tree
/
Copy pathSchedule.php
More file actions
956 lines (869 loc) · 35.1 KB
/
Copy pathSchedule.php
File metadata and controls
956 lines (869 loc) · 35.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/cloud/aiplatform/v1/schedule.proto
namespace Google\Cloud\AIPlatform\V1;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* An instance of a Schedule periodically schedules runs to make API calls based
* on user specified time specification and API request type.
*
* Generated from protobuf message <code>google.cloud.aiplatform.v1.Schedule</code>
*/
class Schedule extends \Google\Protobuf\Internal\Message
{
/**
* Immutable. The resource name of the Schedule.
*
* Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = IMMUTABLE];</code>
*/
protected $name = '';
/**
* Required. User provided name of the Schedule.
* The name can be up to 128 characters long and can consist of any UTF-8
* characters.
*
* Generated from protobuf field <code>string display_name = 2 [(.google.api.field_behavior) = REQUIRED];</code>
*/
protected $display_name = '';
/**
* Optional. Timestamp after which the first run can be scheduled.
* Default to Schedule create time if not specified.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp start_time = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
*/
protected $start_time = null;
/**
* Optional. Timestamp after which no new runs can be scheduled.
* If specified, The schedule will be completed when either
* end_time is reached or when scheduled_run_count >= max_run_count.
* If not specified, new runs will keep getting scheduled until this Schedule
* is paused or deleted. Already scheduled runs will be allowed to complete.
* Unset if not specified.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp end_time = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
*/
protected $end_time = null;
/**
* Optional. Maximum run count of the schedule.
* If specified, The schedule will be completed when either
* started_run_count >= max_run_count or when end_time is reached.
* If not specified, new runs will keep getting scheduled until this Schedule
* is paused or deleted. Already scheduled runs will be allowed to complete.
* Unset if not specified.
*
* Generated from protobuf field <code>int64 max_run_count = 16 [(.google.api.field_behavior) = OPTIONAL];</code>
*/
protected $max_run_count = 0;
/**
* Output only. The number of runs started by this schedule.
*
* Generated from protobuf field <code>int64 started_run_count = 17 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $started_run_count = 0;
/**
* Output only. The state of this Schedule.
*
* Generated from protobuf field <code>.google.cloud.aiplatform.v1.Schedule.State state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $state = 0;
/**
* Output only. Timestamp when this Schedule was created.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp create_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $create_time = null;
/**
* Output only. Timestamp when this Schedule was updated.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp update_time = 19 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $update_time = null;
/**
* Output only. Timestamp when this Schedule should schedule the next run.
* Having a next_run_time in the past means the runs are being started
* behind schedule.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp next_run_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $next_run_time = null;
/**
* Output only. Timestamp when this Schedule was last paused.
* Unset if never paused.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp last_pause_time = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $last_pause_time = null;
/**
* Output only. Timestamp when this Schedule was last resumed.
* Unset if never resumed from pause.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp last_resume_time = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $last_resume_time = null;
/**
* Required. Maximum number of runs that can be started concurrently for this
* Schedule. This is the limit for starting the scheduled requests and not the
* execution of the operations/jobs created by the requests (if applicable).
*
* Generated from protobuf field <code>int64 max_concurrent_run_count = 11 [(.google.api.field_behavior) = REQUIRED];</code>
*/
protected $max_concurrent_run_count = 0;
/**
* Optional. Specifies the maximum number of active runs that can be executed
* concurrently for this Schedule. This limits the number of runs that can be
* in a non-terminal state at the same time.
* Currently, this field is only supported for requests of type
* CreatePipelineJobRequest.
*
* Generated from protobuf field <code>int64 max_concurrent_active_run_count = 21 [(.google.api.field_behavior) = OPTIONAL];</code>
*/
protected $max_concurrent_active_run_count = 0;
/**
* Optional. Whether new scheduled runs can be queued when max_concurrent_runs
* limit is reached. If set to true, new runs will be queued instead of
* skipped. Default to false.
*
* Generated from protobuf field <code>bool allow_queueing = 12 [(.google.api.field_behavior) = OPTIONAL];</code>
*/
protected $allow_queueing = false;
/**
* Output only. 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. Default to false.
*
* Generated from protobuf field <code>bool catch_up = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $catch_up = false;
/**
* Output only. Response of the last scheduled run.
* This is the response for starting the scheduled requests and not the
* execution of the operations/jobs created by the requests (if applicable).
* Unset if no run has been scheduled yet.
*
* Generated from protobuf field <code>.google.cloud.aiplatform.v1.Schedule.RunResponse last_scheduled_run_response = 18 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $last_scheduled_run_response = null;
protected $time_specification;
protected $request;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $cron
* Cron schedule (https://en.wikipedia.org/wiki/Cron) to launch scheduled
* runs. To explicitly set a timezone to the cron tab, apply a prefix in the
* cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or "TZ=${IANA_TIME_ZONE}".
* The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone
* database. For example, "CRON_TZ=America/New_York 1 * * * *", or
* "TZ=America/New_York 1 * * * *".
* @type \Google\Cloud\AIPlatform\V1\CreatePipelineJobRequest $create_pipeline_job_request
* Request for
* [PipelineService.CreatePipelineJob][google.cloud.aiplatform.v1.PipelineService.CreatePipelineJob].
* CreatePipelineJobRequest.parent field is required (format:
* projects/{project}/locations/{location}).
* @type \Google\Cloud\AIPlatform\V1\CreateNotebookExecutionJobRequest $create_notebook_execution_job_request
* Request for
* [NotebookService.CreateNotebookExecutionJob][google.cloud.aiplatform.v1.NotebookService.CreateNotebookExecutionJob].
* @type string $name
* Immutable. The resource name of the Schedule.
* @type string $display_name
* Required. User provided name of the Schedule.
* The name can be up to 128 characters long and can consist of any UTF-8
* characters.
* @type \Google\Protobuf\Timestamp $start_time
* Optional. Timestamp after which the first run can be scheduled.
* Default to Schedule create time if not specified.
* @type \Google\Protobuf\Timestamp $end_time
* Optional. Timestamp after which no new runs can be scheduled.
* If specified, The schedule will be completed when either
* end_time is reached or when scheduled_run_count >= max_run_count.
* If not specified, new runs will keep getting scheduled until this Schedule
* is paused or deleted. Already scheduled runs will be allowed to complete.
* Unset if not specified.
* @type int|string $max_run_count
* Optional. Maximum run count of the schedule.
* If specified, The schedule will be completed when either
* started_run_count >= max_run_count or when end_time is reached.
* If not specified, new runs will keep getting scheduled until this Schedule
* is paused or deleted. Already scheduled runs will be allowed to complete.
* Unset if not specified.
* @type int|string $started_run_count
* Output only. The number of runs started by this schedule.
* @type int $state
* Output only. The state of this Schedule.
* @type \Google\Protobuf\Timestamp $create_time
* Output only. Timestamp when this Schedule was created.
* @type \Google\Protobuf\Timestamp $update_time
* Output only. Timestamp when this Schedule was updated.
* @type \Google\Protobuf\Timestamp $next_run_time
* Output only. Timestamp when this Schedule should schedule the next run.
* Having a next_run_time in the past means the runs are being started
* behind schedule.
* @type \Google\Protobuf\Timestamp $last_pause_time
* Output only. Timestamp when this Schedule was last paused.
* Unset if never paused.
* @type \Google\Protobuf\Timestamp $last_resume_time
* Output only. Timestamp when this Schedule was last resumed.
* Unset if never resumed from pause.
* @type int|string $max_concurrent_run_count
* Required. Maximum number of runs that can be started concurrently for this
* Schedule. This is the limit for starting the scheduled requests and not the
* execution of the operations/jobs created by the requests (if applicable).
* @type int|string $max_concurrent_active_run_count
* Optional. Specifies the maximum number of active runs that can be executed
* concurrently for this Schedule. This limits the number of runs that can be
* in a non-terminal state at the same time.
* Currently, this field is only supported for requests of type
* CreatePipelineJobRequest.
* @type bool $allow_queueing
* Optional. Whether new scheduled runs can be queued when max_concurrent_runs
* limit is reached. If set to true, new runs will be queued instead of
* skipped. Default to false.
* @type bool $catch_up
* Output only. 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. Default to false.
* @type \Google\Cloud\AIPlatform\V1\Schedule\RunResponse $last_scheduled_run_response
* Output only. Response of the last scheduled run.
* This is the response for starting the scheduled requests and not the
* execution of the operations/jobs created by the requests (if applicable).
* Unset if no run has been scheduled yet.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Cloud\Aiplatform\V1\Schedule::initOnce();
parent::__construct($data);
}
/**
* Cron schedule (https://en.wikipedia.org/wiki/Cron) to launch scheduled
* runs. To explicitly set a timezone to the cron tab, apply a prefix in the
* cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or "TZ=${IANA_TIME_ZONE}".
* The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone
* database. For example, "CRON_TZ=America/New_York 1 * * * *", or
* "TZ=America/New_York 1 * * * *".
*
* Generated from protobuf field <code>string cron = 10;</code>
* @return string
*/
public function getCron()
{
return $this->readOneof(10);
}
public function hasCron()
{
return $this->hasOneof(10);
}
/**
* Cron schedule (https://en.wikipedia.org/wiki/Cron) to launch scheduled
* runs. To explicitly set a timezone to the cron tab, apply a prefix in the
* cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or "TZ=${IANA_TIME_ZONE}".
* The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone
* database. For example, "CRON_TZ=America/New_York 1 * * * *", or
* "TZ=America/New_York 1 * * * *".
*
* Generated from protobuf field <code>string cron = 10;</code>
* @param string $var
* @return $this
*/
public function setCron($var)
{
GPBUtil::checkString($var, True);
$this->writeOneof(10, $var);
return $this;
}
/**
* Request for
* [PipelineService.CreatePipelineJob][google.cloud.aiplatform.v1.PipelineService.CreatePipelineJob].
* CreatePipelineJobRequest.parent field is required (format:
* projects/{project}/locations/{location}).
*
* Generated from protobuf field <code>.google.cloud.aiplatform.v1.CreatePipelineJobRequest create_pipeline_job_request = 14;</code>
* @return \Google\Cloud\AIPlatform\V1\CreatePipelineJobRequest|null
*/
public function getCreatePipelineJobRequest()
{
return $this->readOneof(14);
}
public function hasCreatePipelineJobRequest()
{
return $this->hasOneof(14);
}
/**
* Request for
* [PipelineService.CreatePipelineJob][google.cloud.aiplatform.v1.PipelineService.CreatePipelineJob].
* CreatePipelineJobRequest.parent field is required (format:
* projects/{project}/locations/{location}).
*
* Generated from protobuf field <code>.google.cloud.aiplatform.v1.CreatePipelineJobRequest create_pipeline_job_request = 14;</code>
* @param \Google\Cloud\AIPlatform\V1\CreatePipelineJobRequest $var
* @return $this
*/
public function setCreatePipelineJobRequest($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\AIPlatform\V1\CreatePipelineJobRequest::class);
$this->writeOneof(14, $var);
return $this;
}
/**
* Request for
* [NotebookService.CreateNotebookExecutionJob][google.cloud.aiplatform.v1.NotebookService.CreateNotebookExecutionJob].
*
* Generated from protobuf field <code>.google.cloud.aiplatform.v1.CreateNotebookExecutionJobRequest create_notebook_execution_job_request = 20;</code>
* @return \Google\Cloud\AIPlatform\V1\CreateNotebookExecutionJobRequest|null
*/
public function getCreateNotebookExecutionJobRequest()
{
return $this->readOneof(20);
}
public function hasCreateNotebookExecutionJobRequest()
{
return $this->hasOneof(20);
}
/**
* Request for
* [NotebookService.CreateNotebookExecutionJob][google.cloud.aiplatform.v1.NotebookService.CreateNotebookExecutionJob].
*
* Generated from protobuf field <code>.google.cloud.aiplatform.v1.CreateNotebookExecutionJobRequest create_notebook_execution_job_request = 20;</code>
* @param \Google\Cloud\AIPlatform\V1\CreateNotebookExecutionJobRequest $var
* @return $this
*/
public function setCreateNotebookExecutionJobRequest($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\AIPlatform\V1\CreateNotebookExecutionJobRequest::class);
$this->writeOneof(20, $var);
return $this;
}
/**
* Immutable. The resource name of the Schedule.
*
* Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = IMMUTABLE];</code>
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Immutable. The resource name of the Schedule.
*
* Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = IMMUTABLE];</code>
* @param string $var
* @return $this
*/
public function setName($var)
{
GPBUtil::checkString($var, True);
$this->name = $var;
return $this;
}
/**
* Required. User provided name of the Schedule.
* The name can be up to 128 characters long and can consist of any UTF-8
* characters.
*
* Generated from protobuf field <code>string display_name = 2 [(.google.api.field_behavior) = REQUIRED];</code>
* @return string
*/
public function getDisplayName()
{
return $this->display_name;
}
/**
* Required. User provided name of the Schedule.
* The name can be up to 128 characters long and can consist of any UTF-8
* characters.
*
* Generated from protobuf field <code>string display_name = 2 [(.google.api.field_behavior) = REQUIRED];</code>
* @param string $var
* @return $this
*/
public function setDisplayName($var)
{
GPBUtil::checkString($var, True);
$this->display_name = $var;
return $this;
}
/**
* Optional. Timestamp after which the first run can be scheduled.
* Default to Schedule create time if not specified.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp start_time = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
* @return \Google\Protobuf\Timestamp|null
*/
public function getStartTime()
{
return $this->start_time;
}
public function hasStartTime()
{
return isset($this->start_time);
}
public function clearStartTime()
{
unset($this->start_time);
}
/**
* Optional. Timestamp after which the first run can be scheduled.
* Default to Schedule create time if not specified.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp start_time = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
* @param \Google\Protobuf\Timestamp $var
* @return $this
*/
public function setStartTime($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Timestamp::class);
$this->start_time = $var;
return $this;
}
/**
* Optional. Timestamp after which no new runs can be scheduled.
* If specified, The schedule will be completed when either
* end_time is reached or when scheduled_run_count >= max_run_count.
* If not specified, new runs will keep getting scheduled until this Schedule
* is paused or deleted. Already scheduled runs will be allowed to complete.
* Unset if not specified.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp end_time = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
* @return \Google\Protobuf\Timestamp|null
*/
public function getEndTime()
{
return $this->end_time;
}
public function hasEndTime()
{
return isset($this->end_time);
}
public function clearEndTime()
{
unset($this->end_time);
}
/**
* Optional. Timestamp after which no new runs can be scheduled.
* If specified, The schedule will be completed when either
* end_time is reached or when scheduled_run_count >= max_run_count.
* If not specified, new runs will keep getting scheduled until this Schedule
* is paused or deleted. Already scheduled runs will be allowed to complete.
* Unset if not specified.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp end_time = 4 [(.google.api.field_behavior) = OPTIONAL];</code>
* @param \Google\Protobuf\Timestamp $var
* @return $this
*/
public function setEndTime($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Timestamp::class);
$this->end_time = $var;
return $this;
}
/**
* Optional. Maximum run count of the schedule.
* If specified, The schedule will be completed when either
* started_run_count >= max_run_count or when end_time is reached.
* If not specified, new runs will keep getting scheduled until this Schedule
* is paused or deleted. Already scheduled runs will be allowed to complete.
* Unset if not specified.
*
* Generated from protobuf field <code>int64 max_run_count = 16 [(.google.api.field_behavior) = OPTIONAL];</code>
* @return int|string
*/
public function getMaxRunCount()
{
return $this->max_run_count;
}
/**
* Optional. Maximum run count of the schedule.
* If specified, The schedule will be completed when either
* started_run_count >= max_run_count or when end_time is reached.
* If not specified, new runs will keep getting scheduled until this Schedule
* is paused or deleted. Already scheduled runs will be allowed to complete.
* Unset if not specified.
*
* Generated from protobuf field <code>int64 max_run_count = 16 [(.google.api.field_behavior) = OPTIONAL];</code>
* @param int|string $var
* @return $this
*/
public function setMaxRunCount($var)
{
GPBUtil::checkInt64($var);
$this->max_run_count = $var;
return $this;
}
/**
* Output only. The number of runs started by this schedule.
*
* Generated from protobuf field <code>int64 started_run_count = 17 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return int|string
*/
public function getStartedRunCount()
{
return $this->started_run_count;
}
/**
* Output only. The number of runs started by this schedule.
*
* Generated from protobuf field <code>int64 started_run_count = 17 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param int|string $var
* @return $this
*/
public function setStartedRunCount($var)
{
GPBUtil::checkInt64($var);
$this->started_run_count = $var;
return $this;
}
/**
* Output only. The state of this Schedule.
*
* Generated from protobuf field <code>.google.cloud.aiplatform.v1.Schedule.State state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return int
*/
public function getState()
{
return $this->state;
}
/**
* Output only. The state of this Schedule.
*
* Generated from protobuf field <code>.google.cloud.aiplatform.v1.Schedule.State state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param int $var
* @return $this
*/
public function setState($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\AIPlatform\V1\Schedule\State::class);
$this->state = $var;
return $this;
}
/**
* Output only. Timestamp when this Schedule was created.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp create_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return \Google\Protobuf\Timestamp|null
*/
public function getCreateTime()
{
return $this->create_time;
}
public function hasCreateTime()
{
return isset($this->create_time);
}
public function clearCreateTime()
{
unset($this->create_time);
}
/**
* Output only. Timestamp when this Schedule was created.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp create_time = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param \Google\Protobuf\Timestamp $var
* @return $this
*/
public function setCreateTime($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Timestamp::class);
$this->create_time = $var;
return $this;
}
/**
* Output only. Timestamp when this Schedule was updated.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp update_time = 19 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return \Google\Protobuf\Timestamp|null
*/
public function getUpdateTime()
{
return $this->update_time;
}
public function hasUpdateTime()
{
return isset($this->update_time);
}
public function clearUpdateTime()
{
unset($this->update_time);
}
/**
* Output only. Timestamp when this Schedule was updated.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp update_time = 19 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param \Google\Protobuf\Timestamp $var
* @return $this
*/
public function setUpdateTime($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Timestamp::class);
$this->update_time = $var;
return $this;
}
/**
* Output only. Timestamp when this Schedule should schedule the next run.
* Having a next_run_time in the past means the runs are being started
* behind schedule.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp next_run_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return \Google\Protobuf\Timestamp|null
*/
public function getNextRunTime()
{
return $this->next_run_time;
}
public function hasNextRunTime()
{
return isset($this->next_run_time);
}
public function clearNextRunTime()
{
unset($this->next_run_time);
}
/**
* Output only. Timestamp when this Schedule should schedule the next run.
* Having a next_run_time in the past means the runs are being started
* behind schedule.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp next_run_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param \Google\Protobuf\Timestamp $var
* @return $this
*/
public function setNextRunTime($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Timestamp::class);
$this->next_run_time = $var;
return $this;
}
/**
* Output only. Timestamp when this Schedule was last paused.
* Unset if never paused.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp last_pause_time = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return \Google\Protobuf\Timestamp|null
*/
public function getLastPauseTime()
{
return $this->last_pause_time;
}
public function hasLastPauseTime()
{
return isset($this->last_pause_time);
}
public function clearLastPauseTime()
{
unset($this->last_pause_time);
}
/**
* Output only. Timestamp when this Schedule was last paused.
* Unset if never paused.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp last_pause_time = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param \Google\Protobuf\Timestamp $var
* @return $this
*/
public function setLastPauseTime($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Timestamp::class);
$this->last_pause_time = $var;
return $this;
}
/**
* Output only. Timestamp when this Schedule was last resumed.
* Unset if never resumed from pause.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp last_resume_time = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return \Google\Protobuf\Timestamp|null
*/
public function getLastResumeTime()
{
return $this->last_resume_time;
}
public function hasLastResumeTime()
{
return isset($this->last_resume_time);
}
public function clearLastResumeTime()
{
unset($this->last_resume_time);
}
/**
* Output only. Timestamp when this Schedule was last resumed.
* Unset if never resumed from pause.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp last_resume_time = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param \Google\Protobuf\Timestamp $var
* @return $this
*/
public function setLastResumeTime($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Timestamp::class);
$this->last_resume_time = $var;
return $this;
}
/**
* Required. Maximum number of runs that can be started concurrently for this
* Schedule. This is the limit for starting the scheduled requests and not the
* execution of the operations/jobs created by the requests (if applicable).
*
* Generated from protobuf field <code>int64 max_concurrent_run_count = 11 [(.google.api.field_behavior) = REQUIRED];</code>
* @return int|string
*/
public function getMaxConcurrentRunCount()
{
return $this->max_concurrent_run_count;
}
/**
* Required. Maximum number of runs that can be started concurrently for this
* Schedule. This is the limit for starting the scheduled requests and not the
* execution of the operations/jobs created by the requests (if applicable).
*
* Generated from protobuf field <code>int64 max_concurrent_run_count = 11 [(.google.api.field_behavior) = REQUIRED];</code>
* @param int|string $var
* @return $this
*/
public function setMaxConcurrentRunCount($var)
{
GPBUtil::checkInt64($var);
$this->max_concurrent_run_count = $var;
return $this;
}
/**
* Optional. Specifies the maximum number of active runs that can be executed
* concurrently for this Schedule. This limits the number of runs that can be
* in a non-terminal state at the same time.
* Currently, this field is only supported for requests of type
* CreatePipelineJobRequest.
*
* Generated from protobuf field <code>int64 max_concurrent_active_run_count = 21 [(.google.api.field_behavior) = OPTIONAL];</code>
* @return int|string
*/
public function getMaxConcurrentActiveRunCount()
{
return $this->max_concurrent_active_run_count;
}
/**
* Optional. Specifies the maximum number of active runs that can be executed
* concurrently for this Schedule. This limits the number of runs that can be
* in a non-terminal state at the same time.
* Currently, this field is only supported for requests of type
* CreatePipelineJobRequest.
*
* Generated from protobuf field <code>int64 max_concurrent_active_run_count = 21 [(.google.api.field_behavior) = OPTIONAL];</code>
* @param int|string $var
* @return $this
*/
public function setMaxConcurrentActiveRunCount($var)
{
GPBUtil::checkInt64($var);
$this->max_concurrent_active_run_count = $var;
return $this;
}
/**
* Optional. Whether new scheduled runs can be queued when max_concurrent_runs
* limit is reached. If set to true, new runs will be queued instead of
* skipped. Default to false.
*
* Generated from protobuf field <code>bool allow_queueing = 12 [(.google.api.field_behavior) = OPTIONAL];</code>
* @return bool
*/
public function getAllowQueueing()
{
return $this->allow_queueing;
}
/**
* Optional. Whether new scheduled runs can be queued when max_concurrent_runs
* limit is reached. If set to true, new runs will be queued instead of
* skipped. Default to false.
*
* Generated from protobuf field <code>bool allow_queueing = 12 [(.google.api.field_behavior) = OPTIONAL];</code>
* @param bool $var
* @return $this
*/
public function setAllowQueueing($var)
{
GPBUtil::checkBool($var);
$this->allow_queueing = $var;
return $this;
}
/**
* Output only. 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. Default to false.
*
* Generated from protobuf field <code>bool catch_up = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return bool
*/
public function getCatchUp()
{
return $this->catch_up;
}
/**
* Output only. 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. Default to false.
*
* Generated from protobuf field <code>bool catch_up = 13 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param bool $var
* @return $this
*/
public function setCatchUp($var)
{
GPBUtil::checkBool($var);
$this->catch_up = $var;
return $this;
}
/**
* Output only. Response of the last scheduled run.
* This is the response for starting the scheduled requests and not the
* execution of the operations/jobs created by the requests (if applicable).
* Unset if no run has been scheduled yet.
*
* Generated from protobuf field <code>.google.cloud.aiplatform.v1.Schedule.RunResponse last_scheduled_run_response = 18 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return \Google\Cloud\AIPlatform\V1\Schedule\RunResponse|null
*/
public function getLastScheduledRunResponse()
{
return $this->last_scheduled_run_response;
}
public function hasLastScheduledRunResponse()
{
return isset($this->last_scheduled_run_response);
}
public function clearLastScheduledRunResponse()
{
unset($this->last_scheduled_run_response);
}
/**
* Output only. Response of the last scheduled run.
* This is the response for starting the scheduled requests and not the
* execution of the operations/jobs created by the requests (if applicable).
* Unset if no run has been scheduled yet.
*
* Generated from protobuf field <code>.google.cloud.aiplatform.v1.Schedule.RunResponse last_scheduled_run_response = 18 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param \Google\Cloud\AIPlatform\V1\Schedule\RunResponse $var
* @return $this
*/
public function setLastScheduledRunResponse($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\AIPlatform\V1\Schedule\RunResponse::class);
$this->last_scheduled_run_response = $var;
return $this;
}
/**
* @return string
*/
public function getTimeSpecification()
{
return $this->whichOneof("time_specification");
}
/**
* @return string
*/
public function getRequest()
{
return $this->whichOneof("request");
}
}