Class: Google::Cloud::Ces::V1beta::ExportOptions
- Inherits:
-
Object
- Object
- Google::Cloud::Ces::V1beta::ExportOptions
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/ces/v1beta/evaluation_service.rb
Overview
Options for exporting CES evaluation resources.
Defined Under Namespace
Modules: ExportFormat
Instance Attribute Summary collapse
-
#export_format ⇒ ::Google::Cloud::Ces::V1beta::ExportOptions::ExportFormat
Optional.
-
#gcs_uri ⇒ ::String
Optional.
Instance Attribute Details
#export_format ⇒ ::Google::Cloud::Ces::V1beta::ExportOptions::ExportFormat
Returns Optional. The format to export the evaluation results in. Defaults to JSON if not specified.
930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation_service.rb', line 930 class ExportOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The format to export the items in. Defaults to JSON if not # specified. module ExportFormat # Unspecified format. EXPORT_FORMAT_UNSPECIFIED = 0 # JSON format. JSON = 1 # YAML format. YAML = 2 end end |
#gcs_uri ⇒ ::String
Returns Optional. The Google Cloud Storage URI to write the exported Evaluation Results to.
930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 |
# File 'proto_docs/google/cloud/ces/v1beta/evaluation_service.rb', line 930 class ExportOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The format to export the items in. Defaults to JSON if not # specified. module ExportFormat # Unspecified format. EXPORT_FORMAT_UNSPECIFIED = 0 # JSON format. JSON = 1 # YAML format. YAML = 2 end end |