Interface ScanConfig.Authentication.CustomAccountOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ScanConfig.Authentication.CustomAccount
,ScanConfig.Authentication.CustomAccount.Builder
- Enclosing class:
- ScanConfig.Authentication
public static interface ScanConfig.Authentication.CustomAccountOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getLoginUrl()
Required.com.google.protobuf.ByteString
getLoginUrlBytes()
Required.String
getPassword()
Required.com.google.protobuf.ByteString
getPasswordBytes()
Required.String
getUsername()
Required.com.google.protobuf.ByteString
getUsernameBytes()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getUsername
String getUsername()
Required. The user name of the custom account.
string username = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The username.
-
getUsernameBytes
com.google.protobuf.ByteString getUsernameBytes()
Required. The user name of the custom account.
string username = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for username.
-
getPassword
String getPassword()
Required. Input only. The password of the custom account. The credential is stored encrypted and not returned in any response nor included in audit logs.
string password = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.field_behavior) = INPUT_ONLY];
- Returns:
- The password.
-
getPasswordBytes
com.google.protobuf.ByteString getPasswordBytes()
Required. Input only. The password of the custom account. The credential is stored encrypted and not returned in any response nor included in audit logs.
string password = 2 [(.google.api.field_behavior) = REQUIRED, (.google.api.field_behavior) = INPUT_ONLY];
- Returns:
- The bytes for password.
-
getLoginUrl
String getLoginUrl()
Required. The login form URL of the website.
string login_url = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The loginUrl.
-
getLoginUrlBytes
com.google.protobuf.ByteString getLoginUrlBytes()
Required. The login form URL of the website.
string login_url = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for loginUrl.
-
-