Complete the code to specify the frequency of the Cloud Scheduler job using a cron expression.
schedule: '[1]'
The schedule field requires a valid cron expression string. The correct cron expression for every 5 minutes is '*/5 * * * *'.
Complete the code to specify the timezone for the Cloud Scheduler job.
timeZone: '[1]'
The timeZone field expects an IANA timezone name like 'America/New_York' for correct scheduling.
Fix the error in the Cloud Scheduler job definition by completing the missing field for the HTTP target URL.
httpTarget: uri: '[1]' httpMethod: 'POST'
The URI must be a valid HTTPS URL starting with 'https://'. Using 'http://' or missing the scheme causes errors.
Fill both blanks to define a Cloud Scheduler job with a Pub/Sub target and set the message body.
pubsubTarget: topicName: '[1]' data: '[2]'
The topicName must be the full resource path. The data must be base64 encoded string.
Fill all three blanks to configure a Cloud Scheduler job with an App Engine HTTP target, setting the service, version, and relative URI.
appEngineHttpTarget: service: '[1]' version: '[2]' relativeUri: '[3]'
The service is usually 'default' unless you have multiple services. Version is the deployed version like 'v1'. The relativeUri is the path to the handler.