com.clarifai.grpc.api.DataSourceURLOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/resources.proto
package com.clarifai.grpc.api;
public interface DataSourceURLOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.DataSourceURL)
com.google.protobuf.MessageOrBuilder {
/**
*
* Supported providers are AWS S3, Azure blob, GCP cloud storage.
*
*
* string url = 1;
* @return The url.
*/
java.lang.String getUrl();
/**
*
* Supported providers are AWS S3, Azure blob, GCP cloud storage.
*
*
* string url = 1;
* @return The bytes for url.
*/
com.google.protobuf.ByteString
getUrlBytes();
/**
*
* Credentials that would allow access to the provided url
*
*
* .clarifai.api.DataSourceCredentials credentials = 2;
* @return Whether the credentials field is set.
*/
boolean hasCredentials();
/**
*
* Credentials that would allow access to the provided url
*
*
* .clarifai.api.DataSourceCredentials credentials = 2;
* @return The credentials.
*/
com.clarifai.grpc.api.DataSourceCredentials getCredentials();
/**
*
* Credentials that would allow access to the provided url
*
*
* .clarifai.api.DataSourceCredentials credentials = 2;
*/
com.clarifai.grpc.api.DataSourceCredentialsOrBuilder getCredentialsOrBuilder();
}