1. Packages
  2. Azure Native
  3. API Docs
  4. securityinsights
  5. Bookmark
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.securityinsights.Bookmark

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

Represents a bookmark in Azure Security Insights.

Uses Azure REST API version 2024-09-01. In version 2.x of the Azure Native provider, it used API version 2023-02-01.

Other available API versions: 2023-02-01, 2023-03-01-preview, 2023-04-01-preview, 2023-05-01-preview, 2023-06-01-preview, 2023-07-01-preview, 2023-08-01-preview, 2023-09-01-preview, 2023-10-01-preview, 2023-11-01, 2023-12-01-preview, 2024-01-01-preview, 2024-03-01, 2024-04-01-preview, 2024-10-01-preview, 2025-01-01-preview, 2025-03-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native securityinsights [ApiVersion]. See the version guide for details.

Example Usage

Creates or updates a bookmark.

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var bookmark = new AzureNative.SecurityInsights.Bookmark("bookmark", new()
    {
        BookmarkId = "73e01a99-5cd7-4139-a149-9f2736ff2ab5",
        Created = "2019-01-01T13:15:30Z",
        CreatedBy = new AzureNative.SecurityInsights.Inputs.UserInfoArgs
        {
            ObjectId = "2046feea-040d-4a46-9e2b-91c2941bfa70",
        },
        DisplayName = "My bookmark",
        Labels = new[]
        {
            "Tag1",
            "Tag2",
        },
        Notes = "Found a suspicious activity",
        Query = "SecurityEvent | where TimeGenerated > ago(1d) and TimeGenerated < ago(2d)",
        QueryResult = "Security Event query result",
        ResourceGroupName = "myRg",
        Updated = "2019-01-01T13:15:30Z",
        UpdatedBy = new AzureNative.SecurityInsights.Inputs.UserInfoArgs
        {
            ObjectId = "2046feea-040d-4a46-9e2b-91c2941bfa70",
        },
        WorkspaceName = "myWorkspace",
    });

});
Copy
package main

import (
	securityinsights "github.com/pulumi/pulumi-azure-native-sdk/securityinsights/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := securityinsights.NewBookmark(ctx, "bookmark", &securityinsights.BookmarkArgs{
			BookmarkId: pulumi.String("73e01a99-5cd7-4139-a149-9f2736ff2ab5"),
			Created:    pulumi.String("2019-01-01T13:15:30Z"),
			CreatedBy: &securityinsights.UserInfoArgs{
				ObjectId: pulumi.String("2046feea-040d-4a46-9e2b-91c2941bfa70"),
			},
			DisplayName: pulumi.String("My bookmark"),
			Labels: pulumi.StringArray{
				pulumi.String("Tag1"),
				pulumi.String("Tag2"),
			},
			Notes:             pulumi.String("Found a suspicious activity"),
			Query:             pulumi.String("SecurityEvent | where TimeGenerated > ago(1d) and TimeGenerated < ago(2d)"),
			QueryResult:       pulumi.String("Security Event query result"),
			ResourceGroupName: pulumi.String("myRg"),
			Updated:           pulumi.String("2019-01-01T13:15:30Z"),
			UpdatedBy: &securityinsights.UserInfoArgs{
				ObjectId: pulumi.String("2046feea-040d-4a46-9e2b-91c2941bfa70"),
			},
			WorkspaceName: pulumi.String("myWorkspace"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.securityinsights.Bookmark;
import com.pulumi.azurenative.securityinsights.BookmarkArgs;
import com.pulumi.azurenative.securityinsights.inputs.UserInfoArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var bookmark = new Bookmark("bookmark", BookmarkArgs.builder()
            .bookmarkId("73e01a99-5cd7-4139-a149-9f2736ff2ab5")
            .created("2019-01-01T13:15:30Z")
            .createdBy(UserInfoArgs.builder()
                .objectId("2046feea-040d-4a46-9e2b-91c2941bfa70")
                .build())
            .displayName("My bookmark")
            .labels(            
                "Tag1",
                "Tag2")
            .notes("Found a suspicious activity")
            .query("SecurityEvent | where TimeGenerated > ago(1d) and TimeGenerated < ago(2d)")
            .queryResult("Security Event query result")
            .resourceGroupName("myRg")
            .updated("2019-01-01T13:15:30Z")
            .updatedBy(UserInfoArgs.builder()
                .objectId("2046feea-040d-4a46-9e2b-91c2941bfa70")
                .build())
            .workspaceName("myWorkspace")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const bookmark = new azure_native.securityinsights.Bookmark("bookmark", {
    bookmarkId: "73e01a99-5cd7-4139-a149-9f2736ff2ab5",
    created: "2019-01-01T13:15:30Z",
    createdBy: {
        objectId: "2046feea-040d-4a46-9e2b-91c2941bfa70",
    },
    displayName: "My bookmark",
    labels: [
        "Tag1",
        "Tag2",
    ],
    notes: "Found a suspicious activity",
    query: "SecurityEvent | where TimeGenerated > ago(1d) and TimeGenerated < ago(2d)",
    queryResult: "Security Event query result",
    resourceGroupName: "myRg",
    updated: "2019-01-01T13:15:30Z",
    updatedBy: {
        objectId: "2046feea-040d-4a46-9e2b-91c2941bfa70",
    },
    workspaceName: "myWorkspace",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

bookmark = azure_native.securityinsights.Bookmark("bookmark",
    bookmark_id="73e01a99-5cd7-4139-a149-9f2736ff2ab5",
    created="2019-01-01T13:15:30Z",
    created_by={
        "object_id": "2046feea-040d-4a46-9e2b-91c2941bfa70",
    },
    display_name="My bookmark",
    labels=[
        "Tag1",
        "Tag2",
    ],
    notes="Found a suspicious activity",
    query="SecurityEvent | where TimeGenerated > ago(1d) and TimeGenerated < ago(2d)",
    query_result="Security Event query result",
    resource_group_name="myRg",
    updated="2019-01-01T13:15:30Z",
    updated_by={
        "object_id": "2046feea-040d-4a46-9e2b-91c2941bfa70",
    },
    workspace_name="myWorkspace")
Copy
resources:
  bookmark:
    type: azure-native:securityinsights:Bookmark
    properties:
      bookmarkId: 73e01a99-5cd7-4139-a149-9f2736ff2ab5
      created: 2019-01-01T13:15:30Z
      createdBy:
        objectId: 2046feea-040d-4a46-9e2b-91c2941bfa70
      displayName: My bookmark
      labels:
        - Tag1
        - Tag2
      notes: Found a suspicious activity
      query: SecurityEvent | where TimeGenerated > ago(1d) and TimeGenerated < ago(2d)
      queryResult: Security Event query result
      resourceGroupName: myRg
      updated: 2019-01-01T13:15:30Z
      updatedBy:
        objectId: 2046feea-040d-4a46-9e2b-91c2941bfa70
      workspaceName: myWorkspace
Copy

Create Bookmark Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Bookmark(name: string, args: BookmarkArgs, opts?: CustomResourceOptions);
@overload
def Bookmark(resource_name: str,
             args: BookmarkArgs,
             opts: Optional[ResourceOptions] = None)

@overload
def Bookmark(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             resource_group_name: Optional[str] = None,
             query: Optional[str] = None,
             workspace_name: Optional[str] = None,
             display_name: Optional[str] = None,
             labels: Optional[Sequence[str]] = None,
             incident_info: Optional[IncidentInfoArgs] = None,
             created: Optional[str] = None,
             notes: Optional[str] = None,
             event_time: Optional[str] = None,
             query_end_time: Optional[str] = None,
             query_result: Optional[str] = None,
             query_start_time: Optional[str] = None,
             bookmark_id: Optional[str] = None,
             updated: Optional[str] = None,
             updated_by: Optional[UserInfoArgs] = None,
             created_by: Optional[UserInfoArgs] = None)
func NewBookmark(ctx *Context, name string, args BookmarkArgs, opts ...ResourceOption) (*Bookmark, error)
public Bookmark(string name, BookmarkArgs args, CustomResourceOptions? opts = null)
public Bookmark(String name, BookmarkArgs args)
public Bookmark(String name, BookmarkArgs args, CustomResourceOptions options)
type: azure-native:securityinsights:Bookmark
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. BookmarkArgs
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. BookmarkArgs
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. BookmarkArgs
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. BookmarkArgs
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. BookmarkArgs
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 bookmarkResource = new AzureNative.SecurityInsights.Bookmark("bookmarkResource", new()
{
    ResourceGroupName = "string",
    Query = "string",
    WorkspaceName = "string",
    DisplayName = "string",
    Labels = new[]
    {
        "string",
    },
    IncidentInfo = new AzureNative.SecurityInsights.Inputs.IncidentInfoArgs
    {
        IncidentId = "string",
        RelationName = "string",
        Severity = "string",
        Title = "string",
    },
    Created = "string",
    Notes = "string",
    EventTime = "string",
    QueryEndTime = "string",
    QueryResult = "string",
    QueryStartTime = "string",
    BookmarkId = "string",
    Updated = "string",
    UpdatedBy = new AzureNative.SecurityInsights.Inputs.UserInfoArgs
    {
        ObjectId = "string",
    },
    CreatedBy = new AzureNative.SecurityInsights.Inputs.UserInfoArgs
    {
        ObjectId = "string",
    },
});
Copy
example, err := securityinsights.NewBookmark(ctx, "bookmarkResource", &securityinsights.BookmarkArgs{
	ResourceGroupName: pulumi.String("string"),
	Query:             pulumi.String("string"),
	WorkspaceName:     pulumi.String("string"),
	DisplayName:       pulumi.String("string"),
	Labels: pulumi.StringArray{
		pulumi.String("string"),
	},
	IncidentInfo: &securityinsights.IncidentInfoArgs{
		IncidentId:   pulumi.String("string"),
		RelationName: pulumi.String("string"),
		Severity:     pulumi.String("string"),
		Title:        pulumi.String("string"),
	},
	Created:        pulumi.String("string"),
	Notes:          pulumi.String("string"),
	EventTime:      pulumi.String("string"),
	QueryEndTime:   pulumi.String("string"),
	QueryResult:    pulumi.String("string"),
	QueryStartTime: pulumi.String("string"),
	BookmarkId:     pulumi.String("string"),
	Updated:        pulumi.String("string"),
	UpdatedBy: &securityinsights.UserInfoArgs{
		ObjectId: pulumi.String("string"),
	},
	CreatedBy: &securityinsights.UserInfoArgs{
		ObjectId: pulumi.String("string"),
	},
})
Copy
var bookmarkResource = new Bookmark("bookmarkResource", BookmarkArgs.builder()
    .resourceGroupName("string")
    .query("string")
    .workspaceName("string")
    .displayName("string")
    .labels("string")
    .incidentInfo(IncidentInfoArgs.builder()
        .incidentId("string")
        .relationName("string")
        .severity("string")
        .title("string")
        .build())
    .created("string")
    .notes("string")
    .eventTime("string")
    .queryEndTime("string")
    .queryResult("string")
    .queryStartTime("string")
    .bookmarkId("string")
    .updated("string")
    .updatedBy(UserInfoArgs.builder()
        .objectId("string")
        .build())
    .createdBy(UserInfoArgs.builder()
        .objectId("string")
        .build())
    .build());
Copy
bookmark_resource = azure_native.securityinsights.Bookmark("bookmarkResource",
    resource_group_name="string",
    query="string",
    workspace_name="string",
    display_name="string",
    labels=["string"],
    incident_info={
        "incident_id": "string",
        "relation_name": "string",
        "severity": "string",
        "title": "string",
    },
    created="string",
    notes="string",
    event_time="string",
    query_end_time="string",
    query_result="string",
    query_start_time="string",
    bookmark_id="string",
    updated="string",
    updated_by={
        "object_id": "string",
    },
    created_by={
        "object_id": "string",
    })
Copy
const bookmarkResource = new azure_native.securityinsights.Bookmark("bookmarkResource", {
    resourceGroupName: "string",
    query: "string",
    workspaceName: "string",
    displayName: "string",
    labels: ["string"],
    incidentInfo: {
        incidentId: "string",
        relationName: "string",
        severity: "string",
        title: "string",
    },
    created: "string",
    notes: "string",
    eventTime: "string",
    queryEndTime: "string",
    queryResult: "string",
    queryStartTime: "string",
    bookmarkId: "string",
    updated: "string",
    updatedBy: {
        objectId: "string",
    },
    createdBy: {
        objectId: "string",
    },
});
Copy
type: azure-native:securityinsights:Bookmark
properties:
    bookmarkId: string
    created: string
    createdBy:
        objectId: string
    displayName: string
    eventTime: string
    incidentInfo:
        incidentId: string
        relationName: string
        severity: string
        title: string
    labels:
        - string
    notes: string
    query: string
    queryEndTime: string
    queryResult: string
    queryStartTime: string
    resourceGroupName: string
    updated: string
    updatedBy:
        objectId: string
    workspaceName: string
Copy

Bookmark 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 Bookmark resource accepts the following input properties:

DisplayName This property is required. string
The display name of the bookmark
Query This property is required. string
The query of the bookmark.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
WorkspaceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the workspace.
BookmarkId Changes to this property will trigger replacement. string
Bookmark ID
Created string
The time the bookmark was created
CreatedBy Pulumi.AzureNative.SecurityInsights.Inputs.UserInfo
Describes a user that created the bookmark
EventTime string
The bookmark event time
IncidentInfo Pulumi.AzureNative.SecurityInsights.Inputs.IncidentInfo
Describes an incident that relates to bookmark
Labels List<string>
List of labels relevant to this bookmark
Notes string
The notes of the bookmark
QueryEndTime string
The end time for the query
QueryResult string
The query result of the bookmark.
QueryStartTime string
The start time for the query
Updated string
The last time the bookmark was updated
UpdatedBy Pulumi.AzureNative.SecurityInsights.Inputs.UserInfo
Describes a user that updated the bookmark
DisplayName This property is required. string
The display name of the bookmark
Query This property is required. string
The query of the bookmark.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
WorkspaceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the workspace.
BookmarkId Changes to this property will trigger replacement. string
Bookmark ID
Created string
The time the bookmark was created
CreatedBy UserInfoArgs
Describes a user that created the bookmark
EventTime string
The bookmark event time
IncidentInfo IncidentInfoArgs
Describes an incident that relates to bookmark
Labels []string
List of labels relevant to this bookmark
Notes string
The notes of the bookmark
QueryEndTime string
The end time for the query
QueryResult string
The query result of the bookmark.
QueryStartTime string
The start time for the query
Updated string
The last time the bookmark was updated
UpdatedBy UserInfoArgs
Describes a user that updated the bookmark
displayName This property is required. String
The display name of the bookmark
query This property is required. String
The query of the bookmark.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
workspaceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the workspace.
bookmarkId Changes to this property will trigger replacement. String
Bookmark ID
created String
The time the bookmark was created
createdBy UserInfo
Describes a user that created the bookmark
eventTime String
The bookmark event time
incidentInfo IncidentInfo
Describes an incident that relates to bookmark
labels List<String>
List of labels relevant to this bookmark
notes String
The notes of the bookmark
queryEndTime String
The end time for the query
queryResult String
The query result of the bookmark.
queryStartTime String
The start time for the query
updated String
The last time the bookmark was updated
updatedBy UserInfo
Describes a user that updated the bookmark
displayName This property is required. string
The display name of the bookmark
query This property is required. string
The query of the bookmark.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
workspaceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the workspace.
bookmarkId Changes to this property will trigger replacement. string
Bookmark ID
created string
The time the bookmark was created
createdBy UserInfo
Describes a user that created the bookmark
eventTime string
The bookmark event time
incidentInfo IncidentInfo
Describes an incident that relates to bookmark
labels string[]
List of labels relevant to this bookmark
notes string
The notes of the bookmark
queryEndTime string
The end time for the query
queryResult string
The query result of the bookmark.
queryStartTime string
The start time for the query
updated string
The last time the bookmark was updated
updatedBy UserInfo
Describes a user that updated the bookmark
display_name This property is required. str
The display name of the bookmark
query This property is required. str
The query of the bookmark.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
workspace_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the workspace.
bookmark_id Changes to this property will trigger replacement. str
Bookmark ID
created str
The time the bookmark was created
created_by UserInfoArgs
Describes a user that created the bookmark
event_time str
The bookmark event time
incident_info IncidentInfoArgs
Describes an incident that relates to bookmark
labels Sequence[str]
List of labels relevant to this bookmark
notes str
The notes of the bookmark
query_end_time str
The end time for the query
query_result str
The query result of the bookmark.
query_start_time str
The start time for the query
updated str
The last time the bookmark was updated
updated_by UserInfoArgs
Describes a user that updated the bookmark
displayName This property is required. String
The display name of the bookmark
query This property is required. String
The query of the bookmark.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
workspaceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the workspace.
bookmarkId Changes to this property will trigger replacement. String
Bookmark ID
created String
The time the bookmark was created
createdBy Property Map
Describes a user that created the bookmark
eventTime String
The bookmark event time
incidentInfo Property Map
Describes an incident that relates to bookmark
labels List<String>
List of labels relevant to this bookmark
notes String
The notes of the bookmark
queryEndTime String
The end time for the query
queryResult String
The query result of the bookmark.
queryStartTime String
The start time for the query
updated String
The last time the bookmark was updated
updatedBy Property Map
Describes a user that updated the bookmark

Outputs

All input properties are implicitly available as output properties. Additionally, the Bookmark resource produces the following output properties:

AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData Pulumi.AzureNative.SecurityInsights.Outputs.SystemDataResponse
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
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData SystemDataResponse
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
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData SystemDataResponse
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
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
systemData SystemDataResponse
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_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
system_data SystemDataResponse
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
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData 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

IncidentInfo
, IncidentInfoArgs

IncidentId string
Incident Id
RelationName string
Relation Name
Severity string | Pulumi.AzureNative.SecurityInsights.IncidentSeverity
The severity of the incident
Title string
The title of the incident
IncidentId string
Incident Id
RelationName string
Relation Name
Severity string | IncidentSeverity
The severity of the incident
Title string
The title of the incident
incidentId String
Incident Id
relationName String
Relation Name
severity String | IncidentSeverity
The severity of the incident
title String
The title of the incident
incidentId string
Incident Id
relationName string
Relation Name
severity string | IncidentSeverity
The severity of the incident
title string
The title of the incident
incident_id str
Incident Id
relation_name str
Relation Name
severity str | IncidentSeverity
The severity of the incident
title str
The title of the incident
incidentId String
Incident Id
relationName String
Relation Name
severity String | "High" | "Medium" | "Low" | "Informational"
The severity of the incident
title String
The title of the incident

IncidentInfoResponse
, IncidentInfoResponseArgs

IncidentId string
Incident Id
RelationName string
Relation Name
Severity string
The severity of the incident
Title string
The title of the incident
IncidentId string
Incident Id
RelationName string
Relation Name
Severity string
The severity of the incident
Title string
The title of the incident
incidentId String
Incident Id
relationName String
Relation Name
severity String
The severity of the incident
title String
The title of the incident
incidentId string
Incident Id
relationName string
Relation Name
severity string
The severity of the incident
title string
The title of the incident
incident_id str
Incident Id
relation_name str
Relation Name
severity str
The severity of the incident
title str
The title of the incident
incidentId String
Incident Id
relationName String
Relation Name
severity String
The severity of the incident
title String
The title of the incident

IncidentSeverity
, IncidentSeverityArgs

High
HighHigh severity
Medium
MediumMedium severity
Low
LowLow severity
Informational
InformationalInformational severity
IncidentSeverityHigh
HighHigh severity
IncidentSeverityMedium
MediumMedium severity
IncidentSeverityLow
LowLow severity
IncidentSeverityInformational
InformationalInformational severity
High
HighHigh severity
Medium
MediumMedium severity
Low
LowLow severity
Informational
InformationalInformational severity
High
HighHigh severity
Medium
MediumMedium severity
Low
LowLow severity
Informational
InformationalInformational severity
HIGH
HighHigh severity
MEDIUM
MediumMedium severity
LOW
LowLow severity
INFORMATIONAL
InformationalInformational severity
"High"
HighHigh severity
"Medium"
MediumMedium severity
"Low"
LowLow severity
"Informational"
InformationalInformational severity

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
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_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

UserInfo
, UserInfoArgs

ObjectId string
The object id of the user.
ObjectId string
The object id of the user.
objectId String
The object id of the user.
objectId string
The object id of the user.
object_id str
The object id of the user.
objectId String
The object id of the user.

UserInfoResponse
, UserInfoResponseArgs

Email This property is required. string
The email of the user.
Name This property is required. string
The name of the user.
ObjectId string
The object id of the user.
Email This property is required. string
The email of the user.
Name This property is required. string
The name of the user.
ObjectId string
The object id of the user.
email This property is required. String
The email of the user.
name This property is required. String
The name of the user.
objectId String
The object id of the user.
email This property is required. string
The email of the user.
name This property is required. string
The name of the user.
objectId string
The object id of the user.
email This property is required. str
The email of the user.
name This property is required. str
The name of the user.
object_id str
The object id of the user.
email This property is required. String
The email of the user.
name This property is required. String
The name of the user.
objectId String
The object id of the user.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:securityinsights:Bookmark 73e01a99-5cd7-4139-a149-9f2736ff2ab5 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/bookmarks/{bookmarkId} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi