title | platform |
---|---|
About the google_cloud_scheduler_jobs resource |
gcp |
A google_cloud_scheduler_jobs
is used to test a Google Job resource
google_cloud_scheduler_jobs(project: 'chef-gcp-inspec', region: ).names.each do |name|
describe google_cloud_scheduler_job(project: 'chef-gcp-inspec', region: us-central1, name: name) do
it { should exist }
its('description') { should cmp 'A description' }
its('schedule') { should cmp '*/8 * * * *' }
its('time_zone') { should cmp 'America/New_York' }
its('http_target.http_method') { should cmp 'POST' }
its('http_target.uri') { should cmp 'https://example.com/ping' }
end
end
Properties that can be accessed from the google_cloud_scheduler_jobs
resource:
See google_cloud_scheduler_job.md for more detailed information
names
: an array ofgoogle_cloud_scheduler_job
namedescriptions
: an array ofgoogle_cloud_scheduler_job
descriptionschedules
: an array ofgoogle_cloud_scheduler_job
scheduletime_zones
: an array ofgoogle_cloud_scheduler_job
time_zonestates
: an array ofgoogle_cloud_scheduler_job
stateattempt_deadlines
: an array ofgoogle_cloud_scheduler_job
attempt_deadlineretry_configs
: an array ofgoogle_cloud_scheduler_job
retry_configpubsub_targets
: an array ofgoogle_cloud_scheduler_job
pubsub_targetapp_engine_http_targets
: an array ofgoogle_cloud_scheduler_job
app_engine_http_targethttp_targets
: an array ofgoogle_cloud_scheduler_job
http_targetregions
: an array ofgoogle_cloud_scheduler_job
region
This resource supports all of the above properties as filter criteria, which can be used
with where
as a block or a method.
Ensure the Cloud Scheduler is enabled for the current project.