Interface AddPublicKeyRequestOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getEnvironment()
      Environment this key should be added to, e.g.
      com.google.protobuf.ByteString getEnvironmentBytes()
      Environment this key should be added to, e.g.
      String getKey()
      Key that should be added to the environment.
      com.google.protobuf.ByteString getKeyBytes()
      Key that should be added to the environment.
      • 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 Detail

      • getEnvironment

        String getEnvironment()
         Environment this key should be added to, e.g.
         `users/me/environments/default`.
         
        string environment = 1;
        Returns:
        The environment.
      • getEnvironmentBytes

        com.google.protobuf.ByteString getEnvironmentBytes()
         Environment this key should be added to, e.g.
         `users/me/environments/default`.
         
        string environment = 1;
        Returns:
        The bytes for environment.
      • getKey

        String getKey()
         Key that should be added to the environment. Supported formats are
         `ssh-dss` (see RFC4253), `ssh-rsa` (see RFC4253), `ecdsa-sha2-nistp256`
         (see RFC5656), `ecdsa-sha2-nistp384` (see RFC5656) and
         `ecdsa-sha2-nistp521` (see RFC5656). It should be structured as
         <format> <content>, where <content> part is encoded with
         Base64.
         
        string key = 2;
        Returns:
        The key.
      • getKeyBytes

        com.google.protobuf.ByteString getKeyBytes()
         Key that should be added to the environment. Supported formats are
         `ssh-dss` (see RFC4253), `ssh-rsa` (see RFC4253), `ecdsa-sha2-nistp256`
         (see RFC5656), `ecdsa-sha2-nistp384` (see RFC5656) and
         `ecdsa-sha2-nistp521` (see RFC5656). It should be structured as
         <format> <content>, where <content> part is encoded with
         Base64.
         
        string key = 2;
        Returns:
        The bytes for key.