Skip to content

Commit

Permalink
docs: Update scheduled pipelines client max_run_count docstring with …
Browse files Browse the repository at this point in the history
…allowed values.

PiperOrigin-RevId: 542617816
  • Loading branch information
vertex-sdk-bot authored and copybara-github committed Jun 22, 2023
1 parent 5bcf602 commit 750e161
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ def create_schedule(
max_run_count (int):
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.
Must be positive and <= 2^63-1.
max_concurrent_run_count (int):
Optional. Maximum number of runs that can be started concurrently for this PipelineJobSchedule.
service_account (str):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ def create(
max_run_count (int):
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.
Must be positive and <= 2^63-1.
max_concurrent_run_count (int):
Optional. Maximum number of runs that can be started concurrently for this PipelineJobSchedule.
service_account (str):
Expand Down Expand Up @@ -204,6 +205,7 @@ def _create(
max_run_count (int):
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.
Must be positive and <= 2^63-1.
max_concurrent_run_count (int):
Optional. Maximum number of runs that can be started concurrently for this PipelineJobSchedule.
service_account (str):
Expand Down Expand Up @@ -402,6 +404,7 @@ def update(
max_run_count (int):
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.
Must be positive and <= 2^63-1.
max_concurrent_run_count (int):
Optional. Maximum number of runs that can be started concurrently for this PipelineJobSchedule.
Expand Down

0 comments on commit 750e161

Please sign in to comment.