Interface ListSSHKeysResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListSSHKeysResponse
,ListSSHKeysResponse.Builder
public interface ListSSHKeysResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.com.google.protobuf.ByteString
getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.SSHKey
getSshKeys(int index)
The SSH keys registered in the project.int
getSshKeysCount()
The SSH keys registered in the project.List<SSHKey>
getSshKeysList()
The SSH keys registered in the project.SSHKeyOrBuilder
getSshKeysOrBuilder(int index)
The SSH keys registered in the project.List<? extends SSHKeyOrBuilder>
getSshKeysOrBuilderList()
The SSH keys registered in the project.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSshKeysList
List<SSHKey> getSshKeysList()
The SSH keys registered in the project.
repeated .google.cloud.baremetalsolution.v2.SSHKey ssh_keys = 1;
-
getSshKeys
SSHKey getSshKeys(int index)
The SSH keys registered in the project.
repeated .google.cloud.baremetalsolution.v2.SSHKey ssh_keys = 1;
-
getSshKeysCount
int getSshKeysCount()
The SSH keys registered in the project.
repeated .google.cloud.baremetalsolution.v2.SSHKey ssh_keys = 1;
-
getSshKeysOrBuilderList
List<? extends SSHKeyOrBuilder> getSshKeysOrBuilderList()
The SSH keys registered in the project.
repeated .google.cloud.baremetalsolution.v2.SSHKey ssh_keys = 1;
-
getSshKeysOrBuilder
SSHKeyOrBuilder getSshKeysOrBuilder(int index)
The SSH keys registered in the project.
repeated .google.cloud.baremetalsolution.v2.SSHKey ssh_keys = 1;
-
getNextPageToken
String getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 90;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 90;
- Returns:
- The bytes for nextPageToken.
-
-