Class: Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1p1alpha1ExportDataOperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1p1alpha1ExportDataOperationMetadata
- 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 an ExportData operation.
Instance Attribute Summary collapse
-
#annotated_dataset ⇒ String
Output only.
-
#create_time ⇒ String
Output only.
-
#dataset ⇒ String
Output only.
-
#partial_failures ⇒ Array<Google::Apis::DatalabelingV1beta1::GoogleRpcStatus>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatalabelingV1p1alpha1ExportDataOperationMetadata
constructor
A new instance of GoogleCloudDatalabelingV1p1alpha1ExportDataOperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatalabelingV1p1alpha1ExportDataOperationMetadata
Returns a new instance of GoogleCloudDatalabelingV1p1alpha1ExportDataOperationMetadata.
4692 4693 4694 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 4692 def initialize(**args) update!(**args) end |
Instance Attribute Details
#annotated_dataset ⇒ String
Output only. The name of annotated dataset in format "projects//datasets//
annotatedDatasets/*".
Corresponds to the JSON property annotatedDataset
4674 4675 4676 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 4674 def annotated_dataset @annotated_dataset end |
#create_time ⇒ String
Output only. Timestamp when export dataset request was created.
Corresponds to the JSON property createTime
4679 4680 4681 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 4679 def create_time @create_time end |
#dataset ⇒ String
Output only. The name of dataset to be exported. "projects//datasets/"
Corresponds to the JSON property dataset
4684 4685 4686 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 4684 def dataset @dataset end |
#partial_failures ⇒ Array<Google::Apis::DatalabelingV1beta1::GoogleRpcStatus>
Output only. 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
4690 4691 4692 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 4690 def partial_failures @partial_failures end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4697 4698 4699 4700 4701 4702 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 4697 def update!(**args) @annotated_dataset = args[:annotated_dataset] if args.key?(:annotated_dataset) @create_time = args[:create_time] if args.key?(:create_time) @dataset = args[:dataset] if args.key?(:dataset) @partial_failures = args[:partial_failures] if args.key?(:partial_failures) end |