1. Packages
  2. Azure Native
  3. API Docs
  4. operationalinsights
  5. SummaryLog
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.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
azure-native logo
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.13.0 published on Wednesday, Jan 28, 2026 by Pulumi

    Workspace data summary rules definition.

    Uses Azure REST API version 2025-07-01.

    Example Usage

    SummaryLogsUpsert

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var summaryLog = new AzureNative.OperationalInsights.SummaryLog("summaryLog", new()
        {
            ResourceGroupName = "oiautorest6685",
            RuleDefinition = new AzureNative.OperationalInsights.Inputs.RuleDefinitionArgs
            {
                BinDelay = 10,
                BinSize = 180,
                BinStartTime = "2020-02-03T04:05:06Z",
                DestinationTable = "MyDestinationTable_CL",
                Query = "MyTable_CL",
            },
            RuleType = AzureNative.OperationalInsights.RuleTypeEnum.User,
            SummaryLogsName = "summarylogs1",
            WorkspaceName = "oiautorest6685",
        });
    
    });
    
    package main
    
    import (
    	operationalinsights "github.com/pulumi/pulumi-azure-native-sdk/operationalinsights/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := operationalinsights.NewSummaryLog(ctx, "summaryLog", &operationalinsights.SummaryLogArgs{
    			ResourceGroupName: pulumi.String("oiautorest6685"),
    			RuleDefinition: &operationalinsights.RuleDefinitionArgs{
    				BinDelay:         pulumi.Int(10),
    				BinSize:          pulumi.Int(180),
    				BinStartTime:     pulumi.String("2020-02-03T04:05:06Z"),
    				DestinationTable: pulumi.String("MyDestinationTable_CL"),
    				Query:            pulumi.String("MyTable_CL"),
    			},
    			RuleType:        pulumi.String(operationalinsights.RuleTypeEnumUser),
    			SummaryLogsName: pulumi.String("summarylogs1"),
    			WorkspaceName:   pulumi.String("oiautorest6685"),
    		})
    		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.operationalinsights.SummaryLog;
    import com.pulumi.azurenative.operationalinsights.SummaryLogArgs;
    import com.pulumi.azurenative.operationalinsights.inputs.RuleDefinitionArgs;
    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 summaryLog = new SummaryLog("summaryLog", SummaryLogArgs.builder()
                .resourceGroupName("oiautorest6685")
                .ruleDefinition(RuleDefinitionArgs.builder()
                    .binDelay(10)
                    .binSize(180)
                    .binStartTime("2020-02-03T04:05:06Z")
                    .destinationTable("MyDestinationTable_CL")
                    .query("MyTable_CL")
                    .build())
                .ruleType("User")
                .summaryLogsName("summarylogs1")
                .workspaceName("oiautorest6685")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const summaryLog = new azure_native.operationalinsights.SummaryLog("summaryLog", {
        resourceGroupName: "oiautorest6685",
        ruleDefinition: {
            binDelay: 10,
            binSize: 180,
            binStartTime: "2020-02-03T04:05:06Z",
            destinationTable: "MyDestinationTable_CL",
            query: "MyTable_CL",
        },
        ruleType: azure_native.operationalinsights.RuleTypeEnum.User,
        summaryLogsName: "summarylogs1",
        workspaceName: "oiautorest6685",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    summary_log = azure_native.operationalinsights.SummaryLog("summaryLog",
        resource_group_name="oiautorest6685",
        rule_definition={
            "bin_delay": 10,
            "bin_size": 180,
            "bin_start_time": "2020-02-03T04:05:06Z",
            "destination_table": "MyDestinationTable_CL",
            "query": "MyTable_CL",
        },
        rule_type=azure_native.operationalinsights.RuleTypeEnum.USER,
        summary_logs_name="summarylogs1",
        workspace_name="oiautorest6685")
    
    resources:
      summaryLog:
        type: azure-native:operationalinsights:SummaryLog
        properties:
          resourceGroupName: oiautorest6685
          ruleDefinition:
            binDelay: 10
            binSize: 180
            binStartTime: 2020-02-03T04:05:06Z
            destinationTable: MyDestinationTable_CL
            query: MyTable_CL
          ruleType: User
          summaryLogsName: summarylogs1
          workspaceName: oiautorest6685
    

    Create SummaryLog Resource

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

    Constructor syntax

    new SummaryLog(name: string, args: SummaryLogArgs, opts?: CustomResourceOptions);
    @overload
    def SummaryLog(resource_name: str,
                   args: SummaryLogArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def SummaryLog(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   resource_group_name: Optional[str] = None,
                   workspace_name: Optional[str] = None,
                   description: Optional[str] = None,
                   display_name: Optional[str] = None,
                   rule_definition: Optional[RuleDefinitionArgs] = None,
                   rule_type: Optional[Union[str, RuleTypeEnum]] = None,
                   summary_logs_name: Optional[str] = None)
    func NewSummaryLog(ctx *Context, name string, args SummaryLogArgs, opts ...ResourceOption) (*SummaryLog, error)
    public SummaryLog(string name, SummaryLogArgs args, CustomResourceOptions? opts = null)
    public SummaryLog(String name, SummaryLogArgs args)
    public SummaryLog(String name, SummaryLogArgs args, CustomResourceOptions options)
    
    type: azure-native:operationalinsights:SummaryLog
    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 SummaryLogArgs
    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 SummaryLogArgs
    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 SummaryLogArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SummaryLogArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SummaryLogArgs
    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 summaryLogResource = new AzureNative.OperationalInsights.SummaryLog("summaryLogResource", new()
    {
        ResourceGroupName = "string",
        WorkspaceName = "string",
        Description = "string",
        DisplayName = "string",
        RuleDefinition = new AzureNative.OperationalInsights.Inputs.RuleDefinitionArgs
        {
            BinDelay = 0,
            BinSize = 0,
            BinStartTime = "string",
            DestinationTable = "string",
            Query = "string",
            TimeSelector = "string",
        },
        RuleType = "string",
        SummaryLogsName = "string",
    });
    
    example, err := operationalinsights.NewSummaryLog(ctx, "summaryLogResource", &operationalinsights.SummaryLogArgs{
    	ResourceGroupName: pulumi.String("string"),
    	WorkspaceName:     pulumi.String("string"),
    	Description:       pulumi.String("string"),
    	DisplayName:       pulumi.String("string"),
    	RuleDefinition: &operationalinsights.RuleDefinitionArgs{
    		BinDelay:         pulumi.Int(0),
    		BinSize:          pulumi.Int(0),
    		BinStartTime:     pulumi.String("string"),
    		DestinationTable: pulumi.String("string"),
    		Query:            pulumi.String("string"),
    		TimeSelector:     pulumi.String("string"),
    	},
    	RuleType:        pulumi.String("string"),
    	SummaryLogsName: pulumi.String("string"),
    })
    
    var summaryLogResource = new SummaryLog("summaryLogResource", SummaryLogArgs.builder()
        .resourceGroupName("string")
        .workspaceName("string")
        .description("string")
        .displayName("string")
        .ruleDefinition(RuleDefinitionArgs.builder()
            .binDelay(0)
            .binSize(0)
            .binStartTime("string")
            .destinationTable("string")
            .query("string")
            .timeSelector("string")
            .build())
        .ruleType("string")
        .summaryLogsName("string")
        .build());
    
    summary_log_resource = azure_native.operationalinsights.SummaryLog("summaryLogResource",
        resource_group_name="string",
        workspace_name="string",
        description="string",
        display_name="string",
        rule_definition={
            "bin_delay": 0,
            "bin_size": 0,
            "bin_start_time": "string",
            "destination_table": "string",
            "query": "string",
            "time_selector": "string",
        },
        rule_type="string",
        summary_logs_name="string")
    
    const summaryLogResource = new azure_native.operationalinsights.SummaryLog("summaryLogResource", {
        resourceGroupName: "string",
        workspaceName: "string",
        description: "string",
        displayName: "string",
        ruleDefinition: {
            binDelay: 0,
            binSize: 0,
            binStartTime: "string",
            destinationTable: "string",
            query: "string",
            timeSelector: "string",
        },
        ruleType: "string",
        summaryLogsName: "string",
    });
    
    type: azure-native:operationalinsights:SummaryLog
    properties:
        description: string
        displayName: string
        resourceGroupName: string
        ruleDefinition:
            binDelay: 0
            binSize: 0
            binStartTime: string
            destinationTable: string
            query: string
            timeSelector: string
        ruleType: string
        summaryLogsName: string
        workspaceName: string
    

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

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    WorkspaceName string
    The name of the workspace.
    Description string
    The description of the Summary rule.
    DisplayName string
    The display name of the Summary rule.
    RuleDefinition Pulumi.AzureNative.OperationalInsights.Inputs.RuleDefinition
    Rule definition parameters.
    RuleType string | Pulumi.AzureNative.OperationalInsights.RuleTypeEnum
    SummaryRules rule type: User.
    SummaryLogsName string
    The name of the summary logs. Must not contain '/'.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    WorkspaceName string
    The name of the workspace.
    Description string
    The description of the Summary rule.
    DisplayName string
    The display name of the Summary rule.
    RuleDefinition RuleDefinitionArgs
    Rule definition parameters.
    RuleType string | RuleTypeEnum
    SummaryRules rule type: User.
    SummaryLogsName string
    The name of the summary logs. Must not contain '/'.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    workspaceName String
    The name of the workspace.
    description String
    The description of the Summary rule.
    displayName String
    The display name of the Summary rule.
    ruleDefinition RuleDefinition
    Rule definition parameters.
    ruleType String | RuleTypeEnum
    SummaryRules rule type: User.
    summaryLogsName String
    The name of the summary logs. Must not contain '/'.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    workspaceName string
    The name of the workspace.
    description string
    The description of the Summary rule.
    displayName string
    The display name of the Summary rule.
    ruleDefinition RuleDefinition
    Rule definition parameters.
    ruleType string | RuleTypeEnum
    SummaryRules rule type: User.
    summaryLogsName string
    The name of the summary logs. Must not contain '/'.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    workspace_name str
    The name of the workspace.
    description str
    The description of the Summary rule.
    display_name str
    The display name of the Summary rule.
    rule_definition RuleDefinitionArgs
    Rule definition parameters.
    rule_type str | RuleTypeEnum
    SummaryRules rule type: User.
    summary_logs_name str
    The name of the summary logs. Must not contain '/'.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    workspaceName String
    The name of the workspace.
    description String
    The description of the Summary rule.
    displayName String
    The display name of the Summary rule.
    ruleDefinition Property Map
    Rule definition parameters.
    ruleType String | "User"
    SummaryRules rule type: User.
    summaryLogsName String
    The name of the summary logs. Must not contain '/'.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SummaryLog 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.
    IsActive bool
    Indicates if Summary rule is active. If not, Summary rule execution stops.
    Name string
    The name of the resource
    ProvisioningState string
    Summary rule is in provisioning state. If set to 'updating' or 'deleting', indicates a resource lock due to an ongoing operation, preventing any update to the Summary rule until the operation is complete.
    StatusCode string
    Indicates the reason for rule deactivation.
    SystemData Pulumi.AzureNative.OperationalInsights.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"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    IsActive bool
    Indicates if Summary rule is active. If not, Summary rule execution stops.
    Name string
    The name of the resource
    ProvisioningState string
    Summary rule is in provisioning state. If set to 'updating' or 'deleting', indicates a resource lock due to an ongoing operation, preventing any update to the Summary rule until the operation is complete.
    StatusCode string
    Indicates the reason for rule deactivation.
    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"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    isActive Boolean
    Indicates if Summary rule is active. If not, Summary rule execution stops.
    name String
    The name of the resource
    provisioningState String
    Summary rule is in provisioning state. If set to 'updating' or 'deleting', indicates a resource lock due to an ongoing operation, preventing any update to the Summary rule until the operation is complete.
    statusCode String
    Indicates the reason for rule deactivation.
    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"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    isActive boolean
    Indicates if Summary rule is active. If not, Summary rule execution stops.
    name string
    The name of the resource
    provisioningState string
    Summary rule is in provisioning state. If set to 'updating' or 'deleting', indicates a resource lock due to an ongoing operation, preventing any update to the Summary rule until the operation is complete.
    statusCode string
    Indicates the reason for rule deactivation.
    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"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    is_active bool
    Indicates if Summary rule is active. If not, Summary rule execution stops.
    name str
    The name of the resource
    provisioning_state str
    Summary rule is in provisioning state. If set to 'updating' or 'deleting', indicates a resource lock due to an ongoing operation, preventing any update to the Summary rule until the operation is complete.
    status_code str
    Indicates the reason for rule deactivation.
    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"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    isActive Boolean
    Indicates if Summary rule is active. If not, Summary rule execution stops.
    name String
    The name of the resource
    provisioningState String
    Summary rule is in provisioning state. If set to 'updating' or 'deleting', indicates a resource lock due to an ongoing operation, preventing any update to the Summary rule until the operation is complete.
    statusCode String
    Indicates the reason for rule deactivation.
    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"

    Supporting Types

    RuleDefinition, RuleDefinitionArgs

    Rule definition parameters.
    BinDelay int
    The minimum delay in seconds before bin processing.
    BinSize int
    Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440.
    BinStartTime string
    The start time (UTC) when Summary rule execution starts.
    DestinationTable string
    The destination table used for the Summary rule results.
    Query string
    Summary rule query.
    TimeSelector string | Pulumi.AzureNative.OperationalInsights.TimeSelectorEnum
    The time cursor used in Summary rules bins processing, e.g. TimeGenerated.
    BinDelay int
    The minimum delay in seconds before bin processing.
    BinSize int
    Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440.
    BinStartTime string
    The start time (UTC) when Summary rule execution starts.
    DestinationTable string
    The destination table used for the Summary rule results.
    Query string
    Summary rule query.
    TimeSelector string | TimeSelectorEnum
    The time cursor used in Summary rules bins processing, e.g. TimeGenerated.
    binDelay Integer
    The minimum delay in seconds before bin processing.
    binSize Integer
    Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440.
    binStartTime String
    The start time (UTC) when Summary rule execution starts.
    destinationTable String
    The destination table used for the Summary rule results.
    query String
    Summary rule query.
    timeSelector String | TimeSelectorEnum
    The time cursor used in Summary rules bins processing, e.g. TimeGenerated.
    binDelay number
    The minimum delay in seconds before bin processing.
    binSize number
    Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440.
    binStartTime string
    The start time (UTC) when Summary rule execution starts.
    destinationTable string
    The destination table used for the Summary rule results.
    query string
    Summary rule query.
    timeSelector string | TimeSelectorEnum
    The time cursor used in Summary rules bins processing, e.g. TimeGenerated.
    bin_delay int
    The minimum delay in seconds before bin processing.
    bin_size int
    Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440.
    bin_start_time str
    The start time (UTC) when Summary rule execution starts.
    destination_table str
    The destination table used for the Summary rule results.
    query str
    Summary rule query.
    time_selector str | TimeSelectorEnum
    The time cursor used in Summary rules bins processing, e.g. TimeGenerated.
    binDelay Number
    The minimum delay in seconds before bin processing.
    binSize Number
    Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440.
    binStartTime String
    The start time (UTC) when Summary rule execution starts.
    destinationTable String
    The destination table used for the Summary rule results.
    query String
    Summary rule query.
    timeSelector String | "TimeGenerated"
    The time cursor used in Summary rules bins processing, e.g. TimeGenerated.

    RuleDefinitionResponse, RuleDefinitionResponseArgs

    Rule definition parameters.
    BinDelay int
    The minimum delay in seconds before bin processing.
    BinSize int
    Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440.
    BinStartTime string
    The start time (UTC) when Summary rule execution starts.
    DestinationTable string
    The destination table used for the Summary rule results.
    Query string
    Summary rule query.
    TimeSelector string
    The time cursor used in Summary rules bins processing, e.g. TimeGenerated.
    BinDelay int
    The minimum delay in seconds before bin processing.
    BinSize int
    Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440.
    BinStartTime string
    The start time (UTC) when Summary rule execution starts.
    DestinationTable string
    The destination table used for the Summary rule results.
    Query string
    Summary rule query.
    TimeSelector string
    The time cursor used in Summary rules bins processing, e.g. TimeGenerated.
    binDelay Integer
    The minimum delay in seconds before bin processing.
    binSize Integer
    Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440.
    binStartTime String
    The start time (UTC) when Summary rule execution starts.
    destinationTable String
    The destination table used for the Summary rule results.
    query String
    Summary rule query.
    timeSelector String
    The time cursor used in Summary rules bins processing, e.g. TimeGenerated.
    binDelay number
    The minimum delay in seconds before bin processing.
    binSize number
    Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440.
    binStartTime string
    The start time (UTC) when Summary rule execution starts.
    destinationTable string
    The destination table used for the Summary rule results.
    query string
    Summary rule query.
    timeSelector string
    The time cursor used in Summary rules bins processing, e.g. TimeGenerated.
    bin_delay int
    The minimum delay in seconds before bin processing.
    bin_size int
    Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440.
    bin_start_time str
    The start time (UTC) when Summary rule execution starts.
    destination_table str
    The destination table used for the Summary rule results.
    query str
    Summary rule query.
    time_selector str
    The time cursor used in Summary rules bins processing, e.g. TimeGenerated.
    binDelay Number
    The minimum delay in seconds before bin processing.
    binSize Number
    Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440.
    binStartTime String
    The start time (UTC) when Summary rule execution starts.
    destinationTable String
    The destination table used for the Summary rule results.
    query String
    Summary rule query.
    timeSelector String
    The time cursor used in Summary rules bins processing, e.g. TimeGenerated.

    RuleTypeEnum, RuleTypeEnumArgs

    User
    User User defined summary rule. This is the definition for rules created and defined by users.
    RuleTypeEnumUser
    User User defined summary rule. This is the definition for rules created and defined by users.
    User
    User User defined summary rule. This is the definition for rules created and defined by users.
    User
    User User defined summary rule. This is the definition for rules created and defined by users.
    USER
    User User defined summary rule. This is the definition for rules created and defined by users.
    "User"
    User User defined summary rule. This is the definition for rules created and defined by users.

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of 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.
    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.

    TimeSelectorEnum, TimeSelectorEnumArgs

    TimeGenerated
    TimeGenerated TimeGenerated.
    TimeSelectorEnumTimeGenerated
    TimeGenerated TimeGenerated.
    TimeGenerated
    TimeGenerated TimeGenerated.
    TimeGenerated
    TimeGenerated TimeGenerated.
    TIME_GENERATED
    TimeGenerated TimeGenerated.
    "TimeGenerated"
    TimeGenerated TimeGenerated.

    Import

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

    $ pulumi import azure-native:operationalinsights:SummaryLog summarylogs1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/summaryLogs/{summaryLogsName} 
    

    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 v2 docs if using the v2 version of this package.
    Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate