class Google::Apis::JobsV4::BatchDeleteJobsRequest
Request to delete a batch of jobs.
Attributes
names[RW]
The names of the jobs to delete. The format is “projects/`project_id`/tenants/` tenant_id`/jobs/`job_id`”. For example, “projects/foo/tenants/bar/jobs/baz”. A maximum of 200 jobs can be deleted in a batch. Corresponds to the JSON property `names` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/jobs_v4/classes.rb, line 114 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/jobs_v4/classes.rb, line 119 def update!(**args) @names = args[:names] if args.key?(:names) end