Class: Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1CreateInstructionMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/datalabeling_v1beta1/classes.rb,
generated/google/apis/datalabeling_v1beta1/representations.rb,
generated/google/apis/datalabeling_v1beta1/representations.rb

Overview

Metadata of a CreateInstruction operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatalabelingV1alpha1CreateInstructionMetadata

Returns a new instance of GoogleCloudDatalabelingV1alpha1CreateInstructionMetadata.



46
47
48
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 46

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#create_timeString

Timestamp when create instruction request was created. Corresponds to the JSON property createTime

Returns:

  • (String)


32
33
34
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 32

def create_time
  @create_time
end

#instructionString

The name of the created Instruction. projects/project_id/instructions/ instruction_id Corresponds to the JSON property instruction

Returns:

  • (String)


38
39
40
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 38

def instruction
  @instruction
end

#partial_failuresArray<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 'generated/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 'generated/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