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:



892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
# File 'proto_docs/google/cloud/ces/v1beta/evaluation_service.rb', line 892

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.



892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
# File 'proto_docs/google/cloud/ces/v1beta/evaluation_service.rb', line 892

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