import * as pulumi from "@pulumi/pulumi"; /** * Manages an Threat Intelligence TAXII Data Connector. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-rg", * location: "West Europe", * }); * const exampleAnalyticsWorkspace = new azure.operationalinsights.AnalyticsWorkspace("example", { * name: "example-workspace", * location: example.location, * resourceGroupName: example.name, * sku: "PerGB2018", * }); * const exampleLogAnalyticsWorkspaceOnboarding = new azure.sentinel.LogAnalyticsWorkspaceOnboarding("example", {workspaceId: exampleAnalyticsWorkspace.id}); * const exampleDataConnectorThreatIntelligenceTaxii = new azure.sentinel.DataConnectorThreatIntelligenceTaxii("example", { * name: "example", * logAnalyticsWorkspaceId: exampleLogAnalyticsWorkspaceOnboarding.workspaceId, * displayName: "example", * apiRootUrl: "https://foo/taxii2/api2/", * collectionId: "someid", * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.OperationalInsights` - 2022-10-01 * * ## Import * * Threat Intelligence TAXII Data Connectors can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:sentinel/dataConnectorThreatIntelligenceTaxii:DataConnectorThreatIntelligenceTaxii example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.OperationalInsights/workspaces/workspace1/providers/Microsoft.SecurityInsights/dataConnectors/dc1 * ``` */ export declare class DataConnectorThreatIntelligenceTaxii extends pulumi.CustomResource { /** * Get an existing DataConnectorThreatIntelligenceTaxii resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: DataConnectorThreatIntelligenceTaxiiState, opts?: pulumi.CustomResourceOptions): DataConnectorThreatIntelligenceTaxii; /** * Returns true if the given object is an instance of DataConnectorThreatIntelligenceTaxii. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is DataConnectorThreatIntelligenceTaxii; /** * The API root URI of the TAXII server. */ readonly apiRootUrl: pulumi.Output; /** * The collection ID of the TAXII server. */ readonly collectionId: pulumi.Output; /** * The friendly name which should be used for this Threat Intelligence TAXII Data Connector. */ readonly displayName: pulumi.Output; /** * 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. */ readonly logAnalyticsWorkspaceId: pulumi.Output; /** * The lookback date for the TAXII server in RFC3339. Defaults to `1970-01-01T00:00:00Z`. */ readonly lookbackDate: pulumi.Output; /** * 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. */ readonly name: pulumi.Output; /** * The password for the TAXII server. */ readonly password: pulumi.Output; /** * The polling frequency for the TAXII server. Possible values are `OnceAMinute`, `OnceAnHour` and `OnceADay`. Defaults to `OnceAnHour`. */ readonly pollingFrequency: pulumi.Output; /** * 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. */ readonly tenantId: pulumi.Output; /** * The user name for the TAXII server. */ readonly userName: pulumi.Output; /** * Create a DataConnectorThreatIntelligenceTaxii resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: DataConnectorThreatIntelligenceTaxiiArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DataConnectorThreatIntelligenceTaxii resources. */ export interface DataConnectorThreatIntelligenceTaxiiState { /** * The API root URI of the TAXII server. */ apiRootUrl?: pulumi.Input; /** * The collection ID of the TAXII server. */ collectionId?: pulumi.Input; /** * The friendly name which should be used for this Threat Intelligence TAXII Data Connector. */ displayName?: pulumi.Input; /** * 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. */ logAnalyticsWorkspaceId?: pulumi.Input; /** * The lookback date for the TAXII server in RFC3339. Defaults to `1970-01-01T00:00:00Z`. */ lookbackDate?: pulumi.Input; /** * 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. */ name?: pulumi.Input; /** * The password for the TAXII server. */ password?: pulumi.Input; /** * The polling frequency for the TAXII server. Possible values are `OnceAMinute`, `OnceAnHour` and `OnceADay`. Defaults to `OnceAnHour`. */ pollingFrequency?: pulumi.Input; /** * 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. */ tenantId?: pulumi.Input; /** * The user name for the TAXII server. */ userName?: pulumi.Input; } /** * The set of arguments for constructing a DataConnectorThreatIntelligenceTaxii resource. */ export interface DataConnectorThreatIntelligenceTaxiiArgs { /** * The API root URI of the TAXII server. */ apiRootUrl: pulumi.Input; /** * The collection ID of the TAXII server. */ collectionId: pulumi.Input; /** * The friendly name which should be used for this Threat Intelligence TAXII Data Connector. */ displayName: pulumi.Input; /** * 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. */ logAnalyticsWorkspaceId: pulumi.Input; /** * The lookback date for the TAXII server in RFC3339. Defaults to `1970-01-01T00:00:00Z`. */ lookbackDate?: pulumi.Input; /** * 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. */ name?: pulumi.Input; /** * The password for the TAXII server. */ password?: pulumi.Input; /** * The polling frequency for the TAXII server. Possible values are `OnceAMinute`, `OnceAnHour` and `OnceADay`. Defaults to `OnceAnHour`. */ pollingFrequency?: pulumi.Input; /** * 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. */ tenantId?: pulumi.Input; /** * The user name for the TAXII server. */ userName?: pulumi.Input; }