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

com.pulumi.azure.sentinel.DataConnectorThreatIntelligenceTaxiiArgs 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.sentinel;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final DataConnectorThreatIntelligenceTaxiiArgs Empty = new DataConnectorThreatIntelligenceTaxiiArgs();

    /**
     * The API root URI of the TAXII server.
     * 
     */
    @Import(name="apiRootUrl", required=true)
    private Output apiRootUrl;

    /**
     * @return The API root URI of the TAXII server.
     * 
     */
    public Output apiRootUrl() {
        return this.apiRootUrl;
    }

    /**
     * The collection ID of the TAXII server.
     * 
     */
    @Import(name="collectionId", required=true)
    private Output collectionId;

    /**
     * @return The collection ID of the TAXII server.
     * 
     */
    public Output collectionId() {
        return this.collectionId;
    }

    /**
     * The friendly name which should be used for this Threat Intelligence TAXII Data Connector.
     * 
     */
    @Import(name="displayName", required=true)
    private Output displayName;

    /**
     * @return The friendly name which should be used for this Threat Intelligence TAXII Data Connector.
     * 
     */
    public Output displayName() {
        return this.displayName;
    }

    /**
     * The ID of the Log Analytics Workspace that this Threat Intelligence TAXII Data Connector resides in. Changing this forces a new Threat Intelligence TAXII Data Connector to be created.
     * 
     */
    @Import(name="logAnalyticsWorkspaceId", required=true)
    private Output logAnalyticsWorkspaceId;

    /**
     * @return The ID of the Log Analytics Workspace that this Threat Intelligence TAXII Data Connector resides in. Changing this forces a new Threat Intelligence TAXII Data Connector to be created.
     * 
     */
    public Output logAnalyticsWorkspaceId() {
        return this.logAnalyticsWorkspaceId;
    }

    /**
     * The lookback date for the TAXII server in RFC3339. Defaults to `1970-01-01T00:00:00Z`.
     * 
     */
    @Import(name="lookbackDate")
    private @Nullable Output lookbackDate;

    /**
     * @return The lookback date for the TAXII server in RFC3339. Defaults to `1970-01-01T00:00:00Z`.
     * 
     */
    public Optional> lookbackDate() {
        return Optional.ofNullable(this.lookbackDate);
    }

    /**
     * The name which should be used for this Threat Intelligence TAXII Data Connector. Changing this forces a new Threat Intelligence TAXII Data Connector to be created.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return The name which should be used for this Threat Intelligence TAXII Data Connector. Changing this forces a new Threat Intelligence TAXII Data Connector to be created.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * The password for the TAXII server.
     * 
     */
    @Import(name="password")
    private @Nullable Output password;

    /**
     * @return The password for the TAXII server.
     * 
     */
    public Optional> password() {
        return Optional.ofNullable(this.password);
    }

    /**
     * The polling frequency for the TAXII server. Possible values are `OnceAMinute`, `OnceAnHour` and `OnceADay`. Defaults to `OnceAnHour`.
     * 
     */
    @Import(name="pollingFrequency")
    private @Nullable Output pollingFrequency;

    /**
     * @return The polling frequency for the TAXII server. Possible values are `OnceAMinute`, `OnceAnHour` and `OnceADay`. Defaults to `OnceAnHour`.
     * 
     */
    public Optional> pollingFrequency() {
        return Optional.ofNullable(this.pollingFrequency);
    }

    /**
     * The ID of the tenant that this Threat Intelligence TAXII Data Connector connects to. Changing this forces a new Threat Intelligence TAXII Data Connector to be created.
     * 
     * > **NOTE** Currently, only the same tenant as the running account is allowed. Cross-tenant scenario is not supported yet.
     * 
     */
    @Import(name="tenantId")
    private @Nullable Output tenantId;

    /**
     * @return The ID of the tenant that this Threat Intelligence TAXII Data Connector connects to. Changing this forces a new Threat Intelligence TAXII Data Connector to be created.
     * 
     * > **NOTE** Currently, only the same tenant as the running account is allowed. Cross-tenant scenario is not supported yet.
     * 
     */
    public Optional> tenantId() {
        return Optional.ofNullable(this.tenantId);
    }

    /**
     * The user name for the TAXII server.
     * 
     */
    @Import(name="userName")
    private @Nullable Output userName;

    /**
     * @return The user name for the TAXII server.
     * 
     */
    public Optional> userName() {
        return Optional.ofNullable(this.userName);
    }

    private DataConnectorThreatIntelligenceTaxiiArgs() {}

    private DataConnectorThreatIntelligenceTaxiiArgs(DataConnectorThreatIntelligenceTaxiiArgs $) {
        this.apiRootUrl = $.apiRootUrl;
        this.collectionId = $.collectionId;
        this.displayName = $.displayName;
        this.logAnalyticsWorkspaceId = $.logAnalyticsWorkspaceId;
        this.lookbackDate = $.lookbackDate;
        this.name = $.name;
        this.password = $.password;
        this.pollingFrequency = $.pollingFrequency;
        this.tenantId = $.tenantId;
        this.userName = $.userName;
    }

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

    public static final class Builder {
        private DataConnectorThreatIntelligenceTaxiiArgs $;

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

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

        /**
         * @param apiRootUrl The API root URI of the TAXII server.
         * 
         * @return builder
         * 
         */
        public Builder apiRootUrl(Output apiRootUrl) {
            $.apiRootUrl = apiRootUrl;
            return this;
        }

        /**
         * @param apiRootUrl The API root URI of the TAXII server.
         * 
         * @return builder
         * 
         */
        public Builder apiRootUrl(String apiRootUrl) {
            return apiRootUrl(Output.of(apiRootUrl));
        }

        /**
         * @param collectionId The collection ID of the TAXII server.
         * 
         * @return builder
         * 
         */
        public Builder collectionId(Output collectionId) {
            $.collectionId = collectionId;
            return this;
        }

        /**
         * @param collectionId The collection ID of the TAXII server.
         * 
         * @return builder
         * 
         */
        public Builder collectionId(String collectionId) {
            return collectionId(Output.of(collectionId));
        }

        /**
         * @param displayName The friendly name which should be used for this Threat Intelligence TAXII Data Connector.
         * 
         * @return builder
         * 
         */
        public Builder displayName(Output displayName) {
            $.displayName = displayName;
            return this;
        }

        /**
         * @param displayName The friendly name which should be used for this Threat Intelligence TAXII Data Connector.
         * 
         * @return builder
         * 
         */
        public Builder displayName(String displayName) {
            return displayName(Output.of(displayName));
        }

        /**
         * @param logAnalyticsWorkspaceId The ID of the Log Analytics Workspace that this Threat Intelligence TAXII Data Connector resides in. Changing this forces a new Threat Intelligence TAXII Data Connector to be created.
         * 
         * @return builder
         * 
         */
        public Builder logAnalyticsWorkspaceId(Output logAnalyticsWorkspaceId) {
            $.logAnalyticsWorkspaceId = logAnalyticsWorkspaceId;
            return this;
        }

        /**
         * @param logAnalyticsWorkspaceId The ID of the Log Analytics Workspace that this Threat Intelligence TAXII Data Connector resides in. Changing this forces a new Threat Intelligence TAXII Data Connector to be created.
         * 
         * @return builder
         * 
         */
        public Builder logAnalyticsWorkspaceId(String logAnalyticsWorkspaceId) {
            return logAnalyticsWorkspaceId(Output.of(logAnalyticsWorkspaceId));
        }

        /**
         * @param lookbackDate The lookback date for the TAXII server in RFC3339. Defaults to `1970-01-01T00:00:00Z`.
         * 
         * @return builder
         * 
         */
        public Builder lookbackDate(@Nullable Output lookbackDate) {
            $.lookbackDate = lookbackDate;
            return this;
        }

        /**
         * @param lookbackDate The lookback date for the TAXII server in RFC3339. Defaults to `1970-01-01T00:00:00Z`.
         * 
         * @return builder
         * 
         */
        public Builder lookbackDate(String lookbackDate) {
            return lookbackDate(Output.of(lookbackDate));
        }

        /**
         * @param name The name which should be used for this Threat Intelligence TAXII Data Connector. Changing this forces a new Threat Intelligence TAXII Data Connector to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name The name which should be used for this Threat Intelligence TAXII Data Connector. Changing this forces a new Threat Intelligence TAXII Data Connector to be created.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param password The password for the TAXII server.
         * 
         * @return builder
         * 
         */
        public Builder password(@Nullable Output password) {
            $.password = password;
            return this;
        }

        /**
         * @param password The password for the TAXII server.
         * 
         * @return builder
         * 
         */
        public Builder password(String password) {
            return password(Output.of(password));
        }

        /**
         * @param pollingFrequency The polling frequency for the TAXII server. Possible values are `OnceAMinute`, `OnceAnHour` and `OnceADay`. Defaults to `OnceAnHour`.
         * 
         * @return builder
         * 
         */
        public Builder pollingFrequency(@Nullable Output pollingFrequency) {
            $.pollingFrequency = pollingFrequency;
            return this;
        }

        /**
         * @param pollingFrequency The polling frequency for the TAXII server. Possible values are `OnceAMinute`, `OnceAnHour` and `OnceADay`. Defaults to `OnceAnHour`.
         * 
         * @return builder
         * 
         */
        public Builder pollingFrequency(String pollingFrequency) {
            return pollingFrequency(Output.of(pollingFrequency));
        }

        /**
         * @param tenantId The ID of the tenant that this Threat Intelligence TAXII Data Connector connects to. Changing this forces a new Threat Intelligence TAXII Data Connector to be created.
         * 
         * > **NOTE** Currently, only the same tenant as the running account is allowed. Cross-tenant scenario is not supported yet.
         * 
         * @return builder
         * 
         */
        public Builder tenantId(@Nullable Output tenantId) {
            $.tenantId = tenantId;
            return this;
        }

        /**
         * @param tenantId The ID of the tenant that this Threat Intelligence TAXII Data Connector connects to. Changing this forces a new Threat Intelligence TAXII Data Connector to be created.
         * 
         * > **NOTE** Currently, only the same tenant as the running account is allowed. Cross-tenant scenario is not supported yet.
         * 
         * @return builder
         * 
         */
        public Builder tenantId(String tenantId) {
            return tenantId(Output.of(tenantId));
        }

        /**
         * @param userName The user name for the TAXII server.
         * 
         * @return builder
         * 
         */
        public Builder userName(@Nullable Output userName) {
            $.userName = userName;
            return this;
        }

        /**
         * @param userName The user name for the TAXII server.
         * 
         * @return builder
         * 
         */
        public Builder userName(String userName) {
            return userName(Output.of(userName));
        }

        public DataConnectorThreatIntelligenceTaxiiArgs build() {
            if ($.apiRootUrl == null) {
                throw new MissingRequiredPropertyException("DataConnectorThreatIntelligenceTaxiiArgs", "apiRootUrl");
            }
            if ($.collectionId == null) {
                throw new MissingRequiredPropertyException("DataConnectorThreatIntelligenceTaxiiArgs", "collectionId");
            }
            if ($.displayName == null) {
                throw new MissingRequiredPropertyException("DataConnectorThreatIntelligenceTaxiiArgs", "displayName");
            }
            if ($.logAnalyticsWorkspaceId == null) {
                throw new MissingRequiredPropertyException("DataConnectorThreatIntelligenceTaxiiArgs", "logAnalyticsWorkspaceId");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy