
com.pulumi.ec.inputs.DeploymentElasticsearchTrustAccountArgs 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.ec.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class DeploymentElasticsearchTrustAccountArgs extends com.pulumi.resources.ResourceArgs {
public static final DeploymentElasticsearchTrustAccountArgs Empty = new DeploymentElasticsearchTrustAccountArgs();
/**
* The ID of the Account.
*
*/
@Import(name="accountId", required=true)
private Output accountId;
/**
* @return The ID of the Account.
*
*/
public Output accountId() {
return this.accountId;
}
/**
* If true, all clusters in this account will by default be trusted and the `trust_allowlist` is ignored.
*
*/
@Import(name="trustAll", required=true)
private Output trustAll;
/**
* @return If true, all clusters in this account will by default be trusted and the `trust_allowlist` is ignored.
*
*/
public Output trustAll() {
return this.trustAll;
}
/**
* The list of clusters to trust. Only used when `trust_all` is false.
*
*/
@Import(name="trustAllowlists")
private @Nullable Output> trustAllowlists;
/**
* @return The list of clusters to trust. Only used when `trust_all` is false.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy