Class SsisAccessCredential
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.SsisAccessCredential
-
public final class SsisAccessCredential extends Object
SSIS access credential.
-
-
Constructor Summary
Constructors Constructor Description SsisAccessCredential()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
domain()
Get the domain property: Domain for windows authentication.SecretBase
password()
Get the password property: Password for windows authentication.Object
username()
Get the username property: UseName for windows authentication.void
validate()
Validates the instance.SsisAccessCredential
withDomain(Object domain)
Set the domain property: Domain for windows authentication.SsisAccessCredential
withPassword(SecretBase password)
Set the password property: Password for windows authentication.SsisAccessCredential
withUsername(Object username)
Set the username property: UseName for windows authentication.
-
-
-
Method Detail
-
domain
public Object domain()
Get the domain property: Domain for windows authentication.- Returns:
- the domain value.
-
withDomain
public SsisAccessCredential withDomain(Object domain)
Set the domain property: Domain for windows authentication.- Parameters:
domain
- the domain value to set.- Returns:
- the SsisAccessCredential object itself.
-
username
public Object username()
Get the username property: UseName for windows authentication.- Returns:
- the username value.
-
withUsername
public SsisAccessCredential withUsername(Object username)
Set the username property: UseName for windows authentication.- Parameters:
username
- the username value to set.- Returns:
- the SsisAccessCredential object itself.
-
password
public SecretBase password()
Get the password property: Password for windows authentication.- Returns:
- the password value.
-
withPassword
public SsisAccessCredential withPassword(SecretBase password)
Set the password property: Password for windows authentication.- Parameters:
password
- the password value to set.- Returns:
- the SsisAccessCredential object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-