Class: Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1ExportDataOperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1alpha1ExportDataOperationMetadata
- 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) ⇒ GoogleCloudDatalabelingV1alpha1ExportDataOperationMetadata
constructor
A new instance of GoogleCloudDatalabelingV1alpha1ExportDataOperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatalabelingV1alpha1ExportDataOperationMetadata
Returns a new instance of GoogleCloudDatalabelingV1alpha1ExportDataOperationMetadata.
84 85 86 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 84 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
66 67 68 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 66 def annotated_dataset @annotated_dataset end |
#create_time ⇒ String
Output only. Timestamp when export dataset request was created.
Corresponds to the JSON property createTime
71 72 73 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 71 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
76 77 78 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 76 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
82 83 84 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 82 def partial_failures @partial_failures end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
89 90 91 92 93 94 |
# File 'generated/google/apis/datalabeling_v1beta1/classes.rb', line 89 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 |