Interface ListHmacKeysRequestOrBuilder

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

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

    Modifier and Type
    Method
    Description
    int
    The maximum number of keys to return.
    A previously returned token from ListHmacKeysResponse to get the next page.
    com.google.protobuf.ByteString
    A previously returned token from ListHmacKeysResponse to get the next page.
    Required.
    com.google.protobuf.ByteString
    Required.
    If set, filters to only return HMAC keys for specified service account.
    com.google.protobuf.ByteString
    If set, filters to only return HMAC keys for specified service account.
    boolean
    If set, return deleted keys that have not yet been wiped out.

    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

    • getProject

      String getProject()
       Required. The project to list HMAC keys for, in the format of
       "projects/{projectIdentifier}".
       {projectIdentifier} can be the project ID or project number.
       
      string project = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
      Returns:
      The project.
    • getProjectBytes

      com.google.protobuf.ByteString getProjectBytes()
       Required. The project to list HMAC keys for, in the format of
       "projects/{projectIdentifier}".
       {projectIdentifier} can be the project ID or project number.
       
      string project = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
      Returns:
      The bytes for project.
    • getPageSize

      int getPageSize()
       The maximum number of keys to return.
       
      int32 page_size = 2;
      Returns:
      The pageSize.
    • getPageToken

      String getPageToken()
       A previously returned token from ListHmacKeysResponse to get the next page.
       
      string page_token = 3;
      Returns:
      The pageToken.
    • getPageTokenBytes

      com.google.protobuf.ByteString getPageTokenBytes()
       A previously returned token from ListHmacKeysResponse to get the next page.
       
      string page_token = 3;
      Returns:
      The bytes for pageToken.
    • getServiceAccountEmail

      String getServiceAccountEmail()
       If set, filters to only return HMAC keys for specified service account.
       
      string service_account_email = 4;
      Returns:
      The serviceAccountEmail.
    • getServiceAccountEmailBytes

      com.google.protobuf.ByteString getServiceAccountEmailBytes()
       If set, filters to only return HMAC keys for specified service account.
       
      string service_account_email = 4;
      Returns:
      The bytes for serviceAccountEmail.
    • getShowDeletedKeys

      boolean getShowDeletedKeys()
       If set, return deleted keys that have not yet been wiped out.
       
      bool show_deleted_keys = 5;
      Returns:
      The showDeletedKeys.