共用方式為


RecurrencePattern 類別

作業排程的週期模式。

繼承
azure.ai.ml.entities._mixins.RestTranslatableMixin
RecurrencePattern

建構函式

RecurrencePattern(*, hours: int | List[int], minutes: int | List[int], week_days: str | List[str] | None = None, month_days: int | List[int] | None = None)

僅限關鍵字的參數

名稱 Description
hours

週期排程模式的時數。

minutes

週期排程模式的分鐘數。

week_days

週期排程模式的一周天數清單。 可接受的值包括:「monday」、「monday」、「monday」、「monday」、「friday」、「saturday」、「sunday」

month_days

週期排程模式月份的天數清單。

範例

設定 JobSchedule 以使用 RecurrencePattern。


   from azure.ai.ml import load_job
   from azure.ai.ml.entities import JobSchedule, RecurrencePattern, RecurrenceTrigger

   pipeline_job = load_job("./sdk/ml/azure-ai-ml/tests/test_configs/command_job/command_job_test_local_env.yml")
   trigger = RecurrenceTrigger(
       frequency="week",
       interval=4,
       schedule=RecurrencePattern(hours=10, minutes=15, week_days=["Monday", "Tuesday"]),
       start_time="2023-03-10",
   )
   job_schedule = JobSchedule(name="simple_sdk_create_schedule", trigger=trigger, create_job=pipeline_job)