1. Packages
  2. Azure Native
  3. API Docs
  4. securityinsights
  5. ContentPackage
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi

azure-native.securityinsights.ContentPackage

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi

    Represents a Package in Azure Security Insights. Azure REST API version: 2023-06-01-preview.

    Other available API versions: 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.

    Example Usage

    Install a package to the workspace.

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var contentPackage = new AzureNative.SecurityInsights.ContentPackage("contentPackage", new()
        {
            ContentId = "str.azure-sentinel-solution-str",
            ContentKind = AzureNative.SecurityInsights.PackageKind.Solution,
            DisplayName = "str",
            PackageId = "str.azure-sentinel-solution-str",
            ResourceGroupName = "myRg",
            Version = "2.0.0",
            WorkspaceName = "myWorkspace",
        });
    
    });
    
    package main
    
    import (
    	"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.NewContentPackage(ctx, "contentPackage", &securityinsights.ContentPackageArgs{
    			ContentId:         pulumi.String("str.azure-sentinel-solution-str"),
    			ContentKind:       pulumi.String(securityinsights.PackageKindSolution),
    			DisplayName:       pulumi.String("str"),
    			PackageId:         pulumi.String("str.azure-sentinel-solution-str"),
    			ResourceGroupName: pulumi.String("myRg"),
    			Version:           pulumi.String("2.0.0"),
    			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.ContentPackage;
    import com.pulumi.azurenative.securityinsights.ContentPackageArgs;
    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 contentPackage = new ContentPackage("contentPackage", ContentPackageArgs.builder()        
                .contentId("str.azure-sentinel-solution-str")
                .contentKind("Solution")
                .displayName("str")
                .packageId("str.azure-sentinel-solution-str")
                .resourceGroupName("myRg")
                .version("2.0.0")
                .workspaceName("myWorkspace")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    content_package = azure_native.securityinsights.ContentPackage("contentPackage",
        content_id="str.azure-sentinel-solution-str",
        content_kind=azure_native.securityinsights.PackageKind.SOLUTION,
        display_name="str",
        package_id="str.azure-sentinel-solution-str",
        resource_group_name="myRg",
        version="2.0.0",
        workspace_name="myWorkspace")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const contentPackage = new azure_native.securityinsights.ContentPackage("contentPackage", {
        contentId: "str.azure-sentinel-solution-str",
        contentKind: azure_native.securityinsights.PackageKind.Solution,
        displayName: "str",
        packageId: "str.azure-sentinel-solution-str",
        resourceGroupName: "myRg",
        version: "2.0.0",
        workspaceName: "myWorkspace",
    });
    
    resources:
      contentPackage:
        type: azure-native:securityinsights:ContentPackage
        properties:
          contentId: str.azure-sentinel-solution-str
          contentKind: Solution
          displayName: str
          packageId: str.azure-sentinel-solution-str
          resourceGroupName: myRg
          version: 2.0.0
          workspaceName: myWorkspace
    

    Create ContentPackage Resource

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

    Constructor syntax

    new ContentPackage(name: string, args: ContentPackageArgs, opts?: CustomResourceOptions);
    @overload
    def ContentPackage(resource_name: str,
                       args: ContentPackageArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ContentPackage(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       display_name: Optional[str] = None,
                       workspace_name: Optional[str] = None,
                       content_id: Optional[str] = None,
                       content_kind: Optional[Union[str, PackageKind]] = None,
                       version: Optional[str] = None,
                       resource_group_name: Optional[str] = None,
                       is_preview: Optional[Union[str, Flag]] = None,
                       providers: Optional[Sequence[str]] = None,
                       first_publish_date: Optional[str] = None,
                       icon: Optional[str] = None,
                       is_featured: Optional[Union[str, Flag]] = None,
                       is_new: Optional[Union[str, Flag]] = None,
                       author: Optional[MetadataAuthorArgs] = None,
                       last_publish_date: Optional[str] = None,
                       package_id: Optional[str] = None,
                       description: Optional[str] = None,
                       publisher_display_name: Optional[str] = None,
                       dependencies: Optional[MetadataDependenciesArgs] = None,
                       source: Optional[MetadataSourceArgs] = None,
                       support: Optional[MetadataSupportArgs] = None,
                       threat_analysis_tactics: Optional[Sequence[str]] = None,
                       threat_analysis_techniques: Optional[Sequence[str]] = None,
                       content_schema_version: Optional[str] = None,
                       categories: Optional[MetadataCategoriesArgs] = None)
    func NewContentPackage(ctx *Context, name string, args ContentPackageArgs, opts ...ResourceOption) (*ContentPackage, error)
    public ContentPackage(string name, ContentPackageArgs args, CustomResourceOptions? opts = null)
    public ContentPackage(String name, ContentPackageArgs args)
    public ContentPackage(String name, ContentPackageArgs args, CustomResourceOptions options)
    
    type: azure-native:securityinsights:ContentPackage
    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 ContentPackageArgs
    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 ContentPackageArgs
    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 ContentPackageArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ContentPackageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ContentPackageArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var contentPackageResource = new AzureNative.SecurityInsights.ContentPackage("contentPackageResource", new()
    {
        DisplayName = "string",
        WorkspaceName = "string",
        ContentId = "string",
        ContentKind = "string",
        Version = "string",
        ResourceGroupName = "string",
        IsPreview = "string",
        Providers = new[]
        {
            "string",
        },
        FirstPublishDate = "string",
        Icon = "string",
        IsFeatured = "string",
        IsNew = "string",
        Author = new AzureNative.SecurityInsights.Inputs.MetadataAuthorArgs
        {
            Email = "string",
            Link = "string",
            Name = "string",
        },
        LastPublishDate = "string",
        PackageId = "string",
        Description = "string",
        PublisherDisplayName = "string",
        Dependencies = new AzureNative.SecurityInsights.Inputs.MetadataDependenciesArgs
        {
            ContentId = "string",
            Criteria = new[]
            {
                metadataDependencies,
            },
            Kind = "string",
            Name = "string",
            Operator = "string",
            Version = "string",
        },
        Source = new AzureNative.SecurityInsights.Inputs.MetadataSourceArgs
        {
            Kind = "string",
            Name = "string",
            SourceId = "string",
        },
        Support = new AzureNative.SecurityInsights.Inputs.MetadataSupportArgs
        {
            Tier = "string",
            Email = "string",
            Link = "string",
            Name = "string",
        },
        ThreatAnalysisTactics = new[]
        {
            "string",
        },
        ThreatAnalysisTechniques = new[]
        {
            "string",
        },
        ContentSchemaVersion = "string",
        Categories = new AzureNative.SecurityInsights.Inputs.MetadataCategoriesArgs
        {
            Domains = new[]
            {
                "string",
            },
            Verticals = new[]
            {
                "string",
            },
        },
    });
    
    example, err := securityinsights.NewContentPackage(ctx, "contentPackageResource", &securityinsights.ContentPackageArgs{
    DisplayName: pulumi.String("string"),
    WorkspaceName: pulumi.String("string"),
    ContentId: pulumi.String("string"),
    ContentKind: pulumi.String("string"),
    Version: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    IsPreview: pulumi.String("string"),
    Providers: pulumi.StringArray{
    pulumi.String("string"),
    },
    FirstPublishDate: pulumi.String("string"),
    Icon: pulumi.String("string"),
    IsFeatured: pulumi.String("string"),
    IsNew: pulumi.String("string"),
    Author: &securityinsights.MetadataAuthorArgs{
    Email: pulumi.String("string"),
    Link: pulumi.String("string"),
    Name: pulumi.String("string"),
    },
    LastPublishDate: pulumi.String("string"),
    PackageId: pulumi.String("string"),
    Description: pulumi.String("string"),
    PublisherDisplayName: pulumi.String("string"),
    Dependencies: &securityinsights.MetadataDependenciesArgs{
    ContentId: pulumi.String("string"),
    Criteria: securityinsights.MetadataDependenciesArray{
    metadataDependencies,
    },
    Kind: pulumi.String("string"),
    Name: pulumi.String("string"),
    Operator: pulumi.String("string"),
    Version: pulumi.String("string"),
    },
    Source: &securityinsights.MetadataSourceArgs{
    Kind: pulumi.String("string"),
    Name: pulumi.String("string"),
    SourceId: pulumi.String("string"),
    },
    Support: &securityinsights.MetadataSupportArgs{
    Tier: pulumi.String("string"),
    Email: pulumi.String("string"),
    Link: pulumi.String("string"),
    Name: pulumi.String("string"),
    },
    ThreatAnalysisTactics: pulumi.StringArray{
    pulumi.String("string"),
    },
    ThreatAnalysisTechniques: pulumi.StringArray{
    pulumi.String("string"),
    },
    ContentSchemaVersion: pulumi.String("string"),
    Categories: &securityinsights.MetadataCategoriesArgs{
    Domains: pulumi.StringArray{
    pulumi.String("string"),
    },
    Verticals: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    })
    
    var contentPackageResource = new ContentPackage("contentPackageResource", ContentPackageArgs.builder()        
        .displayName("string")
        .workspaceName("string")
        .contentId("string")
        .contentKind("string")
        .version("string")
        .resourceGroupName("string")
        .isPreview("string")
        .providers("string")
        .firstPublishDate("string")
        .icon("string")
        .isFeatured("string")
        .isNew("string")
        .author(MetadataAuthorArgs.builder()
            .email("string")
            .link("string")
            .name("string")
            .build())
        .lastPublishDate("string")
        .packageId("string")
        .description("string")
        .publisherDisplayName("string")
        .dependencies(MetadataDependenciesArgs.builder()
            .contentId("string")
            .criteria(metadataDependencies)
            .kind("string")
            .name("string")
            .operator("string")
            .version("string")
            .build())
        .source(MetadataSourceArgs.builder()
            .kind("string")
            .name("string")
            .sourceId("string")
            .build())
        .support(MetadataSupportArgs.builder()
            .tier("string")
            .email("string")
            .link("string")
            .name("string")
            .build())
        .threatAnalysisTactics("string")
        .threatAnalysisTechniques("string")
        .contentSchemaVersion("string")
        .categories(MetadataCategoriesArgs.builder()
            .domains("string")
            .verticals("string")
            .build())
        .build());
    
    content_package_resource = azure_native.securityinsights.ContentPackage("contentPackageResource",
        display_name="string",
        workspace_name="string",
        content_id="string",
        content_kind="string",
        version="string",
        resource_group_name="string",
        is_preview="string",
        providers=["string"],
        first_publish_date="string",
        icon="string",
        is_featured="string",
        is_new="string",
        author=azure_native.securityinsights.MetadataAuthorArgs(
            email="string",
            link="string",
            name="string",
        ),
        last_publish_date="string",
        package_id="string",
        description="string",
        publisher_display_name="string",
        dependencies=azure_native.securityinsights.MetadataDependenciesArgs(
            content_id="string",
            criteria=[metadata_dependencies],
            kind="string",
            name="string",
            operator="string",
            version="string",
        ),
        source=azure_native.securityinsights.MetadataSourceArgs(
            kind="string",
            name="string",
            source_id="string",
        ),
        support=azure_native.securityinsights.MetadataSupportArgs(
            tier="string",
            email="string",
            link="string",
            name="string",
        ),
        threat_analysis_tactics=["string"],
        threat_analysis_techniques=["string"],
        content_schema_version="string",
        categories=azure_native.securityinsights.MetadataCategoriesArgs(
            domains=["string"],
            verticals=["string"],
        ))
    
    const contentPackageResource = new azure_native.securityinsights.ContentPackage("contentPackageResource", {
        displayName: "string",
        workspaceName: "string",
        contentId: "string",
        contentKind: "string",
        version: "string",
        resourceGroupName: "string",
        isPreview: "string",
        providers: ["string"],
        firstPublishDate: "string",
        icon: "string",
        isFeatured: "string",
        isNew: "string",
        author: {
            email: "string",
            link: "string",
            name: "string",
        },
        lastPublishDate: "string",
        packageId: "string",
        description: "string",
        publisherDisplayName: "string",
        dependencies: {
            contentId: "string",
            criteria: [metadataDependencies],
            kind: "string",
            name: "string",
            operator: "string",
            version: "string",
        },
        source: {
            kind: "string",
            name: "string",
            sourceId: "string",
        },
        support: {
            tier: "string",
            email: "string",
            link: "string",
            name: "string",
        },
        threatAnalysisTactics: ["string"],
        threatAnalysisTechniques: ["string"],
        contentSchemaVersion: "string",
        categories: {
            domains: ["string"],
            verticals: ["string"],
        },
    });
    
    type: azure-native:securityinsights:ContentPackage
    properties:
        author:
            email: string
            link: string
            name: string
        categories:
            domains:
                - string
            verticals:
                - string
        contentId: string
        contentKind: string
        contentSchemaVersion: string
        dependencies:
            contentId: string
            criteria:
                - ${metadataDependencies}
            kind: string
            name: string
            operator: string
            version: string
        description: string
        displayName: string
        firstPublishDate: string
        icon: string
        isFeatured: string
        isNew: string
        isPreview: string
        lastPublishDate: string
        packageId: string
        providers:
            - string
        publisherDisplayName: string
        resourceGroupName: string
        source:
            kind: string
            name: string
            sourceId: string
        support:
            email: string
            link: string
            name: string
            tier: string
        threatAnalysisTactics:
            - string
        threatAnalysisTechniques:
            - string
        version: string
        workspaceName: string
    

    ContentPackage Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ContentPackage resource accepts the following input properties:

    ContentId string
    The package id
    ContentKind string | Pulumi.AzureNative.SecurityInsights.PackageKind
    The package kind
    DisplayName string
    The display name of the package
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Version string
    the latest version number of the package
    WorkspaceName string
    The name of the workspace.
    Author Pulumi.AzureNative.SecurityInsights.Inputs.MetadataAuthor
    The author of the package
    Categories Pulumi.AzureNative.SecurityInsights.Inputs.MetadataCategories
    The categories of the package
    ContentSchemaVersion string
    The version of the content schema.
    Dependencies Pulumi.AzureNative.SecurityInsights.Inputs.MetadataDependencies
    The support tier of the package
    Description string
    The description of the package
    FirstPublishDate string
    first publish date package item
    Icon string
    the icon identifier. this id can later be fetched from the content metadata
    IsFeatured string | Pulumi.AzureNative.SecurityInsights.Flag
    Flag indicates if this package is among the featured list.
    IsNew string | Pulumi.AzureNative.SecurityInsights.Flag
    Flag indicates if this is a newly published package.
    IsPreview string | Pulumi.AzureNative.SecurityInsights.Flag
    Flag indicates if this package is in preview.
    LastPublishDate string
    last publish date for the package item
    PackageId string
    package Id
    Providers List<string>
    Providers for the package item
    PublisherDisplayName string
    The publisher display name of the package
    Source Pulumi.AzureNative.SecurityInsights.Inputs.MetadataSource
    The source of the package
    Support Pulumi.AzureNative.SecurityInsights.Inputs.MetadataSupport
    The support tier of the package
    ThreatAnalysisTactics List<string>
    the tactics the resource covers
    ThreatAnalysisTechniques List<string>
    the techniques the resource covers, these have to be aligned with the tactics being used
    ContentId string
    The package id
    ContentKind string | PackageKind
    The package kind
    DisplayName string
    The display name of the package
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Version string
    the latest version number of the package
    WorkspaceName string
    The name of the workspace.
    Author MetadataAuthorArgs
    The author of the package
    Categories MetadataCategoriesArgs
    The categories of the package
    ContentSchemaVersion string
    The version of the content schema.
    Dependencies MetadataDependenciesArgs
    The support tier of the package
    Description string
    The description of the package
    FirstPublishDate string
    first publish date package item
    Icon string
    the icon identifier. this id can later be fetched from the content metadata
    IsFeatured string | Flag
    Flag indicates if this package is among the featured list.
    IsNew string | Flag
    Flag indicates if this is a newly published package.
    IsPreview string | Flag
    Flag indicates if this package is in preview.
    LastPublishDate string
    last publish date for the package item
    PackageId string
    package Id
    Providers []string
    Providers for the package item
    PublisherDisplayName string
    The publisher display name of the package
    Source MetadataSourceArgs
    The source of the package
    Support MetadataSupportArgs
    The support tier of the package
    ThreatAnalysisTactics []string
    the tactics the resource covers
    ThreatAnalysisTechniques []string
    the techniques the resource covers, these have to be aligned with the tactics being used
    contentId String
    The package id
    contentKind String | PackageKind
    The package kind
    displayName String
    The display name of the package
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    version String
    the latest version number of the package
    workspaceName String
    The name of the workspace.
    author MetadataAuthor
    The author of the package
    categories MetadataCategories
    The categories of the package
    contentSchemaVersion String
    The version of the content schema.
    dependencies MetadataDependencies
    The support tier of the package
    description String
    The description of the package
    firstPublishDate String
    first publish date package item
    icon String
    the icon identifier. this id can later be fetched from the content metadata
    isFeatured String | Flag
    Flag indicates if this package is among the featured list.
    isNew String | Flag
    Flag indicates if this is a newly published package.
    isPreview String | Flag
    Flag indicates if this package is in preview.
    lastPublishDate String
    last publish date for the package item
    packageId String
    package Id
    providers List<String>
    Providers for the package item
    publisherDisplayName String
    The publisher display name of the package
    source MetadataSource
    The source of the package
    support MetadataSupport
    The support tier of the package
    threatAnalysisTactics List<String>
    the tactics the resource covers
    threatAnalysisTechniques List<String>
    the techniques the resource covers, these have to be aligned with the tactics being used
    contentId string
    The package id
    contentKind string | PackageKind
    The package kind
    displayName string
    The display name of the package
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    version string
    the latest version number of the package
    workspaceName string
    The name of the workspace.
    author MetadataAuthor
    The author of the package
    categories MetadataCategories
    The categories of the package
    contentSchemaVersion string
    The version of the content schema.
    dependencies MetadataDependencies
    The support tier of the package
    description string
    The description of the package
    firstPublishDate string
    first publish date package item
    icon string
    the icon identifier. this id can later be fetched from the content metadata
    isFeatured string | Flag
    Flag indicates if this package is among the featured list.
    isNew string | Flag
    Flag indicates if this is a newly published package.
    isPreview string | Flag
    Flag indicates if this package is in preview.
    lastPublishDate string
    last publish date for the package item
    packageId string
    package Id
    providers string[]
    Providers for the package item
    publisherDisplayName string
    The publisher display name of the package
    source MetadataSource
    The source of the package
    support MetadataSupport
    The support tier of the package
    threatAnalysisTactics string[]
    the tactics the resource covers
    threatAnalysisTechniques string[]
    the techniques the resource covers, these have to be aligned with the tactics being used
    content_id str
    The package id
    content_kind str | PackageKind
    The package kind
    display_name str
    The display name of the package
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    version str
    the latest version number of the package
    workspace_name str
    The name of the workspace.
    author MetadataAuthorArgs
    The author of the package
    categories MetadataCategoriesArgs
    The categories of the package
    content_schema_version str
    The version of the content schema.
    dependencies MetadataDependenciesArgs
    The support tier of the package
    description str
    The description of the package
    first_publish_date str
    first publish date package item
    icon str
    the icon identifier. this id can later be fetched from the content metadata
    is_featured str | Flag
    Flag indicates if this package is among the featured list.
    is_new str | Flag
    Flag indicates if this is a newly published package.
    is_preview str | Flag
    Flag indicates if this package is in preview.
    last_publish_date str
    last publish date for the package item
    package_id str
    package Id
    providers Sequence[str]
    Providers for the package item
    publisher_display_name str
    The publisher display name of the package
    source MetadataSourceArgs
    The source of the package
    support MetadataSupportArgs
    The support tier of the package
    threat_analysis_tactics Sequence[str]
    the tactics the resource covers
    threat_analysis_techniques Sequence[str]
    the techniques the resource covers, these have to be aligned with the tactics being used
    contentId String
    The package id
    contentKind String | "Solution" | "Standalone"
    The package kind
    displayName String
    The display name of the package
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    version String
    the latest version number of the package
    workspaceName String
    The name of the workspace.
    author Property Map
    The author of the package
    categories Property Map
    The categories of the package
    contentSchemaVersion String
    The version of the content schema.
    dependencies Property Map
    The support tier of the package
    description String
    The description of the package
    firstPublishDate String
    first publish date package item
    icon String
    the icon identifier. this id can later be fetched from the content metadata
    isFeatured String | "true" | "false"
    Flag indicates if this package is among the featured list.
    isNew String | "true" | "false"
    Flag indicates if this is a newly published package.
    isPreview String | "true" | "false"
    Flag indicates if this package is in preview.
    lastPublishDate String
    last publish date for the package item
    packageId String
    package Id
    providers List<String>
    Providers for the package item
    publisherDisplayName String
    The publisher display name of the package
    source Property Map
    The source of the package
    support Property Map
    The support tier of the package
    threatAnalysisTactics List<String>
    the tactics the resource covers
    threatAnalysisTechniques List<String>
    the techniques the resource covers, these have to be aligned with the tactics being used

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ContentPackage 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.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
    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
    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
    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
    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
    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

    Flag, FlagArgs

    @True
    true
    @False
    false
    FlagTrue
    true
    FlagFalse
    false
    True_
    true
    False_
    false
    True
    true
    False
    false
    TRUE
    true
    FALSE
    false
    "true"
    true
    "false"
    false

    Kind, KindArgs

    DataConnector
    DataConnector
    DataType
    DataType
    Workbook
    Workbook
    WorkbookTemplate
    WorkbookTemplate
    Playbook
    Playbook
    PlaybookTemplate
    PlaybookTemplate
    AnalyticsRuleTemplate
    AnalyticsRuleTemplate
    AnalyticsRule
    AnalyticsRule
    HuntingQuery
    HuntingQuery
    InvestigationQuery
    InvestigationQuery
    Parser
    Parser
    Watchlist
    Watchlist
    WatchlistTemplate
    WatchlistTemplate
    Solution
    Solution
    AzureFunction
    AzureFunction
    LogicAppsCustomConnector
    LogicAppsCustomConnector
    AutomationRule
    AutomationRule
    KindDataConnector
    DataConnector
    KindDataType
    DataType
    KindWorkbook
    Workbook
    KindWorkbookTemplate
    WorkbookTemplate
    KindPlaybook
    Playbook
    KindPlaybookTemplate
    PlaybookTemplate
    KindAnalyticsRuleTemplate
    AnalyticsRuleTemplate
    KindAnalyticsRule
    AnalyticsRule
    KindHuntingQuery
    HuntingQuery
    KindInvestigationQuery
    InvestigationQuery
    KindParser
    Parser
    KindWatchlist
    Watchlist
    KindWatchlistTemplate
    WatchlistTemplate
    KindSolution
    Solution
    KindAzureFunction
    AzureFunction
    KindLogicAppsCustomConnector
    LogicAppsCustomConnector
    KindAutomationRule
    AutomationRule
    DataConnector
    DataConnector
    DataType
    DataType
    Workbook
    Workbook
    WorkbookTemplate
    WorkbookTemplate
    Playbook
    Playbook
    PlaybookTemplate
    PlaybookTemplate
    AnalyticsRuleTemplate
    AnalyticsRuleTemplate
    AnalyticsRule
    AnalyticsRule
    HuntingQuery
    HuntingQuery
    InvestigationQuery
    InvestigationQuery
    Parser
    Parser
    Watchlist
    Watchlist
    WatchlistTemplate
    WatchlistTemplate
    Solution
    Solution
    AzureFunction
    AzureFunction
    LogicAppsCustomConnector
    LogicAppsCustomConnector
    AutomationRule
    AutomationRule
    DataConnector
    DataConnector
    DataType
    DataType
    Workbook
    Workbook
    WorkbookTemplate
    WorkbookTemplate
    Playbook
    Playbook
    PlaybookTemplate
    PlaybookTemplate
    AnalyticsRuleTemplate
    AnalyticsRuleTemplate
    AnalyticsRule
    AnalyticsRule
    HuntingQuery
    HuntingQuery
    InvestigationQuery
    InvestigationQuery
    Parser
    Parser
    Watchlist
    Watchlist
    WatchlistTemplate
    WatchlistTemplate
    Solution
    Solution
    AzureFunction
    AzureFunction
    LogicAppsCustomConnector
    LogicAppsCustomConnector
    AutomationRule
    AutomationRule
    DATA_CONNECTOR
    DataConnector
    DATA_TYPE
    DataType
    WORKBOOK
    Workbook
    WORKBOOK_TEMPLATE
    WorkbookTemplate
    PLAYBOOK
    Playbook
    PLAYBOOK_TEMPLATE
    PlaybookTemplate
    ANALYTICS_RULE_TEMPLATE
    AnalyticsRuleTemplate
    ANALYTICS_RULE
    AnalyticsRule
    HUNTING_QUERY
    HuntingQuery
    INVESTIGATION_QUERY
    InvestigationQuery
    PARSER
    Parser
    WATCHLIST
    Watchlist
    WATCHLIST_TEMPLATE
    WatchlistTemplate
    SOLUTION
    Solution
    AZURE_FUNCTION
    AzureFunction
    LOGIC_APPS_CUSTOM_CONNECTOR
    LogicAppsCustomConnector
    AUTOMATION_RULE
    AutomationRule
    "DataConnector"
    DataConnector
    "DataType"
    DataType
    "Workbook"
    Workbook
    "WorkbookTemplate"
    WorkbookTemplate
    "Playbook"
    Playbook
    "PlaybookTemplate"
    PlaybookTemplate
    "AnalyticsRuleTemplate"
    AnalyticsRuleTemplate
    "AnalyticsRule"
    AnalyticsRule
    "HuntingQuery"
    HuntingQuery
    "InvestigationQuery"
    InvestigationQuery
    "Parser"
    Parser
    "Watchlist"
    Watchlist
    "WatchlistTemplate"
    WatchlistTemplate
    "Solution"
    Solution
    "AzureFunction"
    AzureFunction
    "LogicAppsCustomConnector"
    LogicAppsCustomConnector
    "AutomationRule"
    AutomationRule

    MetadataAuthor, MetadataAuthorArgs

    Email string
    Email of author contact
    Link string
    Link for author/vendor page
    Name string
    Name of the author. Company or person.
    Email string
    Email of author contact
    Link string
    Link for author/vendor page
    Name string
    Name of the author. Company or person.
    email String
    Email of author contact
    link String
    Link for author/vendor page
    name String
    Name of the author. Company or person.
    email string
    Email of author contact
    link string
    Link for author/vendor page
    name string
    Name of the author. Company or person.
    email str
    Email of author contact
    link str
    Link for author/vendor page
    name str
    Name of the author. Company or person.
    email String
    Email of author contact
    link String
    Link for author/vendor page
    name String
    Name of the author. Company or person.

    MetadataAuthorResponse, MetadataAuthorResponseArgs

    Email string
    Email of author contact
    Link string
    Link for author/vendor page
    Name string
    Name of the author. Company or person.
    Email string
    Email of author contact
    Link string
    Link for author/vendor page
    Name string
    Name of the author. Company or person.
    email String
    Email of author contact
    link String
    Link for author/vendor page
    name String
    Name of the author. Company or person.
    email string
    Email of author contact
    link string
    Link for author/vendor page
    name string
    Name of the author. Company or person.
    email str
    Email of author contact
    link str
    Link for author/vendor page
    name str
    Name of the author. Company or person.
    email String
    Email of author contact
    link String
    Link for author/vendor page
    name String
    Name of the author. Company or person.

    MetadataCategories, MetadataCategoriesArgs

    Domains List<string>
    domain for the solution content item
    Verticals List<string>
    Industry verticals for the solution content item
    Domains []string
    domain for the solution content item
    Verticals []string
    Industry verticals for the solution content item
    domains List<String>
    domain for the solution content item
    verticals List<String>
    Industry verticals for the solution content item
    domains string[]
    domain for the solution content item
    verticals string[]
    Industry verticals for the solution content item
    domains Sequence[str]
    domain for the solution content item
    verticals Sequence[str]
    Industry verticals for the solution content item
    domains List<String>
    domain for the solution content item
    verticals List<String>
    Industry verticals for the solution content item

    MetadataCategoriesResponse, MetadataCategoriesResponseArgs

    Domains List<string>
    domain for the solution content item
    Verticals List<string>
    Industry verticals for the solution content item
    Domains []string
    domain for the solution content item
    Verticals []string
    Industry verticals for the solution content item
    domains List<String>
    domain for the solution content item
    verticals List<String>
    Industry verticals for the solution content item
    domains string[]
    domain for the solution content item
    verticals string[]
    Industry verticals for the solution content item
    domains Sequence[str]
    domain for the solution content item
    verticals Sequence[str]
    Industry verticals for the solution content item
    domains List<String>
    domain for the solution content item
    verticals List<String>
    Industry verticals for the solution content item

    MetadataDependencies, MetadataDependenciesArgs

    ContentId string
    Id of the content item we depend on
    Criteria List<Pulumi.AzureNative.SecurityInsights.Inputs.MetadataDependencies>
    This is the list of dependencies we must fulfill, according to the AND/OR operator
    Kind string | Pulumi.AzureNative.SecurityInsights.Kind
    Type of the content item we depend on
    Name string
    Name of the content item
    Operator string | Pulumi.AzureNative.SecurityInsights.Operator
    Operator used for list of dependencies in criteria array.
    Version string
    Version of the the content item we depend on. Can be blank, * or missing to indicate any version fulfills the dependency. If version does not match our defined numeric format then an exact match is required.
    ContentId string
    Id of the content item we depend on
    Criteria []MetadataDependencies
    This is the list of dependencies we must fulfill, according to the AND/OR operator
    Kind string | Kind
    Type of the content item we depend on
    Name string
    Name of the content item
    Operator string | Operator
    Operator used for list of dependencies in criteria array.
    Version string
    Version of the the content item we depend on. Can be blank, * or missing to indicate any version fulfills the dependency. If version does not match our defined numeric format then an exact match is required.
    contentId String
    Id of the content item we depend on
    criteria List<MetadataDependencies>
    This is the list of dependencies we must fulfill, according to the AND/OR operator
    kind String | Kind
    Type of the content item we depend on
    name String
    Name of the content item
    operator String | Operator
    Operator used for list of dependencies in criteria array.
    version String
    Version of the the content item we depend on. Can be blank, * or missing to indicate any version fulfills the dependency. If version does not match our defined numeric format then an exact match is required.
    contentId string
    Id of the content item we depend on
    criteria MetadataDependencies[]
    This is the list of dependencies we must fulfill, according to the AND/OR operator
    kind string | Kind
    Type of the content item we depend on
    name string
    Name of the content item
    operator string | Operator
    Operator used for list of dependencies in criteria array.
    version string
    Version of the the content item we depend on. Can be blank, * or missing to indicate any version fulfills the dependency. If version does not match our defined numeric format then an exact match is required.
    content_id str
    Id of the content item we depend on
    criteria Sequence[MetadataDependencies]
    This is the list of dependencies we must fulfill, according to the AND/OR operator
    kind str | Kind
    Type of the content item we depend on
    name str
    Name of the content item
    operator str | Operator
    Operator used for list of dependencies in criteria array.
    version str
    Version of the the content item we depend on. Can be blank, * or missing to indicate any version fulfills the dependency. If version does not match our defined numeric format then an exact match is required.
    contentId String
    Id of the content item we depend on
    criteria List<Property Map>
    This is the list of dependencies we must fulfill, according to the AND/OR operator
    kind String | "DataConnector" | "DataType" | "Workbook" | "WorkbookTemplate" | "Playbook" | "PlaybookTemplate" | "AnalyticsRuleTemplate" | "AnalyticsRule" | "HuntingQuery" | "InvestigationQuery" | "Parser" | "Watchlist" | "WatchlistTemplate" | "Solution" | "AzureFunction" | "LogicAppsCustomConnector" | "AutomationRule"
    Type of the content item we depend on
    name String
    Name of the content item
    operator String | "AND" | "OR"
    Operator used for list of dependencies in criteria array.
    version String
    Version of the the content item we depend on. Can be blank, * or missing to indicate any version fulfills the dependency. If version does not match our defined numeric format then an exact match is required.

    MetadataDependenciesResponse, MetadataDependenciesResponseArgs

    ContentId string
    Id of the content item we depend on
    Criteria List<Pulumi.AzureNative.SecurityInsights.Inputs.MetadataDependenciesResponse>
    This is the list of dependencies we must fulfill, according to the AND/OR operator
    Kind string
    Type of the content item we depend on
    Name string
    Name of the content item
    Operator string
    Operator used for list of dependencies in criteria array.
    Version string
    Version of the the content item we depend on. Can be blank, * or missing to indicate any version fulfills the dependency. If version does not match our defined numeric format then an exact match is required.
    ContentId string
    Id of the content item we depend on
    Criteria []MetadataDependenciesResponse
    This is the list of dependencies we must fulfill, according to the AND/OR operator
    Kind string
    Type of the content item we depend on
    Name string
    Name of the content item
    Operator string
    Operator used for list of dependencies in criteria array.
    Version string
    Version of the the content item we depend on. Can be blank, * or missing to indicate any version fulfills the dependency. If version does not match our defined numeric format then an exact match is required.
    contentId String
    Id of the content item we depend on
    criteria List<MetadataDependenciesResponse>
    This is the list of dependencies we must fulfill, according to the AND/OR operator
    kind String
    Type of the content item we depend on
    name String
    Name of the content item
    operator String
    Operator used for list of dependencies in criteria array.
    version String
    Version of the the content item we depend on. Can be blank, * or missing to indicate any version fulfills the dependency. If version does not match our defined numeric format then an exact match is required.
    contentId string
    Id of the content item we depend on
    criteria MetadataDependenciesResponse[]
    This is the list of dependencies we must fulfill, according to the AND/OR operator
    kind string
    Type of the content item we depend on
    name string
    Name of the content item
    operator string
    Operator used for list of dependencies in criteria array.
    version string
    Version of the the content item we depend on. Can be blank, * or missing to indicate any version fulfills the dependency. If version does not match our defined numeric format then an exact match is required.
    content_id str
    Id of the content item we depend on
    criteria Sequence[MetadataDependenciesResponse]
    This is the list of dependencies we must fulfill, according to the AND/OR operator
    kind str
    Type of the content item we depend on
    name str
    Name of the content item
    operator str
    Operator used for list of dependencies in criteria array.
    version str
    Version of the the content item we depend on. Can be blank, * or missing to indicate any version fulfills the dependency. If version does not match our defined numeric format then an exact match is required.
    contentId String
    Id of the content item we depend on
    criteria List<Property Map>
    This is the list of dependencies we must fulfill, according to the AND/OR operator
    kind String
    Type of the content item we depend on
    name String
    Name of the content item
    operator String
    Operator used for list of dependencies in criteria array.
    version String
    Version of the the content item we depend on. Can be blank, * or missing to indicate any version fulfills the dependency. If version does not match our defined numeric format then an exact match is required.

    MetadataSource, MetadataSourceArgs

    Kind string | Pulumi.AzureNative.SecurityInsights.SourceKind
    Source type of the content
    Name string
    Name of the content source. The repo name, solution name, LA workspace name etc.
    SourceId string
    ID of the content source. The solution ID, workspace ID, etc
    Kind string | SourceKind
    Source type of the content
    Name string
    Name of the content source. The repo name, solution name, LA workspace name etc.
    SourceId string
    ID of the content source. The solution ID, workspace ID, etc
    kind String | SourceKind
    Source type of the content
    name String
    Name of the content source. The repo name, solution name, LA workspace name etc.
    sourceId String
    ID of the content source. The solution ID, workspace ID, etc
    kind string | SourceKind
    Source type of the content
    name string
    Name of the content source. The repo name, solution name, LA workspace name etc.
    sourceId string
    ID of the content source. The solution ID, workspace ID, etc
    kind str | SourceKind
    Source type of the content
    name str
    Name of the content source. The repo name, solution name, LA workspace name etc.
    source_id str
    ID of the content source. The solution ID, workspace ID, etc
    kind String | "LocalWorkspace" | "Community" | "Solution" | "SourceRepository"
    Source type of the content
    name String
    Name of the content source. The repo name, solution name, LA workspace name etc.
    sourceId String
    ID of the content source. The solution ID, workspace ID, etc

    MetadataSourceResponse, MetadataSourceResponseArgs

    Kind string
    Source type of the content
    Name string
    Name of the content source. The repo name, solution name, LA workspace name etc.
    SourceId string
    ID of the content source. The solution ID, workspace ID, etc
    Kind string
    Source type of the content
    Name string
    Name of the content source. The repo name, solution name, LA workspace name etc.
    SourceId string
    ID of the content source. The solution ID, workspace ID, etc
    kind String
    Source type of the content
    name String
    Name of the content source. The repo name, solution name, LA workspace name etc.
    sourceId String
    ID of the content source. The solution ID, workspace ID, etc
    kind string
    Source type of the content
    name string
    Name of the content source. The repo name, solution name, LA workspace name etc.
    sourceId string
    ID of the content source. The solution ID, workspace ID, etc
    kind str
    Source type of the content
    name str
    Name of the content source. The repo name, solution name, LA workspace name etc.
    source_id str
    ID of the content source. The solution ID, workspace ID, etc
    kind String
    Source type of the content
    name String
    Name of the content source. The repo name, solution name, LA workspace name etc.
    sourceId String
    ID of the content source. The solution ID, workspace ID, etc

    MetadataSupport, MetadataSupportArgs

    Tier string | Pulumi.AzureNative.SecurityInsights.SupportTier
    Type of support for content item
    Email string
    Email of support contact
    Link string
    Link for support help, like to support page to open a ticket etc.
    Name string
    Name of the support contact. Company or person.
    Tier string | SupportTier
    Type of support for content item
    Email string
    Email of support contact
    Link string
    Link for support help, like to support page to open a ticket etc.
    Name string
    Name of the support contact. Company or person.
    tier String | SupportTier
    Type of support for content item
    email String
    Email of support contact
    link String
    Link for support help, like to support page to open a ticket etc.
    name String
    Name of the support contact. Company or person.
    tier string | SupportTier
    Type of support for content item
    email string
    Email of support contact
    link string
    Link for support help, like to support page to open a ticket etc.
    name string
    Name of the support contact. Company or person.
    tier str | SupportTier
    Type of support for content item
    email str
    Email of support contact
    link str
    Link for support help, like to support page to open a ticket etc.
    name str
    Name of the support contact. Company or person.
    tier String | "Microsoft" | "Partner" | "Community"
    Type of support for content item
    email String
    Email of support contact
    link String
    Link for support help, like to support page to open a ticket etc.
    name String
    Name of the support contact. Company or person.

    MetadataSupportResponse, MetadataSupportResponseArgs

    Tier string
    Type of support for content item
    Email string
    Email of support contact
    Link string
    Link for support help, like to support page to open a ticket etc.
    Name string
    Name of the support contact. Company or person.
    Tier string
    Type of support for content item
    Email string
    Email of support contact
    Link string
    Link for support help, like to support page to open a ticket etc.
    Name string
    Name of the support contact. Company or person.
    tier String
    Type of support for content item
    email String
    Email of support contact
    link String
    Link for support help, like to support page to open a ticket etc.
    name String
    Name of the support contact. Company or person.
    tier string
    Type of support for content item
    email string
    Email of support contact
    link string
    Link for support help, like to support page to open a ticket etc.
    name string
    Name of the support contact. Company or person.
    tier str
    Type of support for content item
    email str
    Email of support contact
    link str
    Link for support help, like to support page to open a ticket etc.
    name str
    Name of the support contact. Company or person.
    tier String
    Type of support for content item
    email String
    Email of support contact
    link String
    Link for support help, like to support page to open a ticket etc.
    name String
    Name of the support contact. Company or person.

    Operator, OperatorArgs

    AND
    AND
    OR
    OR
    OperatorAND
    AND
    OperatorOR
    OR
    AND
    AND
    OR
    OR
    AND
    AND
    OR
    OR
    AND_
    AND
    OR_
    OR
    "AND"
    AND
    "OR"
    OR

    PackageKind, PackageKindArgs

    Solution
    Solution
    Standalone
    Standalone
    PackageKindSolution
    Solution
    PackageKindStandalone
    Standalone
    Solution
    Solution
    Standalone
    Standalone
    Solution
    Solution
    Standalone
    Standalone
    SOLUTION
    Solution
    STANDALONE
    Standalone
    "Solution"
    Solution
    "Standalone"
    Standalone

    SourceKind, SourceKindArgs

    LocalWorkspace
    LocalWorkspace
    Community
    Community
    Solution
    Solution
    SourceRepository
    SourceRepository
    SourceKindLocalWorkspace
    LocalWorkspace
    SourceKindCommunity
    Community
    SourceKindSolution
    Solution
    SourceKindSourceRepository
    SourceRepository
    LocalWorkspace
    LocalWorkspace
    Community
    Community
    Solution
    Solution
    SourceRepository
    SourceRepository
    LocalWorkspace
    LocalWorkspace
    Community
    Community
    Solution
    Solution
    SourceRepository
    SourceRepository
    LOCAL_WORKSPACE
    LocalWorkspace
    COMMUNITY
    Community
    SOLUTION
    Solution
    SOURCE_REPOSITORY
    SourceRepository
    "LocalWorkspace"
    LocalWorkspace
    "Community"
    Community
    "Solution"
    Solution
    "SourceRepository"
    SourceRepository

    SupportTier, SupportTierArgs

    Microsoft
    Microsoft
    Partner
    Partner
    Community
    Community
    SupportTierMicrosoft
    Microsoft
    SupportTierPartner
    Partner
    SupportTierCommunity
    Community
    Microsoft
    Microsoft
    Partner
    Partner
    Community
    Community
    Microsoft
    Microsoft
    Partner
    Partner
    Community
    Community
    MICROSOFT
    Microsoft
    PARTNER
    Partner
    COMMUNITY
    Community
    "Microsoft"
    Microsoft
    "Partner"
    Partner
    "Community"
    Community

    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.

    Import

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

    $ pulumi import azure-native:securityinsights:ContentPackage str.azure-sentinel-solution-str /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/contentPackages/{packageId} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi