Interface PurgeExecutionsRequestOrBuilder

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

@Generated public interface PurgeExecutionsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    Required.
    com.google.protobuf.ByteString
    Required.
    boolean
    Optional.
    Required.
    com.google.protobuf.ByteString
    Required.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getParent

      String getParent()
       Required. The metadata store to purge Executions from.
       Format:
       `projects/{project}/locations/{location}/metadataStores/{metadatastore}`
       
      string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
      Returns:
      The parent.
    • getParentBytes

      com.google.protobuf.ByteString getParentBytes()
       Required. The metadata store to purge Executions from.
       Format:
       `projects/{project}/locations/{location}/metadataStores/{metadatastore}`
       
      string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
      Returns:
      The bytes for parent.
    • getFilter

      String getFilter()
       Required. A required filter matching the Executions to be purged.
       E.g., `update_time <= 2020-11-19T11:30:00-04:00`.
       
      string filter = 2 [(.google.api.field_behavior) = REQUIRED];
      Returns:
      The filter.
    • getFilterBytes

      com.google.protobuf.ByteString getFilterBytes()
       Required. A required filter matching the Executions to be purged.
       E.g., `update_time <= 2020-11-19T11:30:00-04:00`.
       
      string filter = 2 [(.google.api.field_behavior) = REQUIRED];
      Returns:
      The bytes for filter.
    • getForce

      boolean getForce()
       Optional. Flag to indicate to actually perform the purge.
       If `force` is set to false, the method will return a sample of
       Execution names that would be deleted.
       
      bool force = 3 [(.google.api.field_behavior) = OPTIONAL];
      Returns:
      The force.