azure-native.securityinsights.Bookmark
Explore with Pulumi AI
Represents a bookmark in Azure Security Insights. Azure REST API version: 2023-02-01. Prior API version in Azure Native 1.x: 2020-01-01.
Other available API versions: 2019-01-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-09-01, 2024-10-01-preview, 2025-01-01-preview.
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",
    });
});
package main
import (
	securityinsights "github.com/pulumi/pulumi-azure-native-sdk/securityinsights/v2"
	"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
	})
}
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());
    }
}
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",
});
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")
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
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 string
- The unique name of the resource.
- args BookmarkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args 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 string
- The unique name of the resource.
- args BookmarkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BookmarkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
    },
});
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"),
	},
})
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());
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",
    })
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",
    },
});
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
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 string
- The display name of the bookmark
- Query string
- The query of the bookmark.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- WorkspaceName string
- The name of the workspace.
- BookmarkId string
- Bookmark ID
- Created string
- The time the bookmark was created
- CreatedBy Pulumi.Azure Native. Security Insights. Inputs. User Info 
- Describes a user that created the bookmark
- EventTime string
- The bookmark event time
- IncidentInfo Pulumi.Azure Native. Security Insights. Inputs. Incident Info 
- Describes an incident that relates to bookmark
- Labels List<string>
- List of labels relevant to this bookmark
- Notes string
- The notes of the bookmark
- QueryEnd stringTime 
- The end time for the query
- QueryResult string
- The query result of the bookmark.
- QueryStart stringTime 
- The start time for the query
- Updated string
- The last time the bookmark was updated
- UpdatedBy Pulumi.Azure Native. Security Insights. Inputs. User Info 
- Describes a user that updated the bookmark
- DisplayName string
- The display name of the bookmark
- Query string
- The query of the bookmark.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- WorkspaceName string
- The name of the workspace.
- BookmarkId string
- Bookmark ID
- Created string
- The time the bookmark was created
- CreatedBy UserInfo Args 
- Describes a user that created the bookmark
- EventTime string
- The bookmark event time
- IncidentInfo IncidentInfo Args 
- Describes an incident that relates to bookmark
- Labels []string
- List of labels relevant to this bookmark
- Notes string
- The notes of the bookmark
- QueryEnd stringTime 
- The end time for the query
- QueryResult string
- The query result of the bookmark.
- QueryStart stringTime 
- The start time for the query
- Updated string
- The last time the bookmark was updated
- UpdatedBy UserInfo Args 
- Describes a user that updated the bookmark
- displayName String
- The display name of the bookmark
- query String
- The query of the bookmark.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- workspaceName String
- The name of the workspace.
- bookmarkId 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
- queryEnd StringTime 
- The end time for the query
- queryResult String
- The query result of the bookmark.
- queryStart StringTime 
- 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 string
- The display name of the bookmark
- query string
- The query of the bookmark.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- workspaceName string
- The name of the workspace.
- bookmarkId 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
- queryEnd stringTime 
- The end time for the query
- queryResult string
- The query result of the bookmark.
- queryStart stringTime 
- 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 str
- The display name of the bookmark
- query str
- The query of the bookmark.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- workspace_name str
- The name of the workspace.
- bookmark_id str
- Bookmark ID
- created str
- The time the bookmark was created
- created_by UserInfo Args 
- Describes a user that created the bookmark
- event_time str
- The bookmark event time
- incident_info IncidentInfo Args 
- 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_ strtime 
- The end time for the query
- query_result str
- The query result of the bookmark.
- query_start_ strtime 
- The start time for the query
- updated str
- The last time the bookmark was updated
- updated_by UserInfo Args 
- Describes a user that updated the bookmark
- displayName String
- The display name of the bookmark
- query String
- The query of the bookmark.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- workspaceName String
- The name of the workspace.
- bookmarkId 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
- queryEnd StringTime 
- The end time for the query
- queryResult String
- The query result of the bookmark.
- queryStart StringTime 
- 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:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData 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
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData 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
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData 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
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- systemData 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
- id str
- The provider-assigned unique ID for this managed resource.
- 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
- 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.Azure Native. Security Insights. Incident Severity 
- 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
- IncidentSeverity High 
- HighHigh severity
- IncidentSeverity Medium 
- MediumMedium severity
- IncidentSeverity Low 
- LowLow severity
- IncidentSeverity 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
- "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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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      
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} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0