Interface ServicePrincipal.UpdateStages.WithCredential
-
- All Known Subinterfaces:
ServicePrincipal.Update
- Enclosing interface:
- ServicePrincipal.UpdateStages
public static interface ServicePrincipal.UpdateStages.WithCredentialA service principal update allowing credentials to be specified.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CertificateCredential.DefinitionStages.Blank<? extends ServicePrincipal.Update>defineCertificateCredential(String name)Starts the definition of a certificate credential.PasswordCredential.DefinitionStages.Blank<? extends ServicePrincipal.Update>definePasswordCredential(String name)Starts the definition of a password credential.ServicePrincipal.UpdatewithoutCredential(String name)Removes a credential.
-
-
-
Method Detail
-
defineCertificateCredential
CertificateCredential.DefinitionStages.Blank<? extends ServicePrincipal.Update> defineCertificateCredential(String name)
Starts the definition of a certificate credential.- Parameters:
name- the descriptive name of the certificate credential- Returns:
- the first stage in certificate credential update
-
definePasswordCredential
PasswordCredential.DefinitionStages.Blank<? extends ServicePrincipal.Update> definePasswordCredential(String name)
Starts the definition of a password credential.- Parameters:
name- the descriptive name of the password credential- Returns:
- the first stage in password credential update
-
withoutCredential
ServicePrincipal.Update withoutCredential(String name)
Removes a credential.- Parameters:
name- the name of the credential- Returns:
- the next stage of the service principal update
-
-