Interface UpsertExamplesRequestOrBuilder (3.64.0)

public interface UpsertExamplesRequestOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getExampleStore()

public abstract String getExampleStore()

Required. The name of the ExampleStore resource that examples are added to or updated in. Format: projects/{project}/locations/{location}/exampleStores/{example_store}

string example_store = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }

Returns
Type Description
String

The exampleStore.

getExampleStoreBytes()

public abstract ByteString getExampleStoreBytes()

Required. The name of the ExampleStore resource that examples are added to or updated in. Format: projects/{project}/locations/{location}/exampleStores/{example_store}

string example_store = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }

Returns
Type Description
ByteString

The bytes for exampleStore.

getExamples(int index)

public abstract Example getExamples(int index)

Required. A list of examples to be created/updated.

repeated .google.cloud.aiplatform.v1beta1.Example examples = 2 [(.google.api.field_behavior) = REQUIRED];

Parameter
Name Description
index int
Returns
Type Description
Example

getExamplesCount()

public abstract int getExamplesCount()

Required. A list of examples to be created/updated.

repeated .google.cloud.aiplatform.v1beta1.Example examples = 2 [(.google.api.field_behavior) = REQUIRED];

Returns
Type Description
int

getExamplesList()

public abstract List<Example> getExamplesList()

Required. A list of examples to be created/updated.

repeated .google.cloud.aiplatform.v1beta1.Example examples = 2 [(.google.api.field_behavior) = REQUIRED];

Returns
Type Description
List<Example>

getExamplesOrBuilder(int index)

public abstract ExampleOrBuilder getExamplesOrBuilder(int index)

Required. A list of examples to be created/updated.

repeated .google.cloud.aiplatform.v1beta1.Example examples = 2 [(.google.api.field_behavior) = REQUIRED];

Parameter
Name Description
index int
Returns
Type Description
ExampleOrBuilder

getExamplesOrBuilderList()

public abstract List<? extends ExampleOrBuilder> getExamplesOrBuilderList()

Required. A list of examples to be created/updated.

repeated .google.cloud.aiplatform.v1beta1.Example examples = 2 [(.google.api.field_behavior) = REQUIRED];

Returns
Type Description
List<? extends com.google.cloud.aiplatform.v1beta1.ExampleOrBuilder>

getOverwrite()

public abstract boolean getOverwrite()

Optional. A flag indicating whether an example can be overwritten if it already exists. If False (default) and the example already exists, the example will not be updated. This does not affect behavior if the example does not exist already.

bool overwrite = 4 [(.google.api.field_behavior) = OPTIONAL];

Returns
Type Description
boolean

The overwrite.