class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1CreateInstructionMetadata
Metadata of a CreateInstruction operation.
Attributes
create_time[RW]
Timestamp when create instruction request was created. Corresponds to the JSON property `createTime` @return [String]
instruction[RW]
The name of the created Instruction. projects/`project_id`/instructions/` instruction_id` Corresponds to the JSON property `instruction` @return [String]
partial_failures[RW]
Partial failures encountered. E.g. single files that couldn't be read. Status details field will contain standard GCP error details. Corresponds to the JSON property `partialFailures` @return [Array<Google::Apis::DatalabelingV1beta1::GoogleRpcStatus>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 46 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 51 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @instruction = args[:instruction] if args.key?(:instruction) @partial_failures = args[:partial_failures] if args.key?(:partial_failures) end