All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.eventgrid.DomainArgs Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 6.10.0-alpha.1731737215
Show newest version
// *** 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.eventgrid;

import com.pulumi.azure.eventgrid.inputs.DomainIdentityArgs;
import com.pulumi.azure.eventgrid.inputs.DomainInboundIpRuleArgs;
import com.pulumi.azure.eventgrid.inputs.DomainInputMappingDefaultValuesArgs;
import com.pulumi.azure.eventgrid.inputs.DomainInputMappingFieldsArgs;
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.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class DomainArgs extends com.pulumi.resources.ResourceArgs {

    public static final DomainArgs Empty = new DomainArgs();

    /**
     * Whether to create the domain topic when the first event subscription at the scope of the domain topic is created. Defaults to `true`.
     * 
     */
    @Import(name="autoCreateTopicWithFirstSubscription")
    private @Nullable Output autoCreateTopicWithFirstSubscription;

    /**
     * @return Whether to create the domain topic when the first event subscription at the scope of the domain topic is created. Defaults to `true`.
     * 
     */
    public Optional> autoCreateTopicWithFirstSubscription() {
        return Optional.ofNullable(this.autoCreateTopicWithFirstSubscription);
    }

    /**
     * Whether to delete the domain topic when the last event subscription at the scope of the domain topic is deleted. Defaults to `true`.
     * 
     */
    @Import(name="autoDeleteTopicWithLastSubscription")
    private @Nullable Output autoDeleteTopicWithLastSubscription;

    /**
     * @return Whether to delete the domain topic when the last event subscription at the scope of the domain topic is deleted. Defaults to `true`.
     * 
     */
    public Optional> autoDeleteTopicWithLastSubscription() {
        return Optional.ofNullable(this.autoDeleteTopicWithLastSubscription);
    }

    /**
     * An `identity` block as defined below.
     * 
     */
    @Import(name="identity")
    private @Nullable Output identity;

    /**
     * @return An `identity` block as defined below.
     * 
     */
    public Optional> identity() {
        return Optional.ofNullable(this.identity);
    }

    /**
     * One or more `inbound_ip_rule` blocks as defined below.
     * 
     */
    @Import(name="inboundIpRules")
    private @Nullable Output> inboundIpRules;

    /**
     * @return One or more `inbound_ip_rule` blocks as defined below.
     * 
     */
    public Optional>> inboundIpRules() {
        return Optional.ofNullable(this.inboundIpRules);
    }

    /**
     * A `input_mapping_default_values` block as defined below. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="inputMappingDefaultValues")
    private @Nullable Output inputMappingDefaultValues;

    /**
     * @return A `input_mapping_default_values` block as defined below. Changing this forces a new resource to be created.
     * 
     */
    public Optional> inputMappingDefaultValues() {
        return Optional.ofNullable(this.inputMappingDefaultValues);
    }

    /**
     * A `input_mapping_fields` block as defined below. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="inputMappingFields")
    private @Nullable Output inputMappingFields;

    /**
     * @return A `input_mapping_fields` block as defined below. Changing this forces a new resource to be created.
     * 
     */
    public Optional> inputMappingFields() {
        return Optional.ofNullable(this.inputMappingFields);
    }

    /**
     * Specifies the schema in which incoming events will be published to this domain. Allowed values are `CloudEventSchemaV1_0`, `CustomEventSchema`, or `EventGridSchema`. Defaults to `EventGridSchema`. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="inputSchema")
    private @Nullable Output inputSchema;

    /**
     * @return Specifies the schema in which incoming events will be published to this domain. Allowed values are `CloudEventSchemaV1_0`, `CustomEventSchema`, or `EventGridSchema`. Defaults to `EventGridSchema`. Changing this forces a new resource to be created.
     * 
     */
    public Optional> inputSchema() {
        return Optional.ofNullable(this.inputSchema);
    }

    /**
     * Whether local authentication methods is enabled for the EventGrid Domain. Defaults to `true`.
     * 
     */
    @Import(name="localAuthEnabled")
    private @Nullable Output localAuthEnabled;

    /**
     * @return Whether local authentication methods is enabled for the EventGrid Domain. Defaults to `true`.
     * 
     */
    public Optional> localAuthEnabled() {
        return Optional.ofNullable(this.localAuthEnabled);
    }

    /**
     * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="location")
    private @Nullable Output location;

    /**
     * @return Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
     * 
     */
    public Optional> location() {
        return Optional.ofNullable(this.location);
    }

    /**
     * Specifies the name of the EventGrid Domain resource. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return Specifies the name of the EventGrid Domain resource. Changing this forces a new resource to be created.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * Whether or not public network access is allowed for this server. Defaults to `true`.
     * 
     */
    @Import(name="publicNetworkAccessEnabled")
    private @Nullable Output publicNetworkAccessEnabled;

    /**
     * @return Whether or not public network access is allowed for this server. Defaults to `true`.
     * 
     */
    public Optional> publicNetworkAccessEnabled() {
        return Optional.ofNullable(this.publicNetworkAccessEnabled);
    }

    /**
     * The name of the resource group in which the EventGrid Domain exists. Changing this forces a new resource to be created.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the resource group in which the EventGrid Domain exists. Changing this forces a new resource to be created.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * A mapping of tags to assign to the resource.
     * 
     */
    @Import(name="tags")
    private @Nullable Output> tags;

    /**
     * @return A mapping of tags to assign to the resource.
     * 
     */
    public Optional>> tags() {
        return Optional.ofNullable(this.tags);
    }

    private DomainArgs() {}

    private DomainArgs(DomainArgs $) {
        this.autoCreateTopicWithFirstSubscription = $.autoCreateTopicWithFirstSubscription;
        this.autoDeleteTopicWithLastSubscription = $.autoDeleteTopicWithLastSubscription;
        this.identity = $.identity;
        this.inboundIpRules = $.inboundIpRules;
        this.inputMappingDefaultValues = $.inputMappingDefaultValues;
        this.inputMappingFields = $.inputMappingFields;
        this.inputSchema = $.inputSchema;
        this.localAuthEnabled = $.localAuthEnabled;
        this.location = $.location;
        this.name = $.name;
        this.publicNetworkAccessEnabled = $.publicNetworkAccessEnabled;
        this.resourceGroupName = $.resourceGroupName;
        this.tags = $.tags;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(DomainArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private DomainArgs $;

        public Builder() {
            $ = new DomainArgs();
        }

        public Builder(DomainArgs defaults) {
            $ = new DomainArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param autoCreateTopicWithFirstSubscription Whether to create the domain topic when the first event subscription at the scope of the domain topic is created. Defaults to `true`.
         * 
         * @return builder
         * 
         */
        public Builder autoCreateTopicWithFirstSubscription(@Nullable Output autoCreateTopicWithFirstSubscription) {
            $.autoCreateTopicWithFirstSubscription = autoCreateTopicWithFirstSubscription;
            return this;
        }

        /**
         * @param autoCreateTopicWithFirstSubscription Whether to create the domain topic when the first event subscription at the scope of the domain topic is created. Defaults to `true`.
         * 
         * @return builder
         * 
         */
        public Builder autoCreateTopicWithFirstSubscription(Boolean autoCreateTopicWithFirstSubscription) {
            return autoCreateTopicWithFirstSubscription(Output.of(autoCreateTopicWithFirstSubscription));
        }

        /**
         * @param autoDeleteTopicWithLastSubscription Whether to delete the domain topic when the last event subscription at the scope of the domain topic is deleted. Defaults to `true`.
         * 
         * @return builder
         * 
         */
        public Builder autoDeleteTopicWithLastSubscription(@Nullable Output autoDeleteTopicWithLastSubscription) {
            $.autoDeleteTopicWithLastSubscription = autoDeleteTopicWithLastSubscription;
            return this;
        }

        /**
         * @param autoDeleteTopicWithLastSubscription Whether to delete the domain topic when the last event subscription at the scope of the domain topic is deleted. Defaults to `true`.
         * 
         * @return builder
         * 
         */
        public Builder autoDeleteTopicWithLastSubscription(Boolean autoDeleteTopicWithLastSubscription) {
            return autoDeleteTopicWithLastSubscription(Output.of(autoDeleteTopicWithLastSubscription));
        }

        /**
         * @param identity An `identity` block as defined below.
         * 
         * @return builder
         * 
         */
        public Builder identity(@Nullable Output identity) {
            $.identity = identity;
            return this;
        }

        /**
         * @param identity An `identity` block as defined below.
         * 
         * @return builder
         * 
         */
        public Builder identity(DomainIdentityArgs identity) {
            return identity(Output.of(identity));
        }

        /**
         * @param inboundIpRules One or more `inbound_ip_rule` blocks as defined below.
         * 
         * @return builder
         * 
         */
        public Builder inboundIpRules(@Nullable Output> inboundIpRules) {
            $.inboundIpRules = inboundIpRules;
            return this;
        }

        /**
         * @param inboundIpRules One or more `inbound_ip_rule` blocks as defined below.
         * 
         * @return builder
         * 
         */
        public Builder inboundIpRules(List inboundIpRules) {
            return inboundIpRules(Output.of(inboundIpRules));
        }

        /**
         * @param inboundIpRules One or more `inbound_ip_rule` blocks as defined below.
         * 
         * @return builder
         * 
         */
        public Builder inboundIpRules(DomainInboundIpRuleArgs... inboundIpRules) {
            return inboundIpRules(List.of(inboundIpRules));
        }

        /**
         * @param inputMappingDefaultValues A `input_mapping_default_values` block as defined below. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder inputMappingDefaultValues(@Nullable Output inputMappingDefaultValues) {
            $.inputMappingDefaultValues = inputMappingDefaultValues;
            return this;
        }

        /**
         * @param inputMappingDefaultValues A `input_mapping_default_values` block as defined below. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder inputMappingDefaultValues(DomainInputMappingDefaultValuesArgs inputMappingDefaultValues) {
            return inputMappingDefaultValues(Output.of(inputMappingDefaultValues));
        }

        /**
         * @param inputMappingFields A `input_mapping_fields` block as defined below. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder inputMappingFields(@Nullable Output inputMappingFields) {
            $.inputMappingFields = inputMappingFields;
            return this;
        }

        /**
         * @param inputMappingFields A `input_mapping_fields` block as defined below. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder inputMappingFields(DomainInputMappingFieldsArgs inputMappingFields) {
            return inputMappingFields(Output.of(inputMappingFields));
        }

        /**
         * @param inputSchema Specifies the schema in which incoming events will be published to this domain. Allowed values are `CloudEventSchemaV1_0`, `CustomEventSchema`, or `EventGridSchema`. Defaults to `EventGridSchema`. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder inputSchema(@Nullable Output inputSchema) {
            $.inputSchema = inputSchema;
            return this;
        }

        /**
         * @param inputSchema Specifies the schema in which incoming events will be published to this domain. Allowed values are `CloudEventSchemaV1_0`, `CustomEventSchema`, or `EventGridSchema`. Defaults to `EventGridSchema`. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder inputSchema(String inputSchema) {
            return inputSchema(Output.of(inputSchema));
        }

        /**
         * @param localAuthEnabled Whether local authentication methods is enabled for the EventGrid Domain. Defaults to `true`.
         * 
         * @return builder
         * 
         */
        public Builder localAuthEnabled(@Nullable Output localAuthEnabled) {
            $.localAuthEnabled = localAuthEnabled;
            return this;
        }

        /**
         * @param localAuthEnabled Whether local authentication methods is enabled for the EventGrid Domain. Defaults to `true`.
         * 
         * @return builder
         * 
         */
        public Builder localAuthEnabled(Boolean localAuthEnabled) {
            return localAuthEnabled(Output.of(localAuthEnabled));
        }

        /**
         * @param location Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder location(@Nullable Output location) {
            $.location = location;
            return this;
        }

        /**
         * @param location Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder location(String location) {
            return location(Output.of(location));
        }

        /**
         * @param name Specifies the name of the EventGrid Domain resource. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Specifies the name of the EventGrid Domain resource. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param publicNetworkAccessEnabled Whether or not public network access is allowed for this server. Defaults to `true`.
         * 
         * @return builder
         * 
         */
        public Builder publicNetworkAccessEnabled(@Nullable Output publicNetworkAccessEnabled) {
            $.publicNetworkAccessEnabled = publicNetworkAccessEnabled;
            return this;
        }

        /**
         * @param publicNetworkAccessEnabled Whether or not public network access is allowed for this server. Defaults to `true`.
         * 
         * @return builder
         * 
         */
        public Builder publicNetworkAccessEnabled(Boolean publicNetworkAccessEnabled) {
            return publicNetworkAccessEnabled(Output.of(publicNetworkAccessEnabled));
        }

        /**
         * @param resourceGroupName The name of the resource group in which the EventGrid Domain exists. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group in which the EventGrid Domain exists. Changing this forces a new resource to be created.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param tags A mapping of tags to assign to the resource.
         * 
         * @return builder
         * 
         */
        public Builder tags(@Nullable Output> tags) {
            $.tags = tags;
            return this;
        }

        /**
         * @param tags A mapping of tags to assign to the resource.
         * 
         * @return builder
         * 
         */
        public Builder tags(Map tags) {
            return tags(Output.of(tags));
        }

        public DomainArgs build() {
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("DomainArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy