google_cloud_scheduler_jobs resource

Syntax

A google_cloud_scheduler_jobs is used to test a Google Job resource

Examples

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

Properties that can be accessed from the google_cloud_scheduler_jobs resource:

See the google_cloud_scheduler_job resource for more information.

names
an array of google_cloud_scheduler_job name
descriptions
an array of google_cloud_scheduler_job description
schedules
an array of google_cloud_scheduler_job schedule
time_zones
an array of google_cloud_scheduler_job time_zone
attempt_deadlines
an array of google_cloud_scheduler_job attempt_deadline
retry_configs
an array of google_cloud_scheduler_job retry_config
pubsub_targets
an array of google_cloud_scheduler_job pubsub_target
app_engine_http_targets
an array of google_cloud_scheduler_job app_engine_http_target
http_targets
an array of google_cloud_scheduler_job http_target
regions
an array of google_cloud_scheduler_job region

Filter Criteria

This resource supports all of the above properties as filter criteria, which can be used with where as a block or a method.

GCP Permissions

© Chef Software, Inc.
Licensed under the Creative Commons Attribution 3.0 Unported License.
The Chef™ Mark and Chef Logo are either registered trademarks/service marks or trademarks/servicemarks of Chef, in the United States and other countries and are used with Chef Inc's permission.
We are not affiliated with, endorsed or sponsored by Chef Inc.
https://docs.chef.io/inspec/resources/google_cloud_scheduler_jobs/