azure-native.securityinsights.AnomalySecurityMLAnalyticsSettings
Explore with Pulumi AI
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.
Create AnomalySecurityMLAnalyticsSettings Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AnomalySecurityMLAnalyticsSettings(name: string, args: AnomalySecurityMLAnalyticsSettingsArgs, opts?: CustomResourceOptions);
@overload
def AnomalySecurityMLAnalyticsSettings(resource_name: str,
args: AnomalySecurityMLAnalyticsSettingsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AnomalySecurityMLAnalyticsSettings(resource_name: str,
opts: Optional[ResourceOptions] = None,
settings_status: Optional[Union[str, SettingsStatus]] = None,
workspace_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
display_name: Optional[str] = None,
enabled: Optional[bool] = None,
frequency: Optional[str] = None,
is_default_settings: Optional[bool] = None,
anomaly_version: Optional[str] = None,
required_data_connectors: Optional[Sequence[SecurityMLAnalyticsSettingsDataSourceArgs]] = None,
anomaly_settings_version: Optional[int] = None,
settings_definition_id: Optional[str] = None,
settings_resource_name: Optional[str] = None,
description: Optional[str] = None,
tactics: Optional[Sequence[Union[str, AttackTactic]]] = None,
techniques: Optional[Sequence[str]] = None,
customizable_observations: Optional[Any] = None)
func NewAnomalySecurityMLAnalyticsSettings(ctx *Context, name string, args AnomalySecurityMLAnalyticsSettingsArgs, opts ...ResourceOption) (*AnomalySecurityMLAnalyticsSettings, error)
public AnomalySecurityMLAnalyticsSettings(string name, AnomalySecurityMLAnalyticsSettingsArgs args, CustomResourceOptions? opts = null)
public AnomalySecurityMLAnalyticsSettings(String name, AnomalySecurityMLAnalyticsSettingsArgs args)
public AnomalySecurityMLAnalyticsSettings(String name, AnomalySecurityMLAnalyticsSettingsArgs args, CustomResourceOptions options)
type: azure-native:securityinsights:AnomalySecurityMLAnalyticsSettings
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. AnomalySecurityMLAnalyticsSettingsArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. AnomalySecurityMLAnalyticsSettingsArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. AnomalySecurityMLAnalyticsSettingsArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. AnomalySecurityMLAnalyticsSettingsArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. AnomalySecurityMLAnalyticsSettingsArgs - The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var anomalySecurityMLAnalyticsSettingsResource = new AzureNative.SecurityInsights.AnomalySecurityMLAnalyticsSettings("anomalySecurityMLAnalyticsSettingsResource", new()
{
Kind = "string",
SettingsStatus = "string",
WorkspaceName = "string",
ResourceGroupName = "string",
DisplayName = "string",
Enabled = false,
Frequency = "string",
IsDefaultSettings = false,
AnomalyVersion = "string",
RequiredDataConnectors = new[]
{
new AzureNative.SecurityInsights.Inputs.SecurityMLAnalyticsSettingsDataSourceArgs
{
ConnectorId = "string",
DataTypes = new[]
{
"string",
},
},
},
AnomalySettingsVersion = 0,
SettingsDefinitionId = "string",
SettingsResourceName = "string",
Description = "string",
Tactics = new[]
{
"string",
},
Techniques = new[]
{
"string",
},
CustomizableObservations = "any",
});
example, err := securityinsights.NewAnomalySecurityMLAnalyticsSettings(ctx, "anomalySecurityMLAnalyticsSettingsResource", &securityinsights.AnomalySecurityMLAnalyticsSettingsArgs{
Kind: pulumi.String("string"),
SettingsStatus: pulumi.String("string"),
WorkspaceName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
DisplayName: pulumi.String("string"),
Enabled: pulumi.Bool(false),
Frequency: pulumi.String("string"),
IsDefaultSettings: pulumi.Bool(false),
AnomalyVersion: pulumi.String("string"),
RequiredDataConnectors: securityinsights.SecurityMLAnalyticsSettingsDataSourceArray{
&securityinsights.SecurityMLAnalyticsSettingsDataSourceArgs{
ConnectorId: pulumi.String("string"),
DataTypes: pulumi.StringArray{
pulumi.String("string"),
},
},
},
AnomalySettingsVersion: pulumi.Int(0),
SettingsDefinitionId: pulumi.String("string"),
SettingsResourceName: pulumi.String("string"),
Description: pulumi.String("string"),
Tactics: pulumi.StringArray{
pulumi.String("string"),
},
Techniques: pulumi.StringArray{
pulumi.String("string"),
},
CustomizableObservations: pulumi.Any("any"),
})
var anomalySecurityMLAnalyticsSettingsResource = new AnomalySecurityMLAnalyticsSettings("anomalySecurityMLAnalyticsSettingsResource", AnomalySecurityMLAnalyticsSettingsArgs.builder()
.kind("string")
.settingsStatus("string")
.workspaceName("string")
.resourceGroupName("string")
.displayName("string")
.enabled(false)
.frequency("string")
.isDefaultSettings(false)
.anomalyVersion("string")
.requiredDataConnectors(SecurityMLAnalyticsSettingsDataSourceArgs.builder()
.connectorId("string")
.dataTypes("string")
.build())
.anomalySettingsVersion(0)
.settingsDefinitionId("string")
.settingsResourceName("string")
.description("string")
.tactics("string")
.techniques("string")
.customizableObservations("any")
.build());
anomaly_security_ml_analytics_settings_resource = azure_native.securityinsights.AnomalySecurityMLAnalyticsSettings("anomalySecurityMLAnalyticsSettingsResource",
kind="string",
settings_status="string",
workspace_name="string",
resource_group_name="string",
display_name="string",
enabled=False,
frequency="string",
is_default_settings=False,
anomaly_version="string",
required_data_connectors=[{
"connector_id": "string",
"data_types": ["string"],
}],
anomaly_settings_version=0,
settings_definition_id="string",
settings_resource_name="string",
description="string",
tactics=["string"],
techniques=["string"],
customizable_observations="any")
const anomalySecurityMLAnalyticsSettingsResource = new azure_native.securityinsights.AnomalySecurityMLAnalyticsSettings("anomalySecurityMLAnalyticsSettingsResource", {
kind: "string",
settingsStatus: "string",
workspaceName: "string",
resourceGroupName: "string",
displayName: "string",
enabled: false,
frequency: "string",
isDefaultSettings: false,
anomalyVersion: "string",
requiredDataConnectors: [{
connectorId: "string",
dataTypes: ["string"],
}],
anomalySettingsVersion: 0,
settingsDefinitionId: "string",
settingsResourceName: "string",
description: "string",
tactics: ["string"],
techniques: ["string"],
customizableObservations: "any",
});
type: azure-native:securityinsights:AnomalySecurityMLAnalyticsSettings
properties:
anomalySettingsVersion: 0
anomalyVersion: string
customizableObservations: any
description: string
displayName: string
enabled: false
frequency: string
isDefaultSettings: false
kind: string
requiredDataConnectors:
- connectorId: string
dataTypes:
- string
resourceGroupName: string
settingsDefinitionId: string
settingsResourceName: string
settingsStatus: string
tactics:
- string
techniques:
- string
workspaceName: string
AnomalySecurityMLAnalyticsSettings Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The AnomalySecurityMLAnalyticsSettings resource accepts the following input properties:
- Anomaly
Version This property is required. string - The anomaly version of the AnomalySecurityMLAnalyticsSettings.
- Display
Name This property is required. string - The display name for settings created by this SecurityMLAnalyticsSettings.
- Enabled
This property is required. bool - Determines whether this settings is enabled or disabled.
- Frequency
This property is required. string - The frequency that this SecurityMLAnalyticsSettings will be run.
- Is
Default Settings This property is required. bool - Determines whether this anomaly security ml analytics settings is a default settings
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- Settings
Status This property is required. string | Pulumi.Azure Native. Security Insights. Settings Status - The anomaly SecurityMLAnalyticsSettings status
- Workspace
Name This property is required. Changes to this property will trigger replacement.
- The name of the workspace.
- Anomaly
Settings intVersion - The anomaly settings version of the Anomaly security ml analytics settings that dictates whether job version gets updated or not.
- Customizable
Observations object - The customizable observations of the AnomalySecurityMLAnalyticsSettings.
- Description string
- The description of the SecurityMLAnalyticsSettings.
- Required
Data List<Pulumi.Connectors Azure Native. Security Insights. Inputs. Security MLAnalytics Settings Data Source> - The required data sources for this SecurityMLAnalyticsSettings
- Settings
Definition stringId - The anomaly settings definition Id
- Settings
Resource Name Changes to this property will trigger replacement.
- Security ML Analytics Settings resource name
- Tactics
List<Union<string, Pulumi.
Azure Native. Security Insights. Attack Tactic>> - The tactics of the SecurityMLAnalyticsSettings
- Techniques List<string>
- The techniques of the SecurityMLAnalyticsSettings
- Anomaly
Version This property is required. string - The anomaly version of the AnomalySecurityMLAnalyticsSettings.
- Display
Name This property is required. string - The display name for settings created by this SecurityMLAnalyticsSettings.
- Enabled
This property is required. bool - Determines whether this settings is enabled or disabled.
- Frequency
This property is required. string - The frequency that this SecurityMLAnalyticsSettings will be run.
- Is
Default Settings This property is required. bool - Determines whether this anomaly security ml analytics settings is a default settings
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- Settings
Status This property is required. string | SettingsStatus - The anomaly SecurityMLAnalyticsSettings status
- Workspace
Name This property is required. Changes to this property will trigger replacement.
- The name of the workspace.
- Anomaly
Settings intVersion - The anomaly settings version of the Anomaly security ml analytics settings that dictates whether job version gets updated or not.
- Customizable
Observations interface{} - The customizable observations of the AnomalySecurityMLAnalyticsSettings.
- Description string
- The description of the SecurityMLAnalyticsSettings.
- Required
Data []SecurityConnectors MLAnalytics Settings Data Source Args - The required data sources for this SecurityMLAnalyticsSettings
- Settings
Definition stringId - The anomaly settings definition Id
- Settings
Resource Name Changes to this property will trigger replacement.
- Security ML Analytics Settings resource name
- Tactics []string
- The tactics of the SecurityMLAnalyticsSettings
- Techniques []string
- The techniques of the SecurityMLAnalyticsSettings
- anomaly
Version This property is required. String - The anomaly version of the AnomalySecurityMLAnalyticsSettings.
- display
Name This property is required. String - The display name for settings created by this SecurityMLAnalyticsSettings.
- enabled
This property is required. Boolean - Determines whether this settings is enabled or disabled.
- frequency
This property is required. String - The frequency that this SecurityMLAnalyticsSettings will be run.
- is
Default Settings This property is required. Boolean - Determines whether this anomaly security ml analytics settings is a default settings
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- settings
Status This property is required. String | SettingsStatus - The anomaly SecurityMLAnalyticsSettings status
- workspace
Name This property is required. Changes to this property will trigger replacement.
- The name of the workspace.
- anomaly
Settings IntegerVersion - The anomaly settings version of the Anomaly security ml analytics settings that dictates whether job version gets updated or not.
- customizable
Observations Object - The customizable observations of the AnomalySecurityMLAnalyticsSettings.
- description String
- The description of the SecurityMLAnalyticsSettings.
- required
Data List<SecurityConnectors MLAnalytics Settings Data Source> - The required data sources for this SecurityMLAnalyticsSettings
- settings
Definition StringId - The anomaly settings definition Id
- settings
Resource Name Changes to this property will trigger replacement.
- Security ML Analytics Settings resource name
- tactics
List<Either<String,Attack
Tactic>> - The tactics of the SecurityMLAnalyticsSettings
- techniques List<String>
- The techniques of the SecurityMLAnalyticsSettings
- anomaly
Version This property is required. string - The anomaly version of the AnomalySecurityMLAnalyticsSettings.
- display
Name This property is required. string - The display name for settings created by this SecurityMLAnalyticsSettings.
- enabled
This property is required. boolean - Determines whether this settings is enabled or disabled.
- frequency
This property is required. string - The frequency that this SecurityMLAnalyticsSettings will be run.
- is
Default Settings This property is required. boolean - Determines whether this anomaly security ml analytics settings is a default settings
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- settings
Status This property is required. string | SettingsStatus - The anomaly SecurityMLAnalyticsSettings status
- workspace
Name This property is required. Changes to this property will trigger replacement.
- The name of the workspace.
- anomaly
Settings numberVersion - The anomaly settings version of the Anomaly security ml analytics settings that dictates whether job version gets updated or not.
- customizable
Observations any - The customizable observations of the AnomalySecurityMLAnalyticsSettings.
- description string
- The description of the SecurityMLAnalyticsSettings.
- required
Data SecurityConnectors MLAnalytics Settings Data Source[] - The required data sources for this SecurityMLAnalyticsSettings
- settings
Definition stringId - The anomaly settings definition Id
- settings
Resource Name Changes to this property will trigger replacement.
- Security ML Analytics Settings resource name
- tactics
(string | Attack
Tactic)[] - The tactics of the SecurityMLAnalyticsSettings
- techniques string[]
- The techniques of the SecurityMLAnalyticsSettings
- anomaly_
version This property is required. str - The anomaly version of the AnomalySecurityMLAnalyticsSettings.
- display_
name This property is required. str - The display name for settings created by this SecurityMLAnalyticsSettings.
- enabled
This property is required. bool - Determines whether this settings is enabled or disabled.
- frequency
This property is required. str - The frequency that this SecurityMLAnalyticsSettings will be run.
- is_
default_ settings This property is required. bool - Determines whether this anomaly security ml analytics settings is a default settings
- resource_
group_ name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- settings_
status This property is required. str | SettingsStatus - The anomaly SecurityMLAnalyticsSettings status
- workspace_
name This property is required. Changes to this property will trigger replacement.
- The name of the workspace.
- anomaly_
settings_ intversion - The anomaly settings version of the Anomaly security ml analytics settings that dictates whether job version gets updated or not.
- customizable_
observations Any - The customizable observations of the AnomalySecurityMLAnalyticsSettings.
- description str
- The description of the SecurityMLAnalyticsSettings.
- required_
data_ Sequence[Securityconnectors MLAnalytics Settings Data Source Args] - The required data sources for this SecurityMLAnalyticsSettings
- settings_
definition_ strid - The anomaly settings definition Id
- settings_
resource_ name Changes to this property will trigger replacement.
- Security ML Analytics Settings resource name
- tactics
Sequence[Union[str, Attack
Tactic]] - The tactics of the SecurityMLAnalyticsSettings
- techniques Sequence[str]
- The techniques of the SecurityMLAnalyticsSettings
- anomaly
Version This property is required. String - The anomaly version of the AnomalySecurityMLAnalyticsSettings.
- display
Name This property is required. String - The display name for settings created by this SecurityMLAnalyticsSettings.
- enabled
This property is required. Boolean - Determines whether this settings is enabled or disabled.
- frequency
This property is required. String - The frequency that this SecurityMLAnalyticsSettings will be run.
- is
Default Settings This property is required. Boolean - Determines whether this anomaly security ml analytics settings is a default settings
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group. The name is case insensitive.
- settings
Status This property is required. String | "Production" | "Flighting" - The anomaly SecurityMLAnalyticsSettings status
- workspace
Name This property is required. Changes to this property will trigger replacement.
- The name of the workspace.
- anomaly
Settings NumberVersion - The anomaly settings version of the Anomaly security ml analytics settings that dictates whether job version gets updated or not.
- customizable
Observations Any - The customizable observations of the AnomalySecurityMLAnalyticsSettings.
- description String
- The description of the SecurityMLAnalyticsSettings.
- required
Data List<Property Map>Connectors - The required data sources for this SecurityMLAnalyticsSettings
- settings
Definition StringId - The anomaly settings definition Id
- settings
Resource Name Changes to this property will trigger replacement.
- Security ML Analytics Settings resource name
- tactics
List<String | "Reconnaissance" | "Resource
Development" | "Initial Access" | "Execution" | "Persistence" | "Privilege Escalation" | "Defense Evasion" | "Credential Access" | "Discovery" | "Lateral Movement" | "Collection" | "Exfiltration" | "Command And Control" | "Impact" | "Pre Attack" | "Impair Process Control" | "Inhibit Response Function"> - The tactics of the SecurityMLAnalyticsSettings
- techniques List<String>
- The techniques of the SecurityMLAnalyticsSettings
Outputs
All input properties are implicitly available as output properties. Additionally, the AnomalySecurityMLAnalyticsSettings resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified stringUtc - The last time that this SecurityMLAnalyticsSettings has been modified.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Security Insights. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Etag string
- Etag of the azure resource
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified stringUtc - The last time that this SecurityMLAnalyticsSettings has been modified.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Etag string
- Etag of the azure resource
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified StringUtc - The last time that this SecurityMLAnalyticsSettings has been modified.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag String
- Etag of the azure resource
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Modified stringUtc - The last time that this SecurityMLAnalyticsSettings has been modified.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag string
- Etag of the azure resource
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
modified_ strutc - The last time that this SecurityMLAnalyticsSettings has been modified.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag str
- Etag of the azure resource
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified StringUtc - The last time that this SecurityMLAnalyticsSettings has been modified.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag String
- Etag of the azure resource
Supporting Types
AttackTactic, AttackTacticArgs
- Reconnaissance
- Reconnaissance
- Resource
Development - ResourceDevelopment
- Initial
Access - InitialAccess
- Execution
- Execution
- Persistence
- Persistence
- Privilege
Escalation - PrivilegeEscalation
- Defense
Evasion - DefenseEvasion
- Credential
Access - CredentialAccess
- Discovery
- Discovery
- Lateral
Movement - LateralMovement
- Collection
- Collection
- Exfiltration
- Exfiltration
- Command
And Control - CommandAndControl
- Impact
- Impact
- Pre
Attack - PreAttack
- Impair
Process Control - ImpairProcessControl
- Inhibit
Response Function - InhibitResponseFunction
- Attack
Tactic Reconnaissance - Reconnaissance
- Attack
Tactic Resource Development - ResourceDevelopment
- Attack
Tactic Initial Access - InitialAccess
- Attack
Tactic Execution - Execution
- Attack
Tactic Persistence - Persistence
- Attack
Tactic Privilege Escalation - PrivilegeEscalation
- Attack
Tactic Defense Evasion - DefenseEvasion
- Attack
Tactic Credential Access - CredentialAccess
- Attack
Tactic Discovery - Discovery
- Attack
Tactic Lateral Movement - LateralMovement
- Attack
Tactic Collection - Collection
- Attack
Tactic Exfiltration - Exfiltration
- Attack
Tactic Command And Control - CommandAndControl
- Attack
Tactic Impact - Impact
- Attack
Tactic Pre Attack - PreAttack
- Attack
Tactic Impair Process Control - ImpairProcessControl
- Attack
Tactic Inhibit Response Function - InhibitResponseFunction
- Reconnaissance
- Reconnaissance
- Resource
Development - ResourceDevelopment
- Initial
Access - InitialAccess
- Execution
- Execution
- Persistence
- Persistence
- Privilege
Escalation - PrivilegeEscalation
- Defense
Evasion - DefenseEvasion
- Credential
Access - CredentialAccess
- Discovery
- Discovery
- Lateral
Movement - LateralMovement
- Collection
- Collection
- Exfiltration
- Exfiltration
- Command
And Control - CommandAndControl
- Impact
- Impact
- Pre
Attack - PreAttack
- Impair
Process Control - ImpairProcessControl
- Inhibit
Response Function - InhibitResponseFunction
- Reconnaissance
- Reconnaissance
- Resource
Development - ResourceDevelopment
- Initial
Access - InitialAccess
- Execution
- Execution
- Persistence
- Persistence
- Privilege
Escalation - PrivilegeEscalation
- Defense
Evasion - DefenseEvasion
- Credential
Access - CredentialAccess
- Discovery
- Discovery
- Lateral
Movement - LateralMovement
- Collection
- Collection
- Exfiltration
- Exfiltration
- Command
And Control - CommandAndControl
- Impact
- Impact
- Pre
Attack - PreAttack
- Impair
Process Control - ImpairProcessControl
- Inhibit
Response Function - InhibitResponseFunction
- RECONNAISSANCE
- Reconnaissance
- RESOURCE_DEVELOPMENT
- ResourceDevelopment
- INITIAL_ACCESS
- InitialAccess
- EXECUTION
- Execution
- PERSISTENCE
- Persistence
- PRIVILEGE_ESCALATION
- PrivilegeEscalation
- DEFENSE_EVASION
- DefenseEvasion
- CREDENTIAL_ACCESS
- CredentialAccess
- DISCOVERY
- Discovery
- LATERAL_MOVEMENT
- LateralMovement
- COLLECTION
- Collection
- EXFILTRATION
- Exfiltration
- COMMAND_AND_CONTROL
- CommandAndControl
- IMPACT
- Impact
- PRE_ATTACK
- PreAttack
- IMPAIR_PROCESS_CONTROL
- ImpairProcessControl
- INHIBIT_RESPONSE_FUNCTION
- InhibitResponseFunction
- "Reconnaissance"
- Reconnaissance
- "Resource
Development" - ResourceDevelopment
- "Initial
Access" - InitialAccess
- "Execution"
- Execution
- "Persistence"
- Persistence
- "Privilege
Escalation" - PrivilegeEscalation
- "Defense
Evasion" - DefenseEvasion
- "Credential
Access" - CredentialAccess
- "Discovery"
- Discovery
- "Lateral
Movement" - LateralMovement
- "Collection"
- Collection
- "Exfiltration"
- Exfiltration
- "Command
And Control" - CommandAndControl
- "Impact"
- Impact
- "Pre
Attack" - PreAttack
- "Impair
Process Control" - ImpairProcessControl
- "Inhibit
Response Function" - InhibitResponseFunction
SecurityMLAnalyticsSettingsDataSource, SecurityMLAnalyticsSettingsDataSourceArgs
- Connector
Id string - The connector id that provides the following data types
- Data
Types List<string> - The data types used by the security ml analytics settings
- Connector
Id string - The connector id that provides the following data types
- Data
Types []string - The data types used by the security ml analytics settings
- connector
Id String - The connector id that provides the following data types
- data
Types List<String> - The data types used by the security ml analytics settings
- connector
Id string - The connector id that provides the following data types
- data
Types string[] - The data types used by the security ml analytics settings
- connector_
id str - The connector id that provides the following data types
- data_
types Sequence[str] - The data types used by the security ml analytics settings
- connector
Id String - The connector id that provides the following data types
- data
Types List<String> - The data types used by the security ml analytics settings
SecurityMLAnalyticsSettingsDataSourceResponse, SecurityMLAnalyticsSettingsDataSourceResponseArgs
- Connector
Id string - The connector id that provides the following data types
- Data
Types List<string> - The data types used by the security ml analytics settings
- Connector
Id string - The connector id that provides the following data types
- Data
Types []string - The data types used by the security ml analytics settings
- connector
Id String - The connector id that provides the following data types
- data
Types List<String> - The data types used by the security ml analytics settings
- connector
Id string - The connector id that provides the following data types
- data
Types string[] - The data types used by the security ml analytics settings
- connector_
id str - The connector id that provides the following data types
- data_
types Sequence[str] - The data types used by the security ml analytics settings
- connector
Id String - The connector id that provides the following data types
- data
Types List<String> - The data types used by the security ml analytics settings
SettingsStatus, SettingsStatusArgs
- Production
- ProductionAnomaly settings status in Production mode
- Flighting
- FlightingAnomaly settings status in Flighting mode
- Settings
Status Production - ProductionAnomaly settings status in Production mode
- Settings
Status Flighting - FlightingAnomaly settings status in Flighting mode
- Production
- ProductionAnomaly settings status in Production mode
- Flighting
- FlightingAnomaly settings status in Flighting mode
- Production
- ProductionAnomaly settings status in Production mode
- Flighting
- FlightingAnomaly settings status in Flighting mode
- PRODUCTION
- ProductionAnomaly settings status in Production mode
- FLIGHTING
- FlightingAnomaly settings status in Flighting mode
- "Production"
- ProductionAnomaly settings status in Production mode
- "Flighting"
- FlightingAnomaly settings status in Flighting mode
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:securityinsights:AnomalySecurityMLAnalyticsSettings f209187f-1d17-4431-94af-c141bf5f23db /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/securityMLAnalyticsSettings/{settingsResourceName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0