Interface CreateAppProfileRequestOrBuilder

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

public interface CreateAppProfileRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    Required.
    Required.
    com.google.protobuf.ByteString
    Required.
    Required.
    boolean
    If true, ignore safety checks when creating the app profile.
    Required.
    com.google.protobuf.ByteString
    Required.
    boolean
    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 unique name of the instance in which to create the new app
       profile. Values are of the form `projects/{project}/instances/{instance}`.
       
      string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
      Returns:
      The parent.
    • getParentBytes

      com.google.protobuf.ByteString getParentBytes()
       Required. The unique name of the instance in which to create the new app
       profile. Values are of the form `projects/{project}/instances/{instance}`.
       
      string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
      Returns:
      The bytes for parent.
    • getAppProfileId

      String getAppProfileId()
       Required. The ID to be used when referring to the new app profile within
       its instance, e.g., just `myprofile` rather than
       `projects/myproject/instances/myinstance/appProfiles/myprofile`.
       
      string app_profile_id = 2 [(.google.api.field_behavior) = REQUIRED];
      Returns:
      The appProfileId.
    • getAppProfileIdBytes

      com.google.protobuf.ByteString getAppProfileIdBytes()
       Required. The ID to be used when referring to the new app profile within
       its instance, e.g., just `myprofile` rather than
       `projects/myproject/instances/myinstance/appProfiles/myprofile`.
       
      string app_profile_id = 2 [(.google.api.field_behavior) = REQUIRED];
      Returns:
      The bytes for appProfileId.
    • hasAppProfile

      boolean hasAppProfile()
       Required. The app profile to be created.
       Fields marked `OutputOnly` will be ignored.
       
      .google.bigtable.admin.v2.AppProfile app_profile = 3 [(.google.api.field_behavior) = REQUIRED];
      Returns:
      Whether the appProfile field is set.
    • getAppProfile

      AppProfile getAppProfile()
       Required. The app profile to be created.
       Fields marked `OutputOnly` will be ignored.
       
      .google.bigtable.admin.v2.AppProfile app_profile = 3 [(.google.api.field_behavior) = REQUIRED];
      Returns:
      The appProfile.
    • getAppProfileOrBuilder

      AppProfileOrBuilder getAppProfileOrBuilder()
       Required. The app profile to be created.
       Fields marked `OutputOnly` will be ignored.
       
      .google.bigtable.admin.v2.AppProfile app_profile = 3 [(.google.api.field_behavior) = REQUIRED];
    • getIgnoreWarnings

      boolean getIgnoreWarnings()
       If true, ignore safety checks when creating the app profile.
       
      bool ignore_warnings = 4;
      Returns:
      The ignoreWarnings.