2

クラウド機能をトリガーするために毎日午前 10 時に実行される cron ジョブを作成したいと考えています。ただし、Python API に問題があります。ジョブを作成すると、このエラーが表示されます。

TypeError: MergeFrom() へのパラメーターは、同じクラスのインスタンスである必要があります: 予想される google.cloud.scheduler.v1.HttpTarget は str を取得しました。

これが私のコードです:

from google.cloud import scheduler_v1

project_id = XXXX
client = scheduler_v1.CloudSchedulerClient.from_service_account_json(
    r"./xxxx.json")

parent= client.location_path(project_id,'us-central1')
job={"name":"traing_for_model",
     "description":"this is for testing training model",
     "http_target":"https://us-central1-xxxx-test.cloudfunctions.net/automl-trainmodel-1-test-for-cron-job",
     "schedule":"1 0 * * *",
     "time_zone":"utc+8",
     }
training_job= client.create_job(parent,job)
4

2 に答える 2

6

Assuming utc+8 is Australia/Perth and job that will run every day at 10am is 0 10 * * * then the function should be:

from google.cloud import scheduler_v1

project_id = XXXX
client = scheduler_v1.CloudSchedulerClient.from_service_account_json(
    r"./xxxx.json")

parent= client.location_path(project_id,'us-central1')

job={"name":"projects/your-project/locations/app-engine-location/jobs/traing_for_model",
     "description":"this is for testing training model",
     "http_target": {"uri":"https://us-central1-gerald-automl-test.cloudfunctions.net/automl-trainmodel-1-test-for-cron-job"},
     "schedule":"0 10 * * *",
     "time_zone":"Australia/Perth",
     }

training_job= client.create_job(parent,job)
于 2020-03-14T22:25:50.347 に答える