Class: Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1CreateInstructionMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1CreateInstructionMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datalabeling_v1beta1/classes.rb,
lib/google/apis/datalabeling_v1beta1/representations.rb,
lib/google/apis/datalabeling_v1beta1/representations.rb
Overview
Metadata of a CreateInstruction operation.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Timestamp when create instruction request was created.
-
#instruction ⇒ String
The name of the created Instruction.
-
#partial_failures ⇒ Array<Google::Apis::DatalabelingV1beta1::GoogleRpcStatus>
Partial failures encountered.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatalabelingV1alpha1CreateInstructionMetadata
constructor
A new instance of GoogleCloudDatalabelingV1alpha1CreateInstructionMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatalabelingV1alpha1CreateInstructionMetadata
Returns a new instance of GoogleCloudDatalabelingV1alpha1CreateInstructionMetadata.
46 47 48 |
# File 'lib/google/apis/datalabeling_v1beta1/classes.rb', line 46 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Timestamp when create instruction request was created.
Corresponds to the JSON property createTime
32 33 34 |
# File 'lib/google/apis/datalabeling_v1beta1/classes.rb', line 32 def create_time @create_time end |
#instruction ⇒ String
The name of the created Instruction. projects/project_id
/instructions/
instruction_id
Corresponds to the JSON property instruction
38 39 40 |
# File 'lib/google/apis/datalabeling_v1beta1/classes.rb', line 38 def instruction @instruction end |
#partial_failures ⇒ Array<Google::Apis::DatalabelingV1beta1::GoogleRpcStatus>
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
44 45 46 |
# File 'lib/google/apis/datalabeling_v1beta1/classes.rb', line 44 def partial_failures @partial_failures end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
51 52 53 54 55 |
# 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 |