Interface ScanConfig.AuthenticationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ScanConfig.Authentication
,ScanConfig.Authentication.Builder
- Enclosing class:
- ScanConfig
public static interface ScanConfig.AuthenticationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScanConfig.Authentication.AuthenticationCase
getAuthenticationCase()
ScanConfig.Authentication.CustomAccount
getCustomAccount()
Authentication using a custom account.ScanConfig.Authentication.CustomAccountOrBuilder
getCustomAccountOrBuilder()
Authentication using a custom account.ScanConfig.Authentication.GoogleAccount
getGoogleAccount()
Authentication using a Google account.ScanConfig.Authentication.GoogleAccountOrBuilder
getGoogleAccountOrBuilder()
Authentication using a Google account.boolean
hasCustomAccount()
Authentication using a custom account.boolean
hasGoogleAccount()
Authentication using a Google account.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasGoogleAccount
boolean hasGoogleAccount()
Authentication using a Google account.
.google.cloud.websecurityscanner.v1alpha.ScanConfig.Authentication.GoogleAccount google_account = 1;
- Returns:
- Whether the googleAccount field is set.
-
getGoogleAccount
ScanConfig.Authentication.GoogleAccount getGoogleAccount()
Authentication using a Google account.
.google.cloud.websecurityscanner.v1alpha.ScanConfig.Authentication.GoogleAccount google_account = 1;
- Returns:
- The googleAccount.
-
getGoogleAccountOrBuilder
ScanConfig.Authentication.GoogleAccountOrBuilder getGoogleAccountOrBuilder()
Authentication using a Google account.
.google.cloud.websecurityscanner.v1alpha.ScanConfig.Authentication.GoogleAccount google_account = 1;
-
hasCustomAccount
boolean hasCustomAccount()
Authentication using a custom account.
.google.cloud.websecurityscanner.v1alpha.ScanConfig.Authentication.CustomAccount custom_account = 2;
- Returns:
- Whether the customAccount field is set.
-
getCustomAccount
ScanConfig.Authentication.CustomAccount getCustomAccount()
Authentication using a custom account.
.google.cloud.websecurityscanner.v1alpha.ScanConfig.Authentication.CustomAccount custom_account = 2;
- Returns:
- The customAccount.
-
getCustomAccountOrBuilder
ScanConfig.Authentication.CustomAccountOrBuilder getCustomAccountOrBuilder()
Authentication using a custom account.
.google.cloud.websecurityscanner.v1alpha.ScanConfig.Authentication.CustomAccount custom_account = 2;
-
getAuthenticationCase
ScanConfig.Authentication.AuthenticationCase getAuthenticationCase()
-
-