
com.pulumi.azurenative.datafactory.outputs.SSISAccessCredentialResponse Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.datafactory.outputs;
import com.pulumi.azurenative.datafactory.outputs.AzureKeyVaultSecretReferenceResponse;
import com.pulumi.azurenative.datafactory.outputs.SecureStringResponse;
import com.pulumi.core.Either;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.util.Objects;
@CustomType
public final class SSISAccessCredentialResponse {
/**
* @return Domain for windows authentication. Type: string (or Expression with resultType string).
*
*/
private Object domain;
/**
* @return Password for windows authentication.
*
*/
private Either password;
/**
* @return UseName for windows authentication. Type: string (or Expression with resultType string).
*
*/
private Object userName;
private SSISAccessCredentialResponse() {}
/**
* @return Domain for windows authentication. Type: string (or Expression with resultType string).
*
*/
public Object domain() {
return this.domain;
}
/**
* @return Password for windows authentication.
*
*/
public Either password() {
return this.password;
}
/**
* @return UseName for windows authentication. Type: string (or Expression with resultType string).
*
*/
public Object userName() {
return this.userName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SSISAccessCredentialResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Object domain;
private Either password;
private Object userName;
public Builder() {}
public Builder(SSISAccessCredentialResponse defaults) {
Objects.requireNonNull(defaults);
this.domain = defaults.domain;
this.password = defaults.password;
this.userName = defaults.userName;
}
@CustomType.Setter
public Builder domain(Object domain) {
if (domain == null) {
throw new MissingRequiredPropertyException("SSISAccessCredentialResponse", "domain");
}
this.domain = domain;
return this;
}
@CustomType.Setter
public Builder password(Either password) {
if (password == null) {
throw new MissingRequiredPropertyException("SSISAccessCredentialResponse", "password");
}
this.password = password;
return this;
}
@CustomType.Setter
public Builder userName(Object userName) {
if (userName == null) {
throw new MissingRequiredPropertyException("SSISAccessCredentialResponse", "userName");
}
this.userName = userName;
return this;
}
public SSISAccessCredentialResponse build() {
final var _resultValue = new SSISAccessCredentialResponse();
_resultValue.domain = domain;
_resultValue.password = password;
_resultValue.userName = userName;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy