Class: Google::Cloud::AutoML::V1beta1::ExportDataOperationMetadata
- Inherits:
-
Object
- Object
- Google::Cloud::AutoML::V1beta1::ExportDataOperationMetadata
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/automl/v1beta1/operations.rb
Overview
Details of ExportData operation.
Defined Under Namespace
Classes: ExportDataOutputInfo
Instance Attribute Summary collapse
-
#output_info ⇒ ::Google::Cloud::AutoML::V1beta1::ExportDataOperationMetadata::ExportDataOutputInfo
Output only.
Instance Attribute Details
#output_info ⇒ ::Google::Cloud::AutoML::V1beta1::ExportDataOperationMetadata::ExportDataOutputInfo
Returns Output only. Information further describing this export data's output.
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
# File 'proto_docs/google/cloud/automl/v1beta1/operations.rb', line 125 class ExportDataOperationMetadata include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Further describes this export data's output. # Supplements # {::Google::Cloud::AutoML::V1beta1::OutputConfig OutputConfig}. # @!attribute [rw] gcs_output_directory # @return [::String] # The full path of the Google Cloud Storage directory created, into which # the exported data is written. # # Note: The following fields are mutually exclusive: `gcs_output_directory`, `bigquery_output_dataset`. If a field in that set is populated, all other fields in the set will automatically be cleared. # @!attribute [rw] bigquery_output_dataset # @return [::String] # The path of the BigQuery dataset created, in bq://projectId.bqDatasetId # format, into which the exported data is written. # # Note: The following fields are mutually exclusive: `bigquery_output_dataset`, `gcs_output_directory`. If a field in that set is populated, all other fields in the set will automatically be cleared. class ExportDataOutputInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |