com.pulumi.azure.servicefabric.inputs.ClusterAzureActiveDirectoryArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.servicefabric.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class ClusterAzureActiveDirectoryArgs extends com.pulumi.resources.ResourceArgs {
public static final ClusterAzureActiveDirectoryArgs Empty = new ClusterAzureActiveDirectoryArgs();
/**
* The Azure Active Directory Client ID which should be used for the Client Application.
*
*/
@Import(name="clientApplicationId", required=true)
private Output clientApplicationId;
/**
* @return The Azure Active Directory Client ID which should be used for the Client Application.
*
*/
public Output clientApplicationId() {
return this.clientApplicationId;
}
/**
* The Azure Active Directory Cluster Application ID.
*
*/
@Import(name="clusterApplicationId", required=true)
private Output clusterApplicationId;
/**
* @return The Azure Active Directory Cluster Application ID.
*
*/
public Output clusterApplicationId() {
return this.clusterApplicationId;
}
/**
* The Azure Active Directory Tenant ID.
*
*/
@Import(name="tenantId", required=true)
private Output tenantId;
/**
* @return The Azure Active Directory Tenant ID.
*
*/
public Output tenantId() {
return this.tenantId;
}
private ClusterAzureActiveDirectoryArgs() {}
private ClusterAzureActiveDirectoryArgs(ClusterAzureActiveDirectoryArgs $) {
this.clientApplicationId = $.clientApplicationId;
this.clusterApplicationId = $.clusterApplicationId;
this.tenantId = $.tenantId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ClusterAzureActiveDirectoryArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ClusterAzureActiveDirectoryArgs $;
public Builder() {
$ = new ClusterAzureActiveDirectoryArgs();
}
public Builder(ClusterAzureActiveDirectoryArgs defaults) {
$ = new ClusterAzureActiveDirectoryArgs(Objects.requireNonNull(defaults));
}
/**
* @param clientApplicationId The Azure Active Directory Client ID which should be used for the Client Application.
*
* @return builder
*
*/
public Builder clientApplicationId(Output clientApplicationId) {
$.clientApplicationId = clientApplicationId;
return this;
}
/**
* @param clientApplicationId The Azure Active Directory Client ID which should be used for the Client Application.
*
* @return builder
*
*/
public Builder clientApplicationId(String clientApplicationId) {
return clientApplicationId(Output.of(clientApplicationId));
}
/**
* @param clusterApplicationId The Azure Active Directory Cluster Application ID.
*
* @return builder
*
*/
public Builder clusterApplicationId(Output clusterApplicationId) {
$.clusterApplicationId = clusterApplicationId;
return this;
}
/**
* @param clusterApplicationId The Azure Active Directory Cluster Application ID.
*
* @return builder
*
*/
public Builder clusterApplicationId(String clusterApplicationId) {
return clusterApplicationId(Output.of(clusterApplicationId));
}
/**
* @param tenantId The Azure Active Directory Tenant ID.
*
* @return builder
*
*/
public Builder tenantId(Output tenantId) {
$.tenantId = tenantId;
return this;
}
/**
* @param tenantId The Azure Active Directory Tenant ID.
*
* @return builder
*
*/
public Builder tenantId(String tenantId) {
return tenantId(Output.of(tenantId));
}
public ClusterAzureActiveDirectoryArgs build() {
if ($.clientApplicationId == null) {
throw new MissingRequiredPropertyException("ClusterAzureActiveDirectoryArgs", "clientApplicationId");
}
if ($.clusterApplicationId == null) {
throw new MissingRequiredPropertyException("ClusterAzureActiveDirectoryArgs", "clusterApplicationId");
}
if ($.tenantId == null) {
throw new MissingRequiredPropertyException("ClusterAzureActiveDirectoryArgs", "tenantId");
}
return $;
}
}
}