com.pulumi.azurenative.aad.outputs.ForestTrustResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.aad.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ForestTrustResponse {
/**
* @return Friendly Name
*
*/
private @Nullable String friendlyName;
/**
* @return Remote Dns ips
*
*/
private @Nullable String remoteDnsIps;
/**
* @return Trust Direction
*
*/
private @Nullable String trustDirection;
/**
* @return Trust Password
*
*/
private @Nullable String trustPassword;
/**
* @return Trusted Domain FQDN
*
*/
private @Nullable String trustedDomainFqdn;
private ForestTrustResponse() {}
/**
* @return Friendly Name
*
*/
public Optional friendlyName() {
return Optional.ofNullable(this.friendlyName);
}
/**
* @return Remote Dns ips
*
*/
public Optional remoteDnsIps() {
return Optional.ofNullable(this.remoteDnsIps);
}
/**
* @return Trust Direction
*
*/
public Optional trustDirection() {
return Optional.ofNullable(this.trustDirection);
}
/**
* @return Trust Password
*
*/
public Optional trustPassword() {
return Optional.ofNullable(this.trustPassword);
}
/**
* @return Trusted Domain FQDN
*
*/
public Optional trustedDomainFqdn() {
return Optional.ofNullable(this.trustedDomainFqdn);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ForestTrustResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String friendlyName;
private @Nullable String remoteDnsIps;
private @Nullable String trustDirection;
private @Nullable String trustPassword;
private @Nullable String trustedDomainFqdn;
public Builder() {}
public Builder(ForestTrustResponse defaults) {
Objects.requireNonNull(defaults);
this.friendlyName = defaults.friendlyName;
this.remoteDnsIps = defaults.remoteDnsIps;
this.trustDirection = defaults.trustDirection;
this.trustPassword = defaults.trustPassword;
this.trustedDomainFqdn = defaults.trustedDomainFqdn;
}
@CustomType.Setter
public Builder friendlyName(@Nullable String friendlyName) {
this.friendlyName = friendlyName;
return this;
}
@CustomType.Setter
public Builder remoteDnsIps(@Nullable String remoteDnsIps) {
this.remoteDnsIps = remoteDnsIps;
return this;
}
@CustomType.Setter
public Builder trustDirection(@Nullable String trustDirection) {
this.trustDirection = trustDirection;
return this;
}
@CustomType.Setter
public Builder trustPassword(@Nullable String trustPassword) {
this.trustPassword = trustPassword;
return this;
}
@CustomType.Setter
public Builder trustedDomainFqdn(@Nullable String trustedDomainFqdn) {
this.trustedDomainFqdn = trustedDomainFqdn;
return this;
}
public ForestTrustResponse build() {
final var _resultValue = new ForestTrustResponse();
_resultValue.friendlyName = friendlyName;
_resultValue.remoteDnsIps = remoteDnsIps;
_resultValue.trustDirection = trustDirection;
_resultValue.trustPassword = trustPassword;
_resultValue.trustedDomainFqdn = trustedDomainFqdn;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy