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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Workspace
Name string - The name of the workspace.
- Description string
- The description of the Summary rule.
- Display
Name string - The display name of the Summary rule.
- Rule
Definition Pulumi.Azure Native. Operational Insights. Inputs. Rule Definition - Rule definition parameters.
- Rule
Type string | Pulumi.Azure Native. Operational Insights. Rule Type Enum - SummaryRules rule type: User.
- Summary
Logs stringName - The name of the summary logs. Must not contain '/'.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Workspace
Name string - The name of the workspace.
- Description string
- The description of the Summary rule.
- Display
Name string - The display name of the Summary rule.
- Rule
Definition RuleDefinition Args - Rule definition parameters.
- Rule
Type string | RuleType Enum - SummaryRules rule type: User.
- Summary
Logs stringName - The name of the summary logs. Must not contain '/'.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- workspace
Name String - The name of the workspace.
- description String
- The description of the Summary rule.
- display
Name String - The display name of the Summary rule.
- rule
Definition RuleDefinition - Rule definition parameters.
- rule
Type String | RuleType Enum - SummaryRules rule type: User.
- summary
Logs StringName - The name of the summary logs. Must not contain '/'.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- workspace
Name string - The name of the workspace.
- description string
- The description of the Summary rule.
- display
Name string - The display name of the Summary rule.
- rule
Definition RuleDefinition - Rule definition parameters.
- rule
Type string | RuleType Enum - SummaryRules rule type: User.
- summary
Logs stringName - The name of the summary logs. Must not contain '/'.
- resource_
group_ strname - 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 RuleDefinition Args - Rule definition parameters.
- rule_
type str | RuleType Enum - SummaryRules rule type: User.
- summary_
logs_ strname - The name of the summary logs. Must not contain '/'.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- workspace
Name String - The name of the workspace.
- description String
- The description of the Summary rule.
- display
Name String - The display name of the Summary rule.
- rule
Definition Property Map - Rule definition parameters.
- rule
Type String | "User" - SummaryRules rule type: User.
- summary
Logs StringName - 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:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- 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 string
- The name of the resource
- Provisioning
State 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.
- Status
Code string - Indicates the reason for rule deactivation.
- System
Data Pulumi.Azure Native. Operational 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"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- 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 string
- The name of the resource
- Provisioning
State 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.
- Status
Code string - Indicates the reason for rule deactivation.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Active Boolean - Indicates if Summary rule is active. If not, Summary rule execution stops.
- name String
- The name of the resource
- provisioning
State 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.
- status
Code String - Indicates the reason for rule deactivation.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Active boolean - Indicates if Summary rule is active. If not, Summary rule execution stops.
- name string
- The name of the resource
- provisioning
State 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.
- status
Code string - Indicates the reason for rule deactivation.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ strversion - 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 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"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Active Boolean - Indicates if Summary rule is active. If not, Summary rule execution stops.
- name String
- The name of the resource
- provisioning
State 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.
- status
Code String - Indicates the reason for rule deactivation.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
RuleDefinition, RuleDefinitionArgs
Rule definition parameters.- 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 stringTime - The start time (UTC) when Summary rule execution starts.
- Destination
Table string - The destination table used for the Summary rule results.
- Query string
- Summary rule query.
- Time
Selector string | Pulumi.Azure Native. Operational Insights. Time Selector Enum - 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 stringTime - The start time (UTC) when Summary rule execution starts.
- Destination
Table string - The destination table used for the Summary rule results.
- Query string
- Summary rule query.
- Time
Selector string | TimeSelector Enum - The time cursor used in Summary rules bins processing, e.g. TimeGenerated.
- bin
Delay Integer - The minimum delay in seconds before bin processing.
- bin
Size Integer - Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440.
- bin
Start StringTime - The start time (UTC) when Summary rule execution starts.
- destination
Table String - The destination table used for the Summary rule results.
- query String
- Summary rule query.
- time
Selector String | TimeSelector Enum - The time cursor used in Summary rules bins processing, e.g. TimeGenerated.
- bin
Delay number - The minimum delay in seconds before bin processing.
- bin
Size number - Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440.
- bin
Start stringTime - The start time (UTC) when Summary rule execution starts.
- destination
Table string - The destination table used for the Summary rule results.
- query string
- Summary rule query.
- time
Selector string | TimeSelector Enum - 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_ strtime - 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 | TimeSelector Enum - The time cursor used in Summary rules bins processing, e.g. TimeGenerated.
- bin
Delay Number - The minimum delay in seconds before bin processing.
- bin
Size Number - Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440.
- bin
Start StringTime - The start time (UTC) when Summary rule execution starts.
- destination
Table String - The destination table used for the Summary rule results.
- query String
- Summary rule query.
- time
Selector String | "TimeGenerated" - The time cursor used in Summary rules bins processing, e.g. TimeGenerated.
RuleDefinitionResponse, RuleDefinitionResponseArgs
Rule definition parameters.- 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 stringTime - The start time (UTC) when Summary rule execution starts.
- Destination
Table string - The destination table used for the Summary rule results.
- Query string
- Summary rule query.
- Time
Selector 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 stringTime - The start time (UTC) when Summary rule execution starts.
- Destination
Table string - The destination table used for the Summary rule results.
- Query string
- Summary rule query.
- Time
Selector string - The time cursor used in Summary rules bins processing, e.g. TimeGenerated.
- bin
Delay Integer - The minimum delay in seconds before bin processing.
- bin
Size Integer - Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440.
- bin
Start StringTime - The start time (UTC) when Summary rule execution starts.
- destination
Table String - The destination table used for the Summary rule results.
- query String
- Summary rule query.
- time
Selector String - The time cursor used in Summary rules bins processing, e.g. TimeGenerated.
- bin
Delay number - The minimum delay in seconds before bin processing.
- bin
Size number - Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440.
- bin
Start stringTime - The start time (UTC) when Summary rule execution starts.
- destination
Table string - The destination table used for the Summary rule results.
- query string
- Summary rule query.
- time
Selector 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_ strtime - 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.
- bin
Delay Number - The minimum delay in seconds before bin processing.
- bin
Size Number - Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440.
- bin
Start StringTime - The start time (UTC) when Summary rule execution starts.
- destination
Table String - The destination table used for the Summary rule results.
- query String
- Summary rule query.
- time
Selector String - The time cursor used in Summary rules bins processing, e.g. TimeGenerated.
RuleTypeEnum, RuleTypeEnumArgs
- User
UserUser defined summary rule. This is the definition for rules created and defined by users.
- Rule
Type Enum User UserUser defined summary rule. This is the definition for rules created and defined by users.
- User
UserUser defined summary rule. This is the definition for rules created and defined by users.
- User
UserUser defined summary rule. This is the definition for rules created and defined by users.
- USER
UserUser defined summary rule. This is the definition for rules created and defined by users.
- "User"
UserUser 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.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
TimeSelectorEnum, TimeSelectorEnumArgs
- Time
Generated TimeGeneratedTimeGenerated.
- Time
Selector Enum Time Generated TimeGeneratedTimeGenerated.
- Time
Generated TimeGeneratedTimeGenerated.
- Time
Generated TimeGeneratedTimeGenerated.
- TIME_GENERATED
TimeGeneratedTimeGenerated.
- "Time
Generated" TimeGeneratedTimeGenerated.
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
