class Google::Apis::JobsV3p1beta1::UpdateJobRequest
Input only. Update job request.
Attributes
job[RW]
update_mask[RW]
Optional but strongly recommended to be provided for the best service experience. If update_mask
is provided, only the specified fields in job are updated. Otherwise all the fields are updated. A field mask to restrict the fields that are updated. Only top level fields of Job
are supported. Corresponds to the JSON property `updateMask` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/jobs_v3p1beta1/classes.rb, line 2920 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_v3p1beta1/classes.rb, line 2925 def update!(**args) @job = args[:job] if args.key?(:job) @update_mask = args[:update_mask] if args.key?(:update_mask) end