Package com.google.cloud.oslogin.v1
Interface ImportSshPublicKeyResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ImportSshPublicKeyResponse
,ImportSshPublicKeyResponse.Builder
public interface ImportSshPublicKeyResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDetails()
Detailed information about import results.com.google.protobuf.ByteString
getDetailsBytes()
Detailed information about import results.LoginProfile
getLoginProfile()
The login profile information for the user.LoginProfileOrBuilder
getLoginProfileOrBuilder()
The login profile information for the user.boolean
hasLoginProfile()
The login profile information for the user.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasLoginProfile
boolean hasLoginProfile()
The login profile information for the user.
.google.cloud.oslogin.v1.LoginProfile login_profile = 1;
- Returns:
- Whether the loginProfile field is set.
-
getLoginProfile
LoginProfile getLoginProfile()
The login profile information for the user.
.google.cloud.oslogin.v1.LoginProfile login_profile = 1;
- Returns:
- The loginProfile.
-
getLoginProfileOrBuilder
LoginProfileOrBuilder getLoginProfileOrBuilder()
The login profile information for the user.
.google.cloud.oslogin.v1.LoginProfile login_profile = 1;
-
getDetails
String getDetails()
Detailed information about import results.
string details = 2;
- Returns:
- The details.
-
getDetailsBytes
com.google.protobuf.ByteString getDetailsBytes()
Detailed information about import results.
string details = 2;
- Returns:
- The bytes for details.
-
-