Interface UpsertExamplesRequestOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
UpsertExamplesRequest, UpsertExamplesRequest.Builder

@Generated public interface UpsertExamplesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Details

    • getExampleStore

      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:
      The exampleStore.
    • getExampleStoreBytes

      com.google.protobuf.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:
      The bytes for exampleStore.
    • getExamplesList

      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];
    • getExamples

      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];
    • getExamplesCount

      int getExamplesCount()
       Required. A list of examples to be created/updated.
       
      repeated .google.cloud.aiplatform.v1beta1.Example examples = 2 [(.google.api.field_behavior) = REQUIRED];
    • getExamplesOrBuilderList

      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];
    • getExamplesOrBuilder

      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];
    • getOverwrite

      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:
      The overwrite.