UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

189 lines (188 loc) 7.18 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Represents Anomaly Security ML Analytics Settings * * Uses Azure REST API version 2024-09-01. In version 2.x of the Azure Native provider, it used API version 2023-02-01. */ export declare class AnomalySecurityMLAnalyticsSettings extends pulumi.CustomResource { /** * Get an existing AnomalySecurityMLAnalyticsSettings 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): AnomalySecurityMLAnalyticsSettings; /** * Returns true if the given object is an instance of AnomalySecurityMLAnalyticsSettings. 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 AnomalySecurityMLAnalyticsSettings; /** * The anomaly settings version of the Anomaly security ml analytics settings that dictates whether job version gets updated or not. */ readonly anomalySettingsVersion: pulumi.Output<number | undefined>; /** * The anomaly version of the AnomalySecurityMLAnalyticsSettings. */ readonly anomalyVersion: pulumi.Output<string>; /** * The Azure API version of the resource. */ readonly azureApiVersion: pulumi.Output<string>; /** * The customizable observations of the AnomalySecurityMLAnalyticsSettings. */ readonly customizableObservations: pulumi.Output<any | undefined>; /** * The description of the SecurityMLAnalyticsSettings. */ readonly description: pulumi.Output<string | undefined>; /** * The display name for settings created by this SecurityMLAnalyticsSettings. */ readonly displayName: pulumi.Output<string>; /** * Determines whether this settings is enabled or disabled. */ readonly enabled: pulumi.Output<boolean>; /** * Etag of the azure resource */ readonly etag: pulumi.Output<string | undefined>; /** * The frequency that this SecurityMLAnalyticsSettings will be run. */ readonly frequency: pulumi.Output<string>; /** * Determines whether this anomaly security ml analytics settings is a default settings */ readonly isDefaultSettings: pulumi.Output<boolean>; /** * The kind of security ML analytics settings * Expected value is 'Anomaly'. */ readonly kind: pulumi.Output<"Anomaly">; /** * The last time that this SecurityMLAnalyticsSettings has been modified. */ readonly lastModifiedUtc: pulumi.Output<string>; /** * The name of the resource */ readonly name: pulumi.Output<string>; /** * The required data sources for this SecurityMLAnalyticsSettings */ readonly requiredDataConnectors: pulumi.Output<outputs.securityinsights.SecurityMLAnalyticsSettingsDataSourceResponse[] | undefined>; /** * The anomaly settings definition Id */ readonly settingsDefinitionId: pulumi.Output<string | undefined>; /** * The anomaly SecurityMLAnalyticsSettings status */ readonly settingsStatus: pulumi.Output<string>; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: pulumi.Output<outputs.securityinsights.SystemDataResponse>; /** * The tactics of the SecurityMLAnalyticsSettings */ readonly tactics: pulumi.Output<string[] | undefined>; /** * The techniques of the SecurityMLAnalyticsSettings */ readonly techniques: pulumi.Output<string[] | undefined>; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: pulumi.Output<string>; /** * Create a AnomalySecurityMLAnalyticsSettings 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: AnomalySecurityMLAnalyticsSettingsArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a AnomalySecurityMLAnalyticsSettings resource. */ export interface AnomalySecurityMLAnalyticsSettingsArgs { /** * The anomaly settings version of the Anomaly security ml analytics settings that dictates whether job version gets updated or not. */ anomalySettingsVersion?: pulumi.Input<number>; /** * The anomaly version of the AnomalySecurityMLAnalyticsSettings. */ anomalyVersion: pulumi.Input<string>; /** * The customizable observations of the AnomalySecurityMLAnalyticsSettings. */ customizableObservations?: any; /** * The description of the SecurityMLAnalyticsSettings. */ description?: pulumi.Input<string>; /** * The display name for settings created by this SecurityMLAnalyticsSettings. */ displayName: pulumi.Input<string>; /** * Determines whether this settings is enabled or disabled. */ enabled: pulumi.Input<boolean>; /** * The frequency that this SecurityMLAnalyticsSettings will be run. */ frequency: pulumi.Input<string>; /** * Determines whether this anomaly security ml analytics settings is a default settings */ isDefaultSettings: pulumi.Input<boolean>; /** * The kind of security ML analytics settings * Expected value is 'Anomaly'. */ kind: pulumi.Input<"Anomaly">; /** * The required data sources for this SecurityMLAnalyticsSettings */ requiredDataConnectors?: pulumi.Input<pulumi.Input<inputs.securityinsights.SecurityMLAnalyticsSettingsDataSourceArgs>[]>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * The anomaly settings definition Id */ settingsDefinitionId?: pulumi.Input<string>; /** * Security ML Analytics Settings resource name */ settingsResourceName?: pulumi.Input<string>; /** * The anomaly SecurityMLAnalyticsSettings status */ settingsStatus: pulumi.Input<string | enums.securityinsights.SettingsStatus>; /** * The tactics of the SecurityMLAnalyticsSettings */ tactics?: pulumi.Input<pulumi.Input<string | enums.securityinsights.AttackTactic>[]>; /** * The techniques of the SecurityMLAnalyticsSettings */ techniques?: pulumi.Input<pulumi.Input<string>[]>; /** * The name of the workspace. */ workspaceName: pulumi.Input<string>; }