Share via


SsisAccessCredential Class

  • java.lang.Object
    • com.azure.resourcemanager.datafactory.models.SsisAccessCredential

Implements

public final class SsisAccessCredential
implements JsonSerializable<SsisAccessCredential>

SSIS access credential.

Constructor Summary

Constructor Description
SsisAccessCredential()

Creates an instance of SsisAccessCredential class.

Method Summary

Modifier and Type Method and Description
Object domain()

Get the domain property: Domain for windows authentication.

static SsisAccessCredential fromJson(JsonReader jsonReader)

Reads an instance of SsisAccessCredential from the JsonReader.

SecretBase password()

Get the password property: Password for windows authentication.

JsonWriter toJson(JsonWriter jsonWriter)
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.

Methods inherited from java.lang.Object

Constructor Details

SsisAccessCredential

public SsisAccessCredential()

Creates an instance of SsisAccessCredential class.

Method Details

domain

public Object domain()

Get the domain property: Domain for windows authentication. Type: string (or Expression with resultType string).

Returns:

the domain value.

fromJson

public static SsisAccessCredential fromJson(JsonReader jsonReader)

Reads an instance of SsisAccessCredential from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of SsisAccessCredential if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.

Throws:

IOException

- If the deserialized JSON object was missing any required properties.

password

public SecretBase password()

Get the password property: Password for windows authentication.

Returns:

the password value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

username

public Object username()

Get the username property: UseName for windows authentication. Type: string (or Expression with resultType string).

Returns:

the username value.

validate

public void validate()

Validates the instance.

withDomain

public SsisAccessCredential withDomain(Object domain)

Set the domain property: Domain for windows authentication. Type: string (or Expression with resultType string).

Parameters:

domain - the domain value to set.

Returns:

the SsisAccessCredential object itself.

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.

withUsername

public SsisAccessCredential withUsername(Object username)

Set the username property: UseName for windows authentication. Type: string (or Expression with resultType string).

Parameters:

username - the username value to set.

Returns:

the SsisAccessCredential object itself.

Applies to