Class: Google::Cloud::Ces::V1beta::ExportOptions

Inherits:
Object
  • Object
show all
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

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.

Returns:



914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
# File 'proto_docs/google/cloud/ces/v1beta/evaluation_service.rb', line 914

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.

Returns:

  • (::String)

    Optional. The Google Cloud Storage URI to write the exported Evaluation Results to.



914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
# File 'proto_docs/google/cloud/ces/v1beta/evaluation_service.rb', line 914

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