All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clarifai.grpc.api.DatasetVersionOrBuilder Maven / Gradle / Ivy

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: proto/clarifai/api/resources.proto

package com.clarifai.grpc.api;

public interface DatasetVersionOrBuilder extends
    // @@protoc_insertion_point(interface_extends:clarifai.api.DatasetVersion)
    com.google.protobuf.MessageOrBuilder {

  /**
   * 
   * The ID for the dataset version
   * 
* * string id = 1; * @return The id. */ java.lang.String getId(); /** *
   * The ID for the dataset version
   * 
* * string id = 1; * @return The bytes for id. */ com.google.protobuf.ByteString getIdBytes(); /** *
   * When the dataset version was created.
   * The format is https://www.ietf.org/rfc/rfc3339.txt.
   * Example: "2006-01-02T15:04:05.999999Z".
   * 
* * .google.protobuf.Timestamp created_at = 2; * @return Whether the createdAt field is set. */ boolean hasCreatedAt(); /** *
   * When the dataset version was created.
   * The format is https://www.ietf.org/rfc/rfc3339.txt.
   * Example: "2006-01-02T15:04:05.999999Z".
   * 
* * .google.protobuf.Timestamp created_at = 2; * @return The createdAt. */ com.google.protobuf.Timestamp getCreatedAt(); /** *
   * When the dataset version was created.
   * The format is https://www.ietf.org/rfc/rfc3339.txt.
   * Example: "2006-01-02T15:04:05.999999Z".
   * 
* * .google.protobuf.Timestamp created_at = 2; */ com.google.protobuf.TimestampOrBuilder getCreatedAtOrBuilder(); /** *
   * When the dataset version was modified.
   * The format is https://www.ietf.org/rfc/rfc3339.txt.
   * Example: "2006-01-02T15:04:05.999999Z".
   * 
* * .google.protobuf.Timestamp modified_at = 3; * @return Whether the modifiedAt field is set. */ boolean hasModifiedAt(); /** *
   * When the dataset version was modified.
   * The format is https://www.ietf.org/rfc/rfc3339.txt.
   * Example: "2006-01-02T15:04:05.999999Z".
   * 
* * .google.protobuf.Timestamp modified_at = 3; * @return The modifiedAt. */ com.google.protobuf.Timestamp getModifiedAt(); /** *
   * When the dataset version was modified.
   * The format is https://www.ietf.org/rfc/rfc3339.txt.
   * Example: "2006-01-02T15:04:05.999999Z".
   * 
* * .google.protobuf.Timestamp modified_at = 3; */ com.google.protobuf.TimestampOrBuilder getModifiedAtOrBuilder(); /** *
   * The app the dataset version belongs to.
   * 
* * string app_id = 4; * @return The appId. */ java.lang.String getAppId(); /** *
   * The app the dataset version belongs to.
   * 
* * string app_id = 4; * @return The bytes for appId. */ com.google.protobuf.ByteString getAppIdBytes(); /** *
   * The user the dataset version belongs to.
   * 
* * string user_id = 5; * @return The userId. */ java.lang.String getUserId(); /** *
   * The user the dataset version belongs to.
   * 
* * string user_id = 5; * @return The bytes for userId. */ com.google.protobuf.ByteString getUserIdBytes(); /** *
   * The dataset the dataset version belongs to.
   * 
* * string dataset_id = 6; * @return The datasetId. */ java.lang.String getDatasetId(); /** *
   * The dataset the dataset version belongs to.
   * 
* * string dataset_id = 6; * @return The bytes for datasetId. */ com.google.protobuf.ByteString getDatasetIdBytes(); /** *
   * The dataset version will be generated based on a single dataset filter.
   * 
* * .clarifai.api.DatasetVersionDatasetFilterConfig dataset_filter_config = 7; * @return Whether the datasetFilterConfig field is set. */ boolean hasDatasetFilterConfig(); /** *
   * The dataset version will be generated based on a single dataset filter.
   * 
* * .clarifai.api.DatasetVersionDatasetFilterConfig dataset_filter_config = 7; * @return The datasetFilterConfig. */ com.clarifai.grpc.api.DatasetVersionDatasetFilterConfig getDatasetFilterConfig(); /** *
   * The dataset version will be generated based on a single dataset filter.
   * 
* * .clarifai.api.DatasetVersionDatasetFilterConfig dataset_filter_config = 7; */ com.clarifai.grpc.api.DatasetVersionDatasetFilterConfigOrBuilder getDatasetFilterConfigOrBuilder(); /** *
   * Status for this dataset version.
   * 
* * .clarifai.api.status.Status status = 8; * @return Whether the status field is set. */ boolean hasStatus(); /** *
   * Status for this dataset version.
   * 
* * .clarifai.api.status.Status status = 8; * @return The status. */ com.clarifai.grpc.api.status.Status getStatus(); /** *
   * Status for this dataset version.
   * 
* * .clarifai.api.status.Status status = 8; */ com.clarifai.grpc.api.status.StatusOrBuilder getStatusOrBuilder(); /** *
   * Description of the dataset version
   * 
* * string description = 10; * @return The description. */ java.lang.String getDescription(); /** *
   * Description of the dataset version
   * 
* * string description = 10; * @return The bytes for description. */ com.google.protobuf.ByteString getDescriptionBytes(); /** *
   * Dataset version summary
   * 
* * .clarifai.api.DatasetVersionSummary summary = 11; * @return Whether the summary field is set. */ boolean hasSummary(); /** *
   * Dataset version summary
   * 
* * .clarifai.api.DatasetVersionSummary summary = 11; * @return The summary. */ com.clarifai.grpc.api.DatasetVersionSummary getSummary(); /** *
   * Dataset version summary
   * 
* * .clarifai.api.DatasetVersionSummary summary = 11; */ com.clarifai.grpc.api.DatasetVersionSummaryOrBuilder getSummaryOrBuilder(); /** *
   * To handle arbitrary json metadata you can use a struct field:
   * https://github.com/google/protobuf/blob/master/src/google/protobuf/struct.proto
   * 
* * .google.protobuf.Struct metadata = 12; * @return Whether the metadata field is set. */ boolean hasMetadata(); /** *
   * To handle arbitrary json metadata you can use a struct field:
   * https://github.com/google/protobuf/blob/master/src/google/protobuf/struct.proto
   * 
* * .google.protobuf.Struct metadata = 12; * @return The metadata. */ com.google.protobuf.Struct getMetadata(); /** *
   * To handle arbitrary json metadata you can use a struct field:
   * https://github.com/google/protobuf/blob/master/src/google/protobuf/struct.proto
   * 
* * .google.protobuf.Struct metadata = 12; */ com.google.protobuf.StructOrBuilder getMetadataOrBuilder(); /** *
   * The visibility field represents whether this message is privately/publicly visible.
   * To be visible to the public the App that contains it AND the User that contains the App must
   * also be publicly visible.
   * 
* * .clarifai.api.Visibility visibility = 13; * @return Whether the visibility field is set. */ boolean hasVisibility(); /** *
   * The visibility field represents whether this message is privately/publicly visible.
   * To be visible to the public the App that contains it AND the User that contains the App must
   * also be publicly visible.
   * 
* * .clarifai.api.Visibility visibility = 13; * @return The visibility. */ com.clarifai.grpc.api.Visibility getVisibility(); /** *
   * The visibility field represents whether this message is privately/publicly visible.
   * To be visible to the public the App that contains it AND the User that contains the App must
   * also be publicly visible.
   * 
* * .clarifai.api.Visibility visibility = 13; */ com.clarifai.grpc.api.VisibilityOrBuilder getVisibilityOrBuilder(); /** *
   * The embedding models to return embeddings for. If empty, no embeddings are returned.
   * 
* * repeated string embed_model_version_ids = 14; * @return A list containing the embedModelVersionIds. */ java.util.List getEmbedModelVersionIdsList(); /** *
   * The embedding models to return embeddings for. If empty, no embeddings are returned.
   * 
* * repeated string embed_model_version_ids = 14; * @return The count of embedModelVersionIds. */ int getEmbedModelVersionIdsCount(); /** *
   * The embedding models to return embeddings for. If empty, no embeddings are returned.
   * 
* * repeated string embed_model_version_ids = 14; * @param index The index of the element to return. * @return The embedModelVersionIds at the given index. */ java.lang.String getEmbedModelVersionIds(int index); /** *
   * The embedding models to return embeddings for. If empty, no embeddings are returned.
   * 
* * repeated string embed_model_version_ids = 14; * @param index The index of the value to return. * @return The bytes of the embedModelVersionIds at the given index. */ com.google.protobuf.ByteString getEmbedModelVersionIdsBytes(int index); public com.clarifai.grpc.api.DatasetVersion.DataConfigCase getDataConfigCase(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy