
com.pulumi.azurenative.recoveryservices.outputs.ContainerIdentityInfoResponse 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.recoveryservices.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 ContainerIdentityInfoResponse {
/**
* @return Protection container identity - AAD Tenant
*
*/
private @Nullable String aadTenantId;
/**
* @return Protection container identity - Audience
*
*/
private @Nullable String audience;
/**
* @return Protection container identity - AAD Service Principal
*
*/
private @Nullable String servicePrincipalClientId;
/**
* @return Unique name of the container
*
*/
private @Nullable String uniqueName;
private ContainerIdentityInfoResponse() {}
/**
* @return Protection container identity - AAD Tenant
*
*/
public Optional aadTenantId() {
return Optional.ofNullable(this.aadTenantId);
}
/**
* @return Protection container identity - Audience
*
*/
public Optional audience() {
return Optional.ofNullable(this.audience);
}
/**
* @return Protection container identity - AAD Service Principal
*
*/
public Optional servicePrincipalClientId() {
return Optional.ofNullable(this.servicePrincipalClientId);
}
/**
* @return Unique name of the container
*
*/
public Optional uniqueName() {
return Optional.ofNullable(this.uniqueName);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ContainerIdentityInfoResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String aadTenantId;
private @Nullable String audience;
private @Nullable String servicePrincipalClientId;
private @Nullable String uniqueName;
public Builder() {}
public Builder(ContainerIdentityInfoResponse defaults) {
Objects.requireNonNull(defaults);
this.aadTenantId = defaults.aadTenantId;
this.audience = defaults.audience;
this.servicePrincipalClientId = defaults.servicePrincipalClientId;
this.uniqueName = defaults.uniqueName;
}
@CustomType.Setter
public Builder aadTenantId(@Nullable String aadTenantId) {
this.aadTenantId = aadTenantId;
return this;
}
@CustomType.Setter
public Builder audience(@Nullable String audience) {
this.audience = audience;
return this;
}
@CustomType.Setter
public Builder servicePrincipalClientId(@Nullable String servicePrincipalClientId) {
this.servicePrincipalClientId = servicePrincipalClientId;
return this;
}
@CustomType.Setter
public Builder uniqueName(@Nullable String uniqueName) {
this.uniqueName = uniqueName;
return this;
}
public ContainerIdentityInfoResponse build() {
final var _resultValue = new ContainerIdentityInfoResponse();
_resultValue.aadTenantId = aadTenantId;
_resultValue.audience = audience;
_resultValue.servicePrincipalClientId = servicePrincipalClientId;
_resultValue.uniqueName = uniqueName;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy