Azure Native v1.102.0, May 2 23
Azure Native v1.102.0, May 2 23
azure-native.securityinsights.MicrosoftSecurityIncidentCreationAlertRule
Explore with Pulumi AI
Represents MicrosoftSecurityIncidentCreation rule. API Version: 2020-01-01.
Example Usage
Creates or updates a Fusion alert rule.
using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var microsoftSecurityIncidentCreationAlertRule = new AzureNative.SecurityInsights.MicrosoftSecurityIncidentCreationAlertRule("microsoftSecurityIncidentCreationAlertRule", new()
{
ResourceGroupName = "myRg",
RuleId = "myFirstFusionRule",
WorkspaceName = "myWorkspace",
});
});
package main
import (
securityinsights "github.com/pulumi/pulumi-azure-native/sdk/go/azure/securityinsights"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := securityinsights.NewMicrosoftSecurityIncidentCreationAlertRule(ctx, "microsoftSecurityIncidentCreationAlertRule", &securityinsights.MicrosoftSecurityIncidentCreationAlertRuleArgs{
ResourceGroupName: pulumi.String("myRg"),
RuleId: pulumi.String("myFirstFusionRule"),
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.MicrosoftSecurityIncidentCreationAlertRule;
import com.pulumi.azurenative.securityinsights.MicrosoftSecurityIncidentCreationAlertRuleArgs;
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 microsoftSecurityIncidentCreationAlertRule = new MicrosoftSecurityIncidentCreationAlertRule("microsoftSecurityIncidentCreationAlertRule", MicrosoftSecurityIncidentCreationAlertRuleArgs.builder()
.resourceGroupName("myRg")
.ruleId("myFirstFusionRule")
.workspaceName("myWorkspace")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
microsoft_security_incident_creation_alert_rule = azure_native.securityinsights.MicrosoftSecurityIncidentCreationAlertRule("microsoftSecurityIncidentCreationAlertRule",
resource_group_name="myRg",
rule_id="myFirstFusionRule",
workspace_name="myWorkspace")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const microsoftSecurityIncidentCreationAlertRule = new azure_native.securityinsights.MicrosoftSecurityIncidentCreationAlertRule("microsoftSecurityIncidentCreationAlertRule", {
resourceGroupName: "myRg",
ruleId: "myFirstFusionRule",
workspaceName: "myWorkspace",
});
resources:
microsoftSecurityIncidentCreationAlertRule:
type: azure-native:securityinsights:MicrosoftSecurityIncidentCreationAlertRule
properties:
resourceGroupName: myRg
ruleId: myFirstFusionRule
workspaceName: myWorkspace
Creates or updates a MicrosoftSecurityIncidentCreation rule.
using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var microsoftSecurityIncidentCreationAlertRule = new AzureNative.SecurityInsights.MicrosoftSecurityIncidentCreationAlertRule("microsoftSecurityIncidentCreationAlertRule", new()
{
DisplayName = "testing displayname",
Enabled = true,
Kind = "MicrosoftSecurityIncidentCreation",
ProductFilter = "Microsoft Cloud App Security",
ResourceGroupName = "myRg",
RuleId = "microsoftSecurityIncidentCreationRuleExample",
WorkspaceName = "myWorkspace",
});
});
package main
import (
securityinsights "github.com/pulumi/pulumi-azure-native/sdk/go/azure/securityinsights"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := securityinsights.NewMicrosoftSecurityIncidentCreationAlertRule(ctx, "microsoftSecurityIncidentCreationAlertRule", &securityinsights.MicrosoftSecurityIncidentCreationAlertRuleArgs{
DisplayName: pulumi.String("testing displayname"),
Enabled: pulumi.Bool(true),
Kind: pulumi.String("MicrosoftSecurityIncidentCreation"),
ProductFilter: pulumi.String("Microsoft Cloud App Security"),
ResourceGroupName: pulumi.String("myRg"),
RuleId: pulumi.String("microsoftSecurityIncidentCreationRuleExample"),
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.MicrosoftSecurityIncidentCreationAlertRule;
import com.pulumi.azurenative.securityinsights.MicrosoftSecurityIncidentCreationAlertRuleArgs;
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 microsoftSecurityIncidentCreationAlertRule = new MicrosoftSecurityIncidentCreationAlertRule("microsoftSecurityIncidentCreationAlertRule", MicrosoftSecurityIncidentCreationAlertRuleArgs.builder()
.displayName("testing displayname")
.enabled(true)
.kind("MicrosoftSecurityIncidentCreation")
.productFilter("Microsoft Cloud App Security")
.resourceGroupName("myRg")
.ruleId("microsoftSecurityIncidentCreationRuleExample")
.workspaceName("myWorkspace")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
microsoft_security_incident_creation_alert_rule = azure_native.securityinsights.MicrosoftSecurityIncidentCreationAlertRule("microsoftSecurityIncidentCreationAlertRule",
display_name="testing displayname",
enabled=True,
kind="MicrosoftSecurityIncidentCreation",
product_filter="Microsoft Cloud App Security",
resource_group_name="myRg",
rule_id="microsoftSecurityIncidentCreationRuleExample",
workspace_name="myWorkspace")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const microsoftSecurityIncidentCreationAlertRule = new azure_native.securityinsights.MicrosoftSecurityIncidentCreationAlertRule("microsoftSecurityIncidentCreationAlertRule", {
displayName: "testing displayname",
enabled: true,
kind: "MicrosoftSecurityIncidentCreation",
productFilter: "Microsoft Cloud App Security",
resourceGroupName: "myRg",
ruleId: "microsoftSecurityIncidentCreationRuleExample",
workspaceName: "myWorkspace",
});
resources:
microsoftSecurityIncidentCreationAlertRule:
type: azure-native:securityinsights:MicrosoftSecurityIncidentCreationAlertRule
properties:
displayName: testing displayname
enabled: true
kind: MicrosoftSecurityIncidentCreation
productFilter: Microsoft Cloud App Security
resourceGroupName: myRg
ruleId: microsoftSecurityIncidentCreationRuleExample
workspaceName: myWorkspace
Creates or updates a Scheduled alert rule.
using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var microsoftSecurityIncidentCreationAlertRule = new AzureNative.SecurityInsights.MicrosoftSecurityIncidentCreationAlertRule("microsoftSecurityIncidentCreationAlertRule", new()
{
ResourceGroupName = "myRg",
RuleId = "73e01a99-5cd7-4139-a149-9f2736ff2ab5",
WorkspaceName = "myWorkspace",
});
});
package main
import (
securityinsights "github.com/pulumi/pulumi-azure-native/sdk/go/azure/securityinsights"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := securityinsights.NewMicrosoftSecurityIncidentCreationAlertRule(ctx, "microsoftSecurityIncidentCreationAlertRule", &securityinsights.MicrosoftSecurityIncidentCreationAlertRuleArgs{
ResourceGroupName: pulumi.String("myRg"),
RuleId: pulumi.String("73e01a99-5cd7-4139-a149-9f2736ff2ab5"),
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.MicrosoftSecurityIncidentCreationAlertRule;
import com.pulumi.azurenative.securityinsights.MicrosoftSecurityIncidentCreationAlertRuleArgs;
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 microsoftSecurityIncidentCreationAlertRule = new MicrosoftSecurityIncidentCreationAlertRule("microsoftSecurityIncidentCreationAlertRule", MicrosoftSecurityIncidentCreationAlertRuleArgs.builder()
.resourceGroupName("myRg")
.ruleId("73e01a99-5cd7-4139-a149-9f2736ff2ab5")
.workspaceName("myWorkspace")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
microsoft_security_incident_creation_alert_rule = azure_native.securityinsights.MicrosoftSecurityIncidentCreationAlertRule("microsoftSecurityIncidentCreationAlertRule",
resource_group_name="myRg",
rule_id="73e01a99-5cd7-4139-a149-9f2736ff2ab5",
workspace_name="myWorkspace")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const microsoftSecurityIncidentCreationAlertRule = new azure_native.securityinsights.MicrosoftSecurityIncidentCreationAlertRule("microsoftSecurityIncidentCreationAlertRule", {
resourceGroupName: "myRg",
ruleId: "73e01a99-5cd7-4139-a149-9f2736ff2ab5",
workspaceName: "myWorkspace",
});
resources:
microsoftSecurityIncidentCreationAlertRule:
type: azure-native:securityinsights:MicrosoftSecurityIncidentCreationAlertRule
properties:
resourceGroupName: myRg
ruleId: 73e01a99-5cd7-4139-a149-9f2736ff2ab5
workspaceName: myWorkspace
Create MicrosoftSecurityIncidentCreationAlertRule Resource
new MicrosoftSecurityIncidentCreationAlertRule(name: string, args: MicrosoftSecurityIncidentCreationAlertRuleArgs, opts?: CustomResourceOptions);
@overload
def MicrosoftSecurityIncidentCreationAlertRule(resource_name: str,
opts: Optional[ResourceOptions] = None,
alert_rule_template_name: Optional[str] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
display_names_exclude_filter: Optional[Sequence[str]] = None,
display_names_filter: Optional[Sequence[str]] = None,
enabled: Optional[bool] = None,
product_filter: Optional[Union[str, MicrosoftSecurityProductName]] = None,
resource_group_name: Optional[str] = None,
rule_id: Optional[str] = None,
severities_filter: Optional[Sequence[Union[str, AlertSeverity]]] = None,
workspace_name: Optional[str] = None)
@overload
def MicrosoftSecurityIncidentCreationAlertRule(resource_name: str,
args: MicrosoftSecurityIncidentCreationAlertRuleArgs,
opts: Optional[ResourceOptions] = None)
func NewMicrosoftSecurityIncidentCreationAlertRule(ctx *Context, name string, args MicrosoftSecurityIncidentCreationAlertRuleArgs, opts ...ResourceOption) (*MicrosoftSecurityIncidentCreationAlertRule, error)
public MicrosoftSecurityIncidentCreationAlertRule(string name, MicrosoftSecurityIncidentCreationAlertRuleArgs args, CustomResourceOptions? opts = null)
public MicrosoftSecurityIncidentCreationAlertRule(String name, MicrosoftSecurityIncidentCreationAlertRuleArgs args)
public MicrosoftSecurityIncidentCreationAlertRule(String name, MicrosoftSecurityIncidentCreationAlertRuleArgs args, CustomResourceOptions options)
type: azure-native:securityinsights:MicrosoftSecurityIncidentCreationAlertRule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MicrosoftSecurityIncidentCreationAlertRuleArgs
- 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 MicrosoftSecurityIncidentCreationAlertRuleArgs
- 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 MicrosoftSecurityIncidentCreationAlertRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MicrosoftSecurityIncidentCreationAlertRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MicrosoftSecurityIncidentCreationAlertRuleArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
MicrosoftSecurityIncidentCreationAlertRule 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 MicrosoftSecurityIncidentCreationAlertRule resource accepts the following input properties:
- Display
Name string The display name for alerts created by this alert rule.
- Enabled bool
Determines whether this alert rule is enabled or disabled.
- Product
Filter string | Pulumi.Azure Native. Security Insights. Microsoft Security Product Name The alerts' productName on which the cases will be generated
- Resource
Group stringName The name of the resource group within the user's subscription. The name is case insensitive.
- Workspace
Name string The name of the workspace.
- Alert
Rule stringTemplate Name The Name of the alert rule template used to create this rule.
- Description string
The description of the alert rule.
- Display
Names List<string>Exclude Filter the alerts' displayNames on which the cases will not be generated
- Display
Names List<string>Filter the alerts' displayNames on which the cases will be generated
- Rule
Id string Alert rule ID
- Severities
Filter List<Union<string, Pulumi.Azure Native. Security Insights. Alert Severity>> the alerts' severities on which the cases will be generated
- Display
Name string The display name for alerts created by this alert rule.
- Enabled bool
Determines whether this alert rule is enabled or disabled.
- Product
Filter string | MicrosoftSecurity Product Name The alerts' productName on which the cases will be generated
- Resource
Group stringName The name of the resource group within the user's subscription. The name is case insensitive.
- Workspace
Name string The name of the workspace.
- Alert
Rule stringTemplate Name The Name of the alert rule template used to create this rule.
- Description string
The description of the alert rule.
- Display
Names []stringExclude Filter the alerts' displayNames on which the cases will not be generated
- Display
Names []stringFilter the alerts' displayNames on which the cases will be generated
- Rule
Id string Alert rule ID
- Severities
Filter []string the alerts' severities on which the cases will be generated
- display
Name String The display name for alerts created by this alert rule.
- enabled Boolean
Determines whether this alert rule is enabled or disabled.
- product
Filter String | MicrosoftSecurity Product Name The alerts' productName on which the cases will be generated
- resource
Group StringName The name of the resource group within the user's subscription. The name is case insensitive.
- workspace
Name String The name of the workspace.
- alert
Rule StringTemplate Name The Name of the alert rule template used to create this rule.
- description String
The description of the alert rule.
- display
Names List<String>Exclude Filter the alerts' displayNames on which the cases will not be generated
- display
Names List<String>Filter the alerts' displayNames on which the cases will be generated
- rule
Id String Alert rule ID
- severities
Filter List<Either<String,AlertSeverity>> the alerts' severities on which the cases will be generated
- display
Name string The display name for alerts created by this alert rule.
- enabled boolean
Determines whether this alert rule is enabled or disabled.
- product
Filter string | MicrosoftSecurity Product Name The alerts' productName on which the cases will be generated
- resource
Group stringName The name of the resource group within the user's subscription. The name is case insensitive.
- workspace
Name string The name of the workspace.
- alert
Rule stringTemplate Name The Name of the alert rule template used to create this rule.
- description string
The description of the alert rule.
- display
Names string[]Exclude Filter the alerts' displayNames on which the cases will not be generated
- display
Names string[]Filter the alerts' displayNames on which the cases will be generated
- rule
Id string Alert rule ID
- severities
Filter (string | AlertSeverity)[] the alerts' severities on which the cases will be generated
- display_
name str The display name for alerts created by this alert rule.
- enabled bool
Determines whether this alert rule is enabled or disabled.
- product_
filter str | MicrosoftSecurity Product Name The alerts' productName on which the cases will be generated
- resource_
group_ strname The name of the resource group within the user's subscription. The name is case insensitive.
- workspace_
name str The name of the workspace.
- alert_
rule_ strtemplate_ name The Name of the alert rule template used to create this rule.
- description str
The description of the alert rule.
- display_
names_ Sequence[str]exclude_ filter the alerts' displayNames on which the cases will not be generated
- display_
names_ Sequence[str]filter the alerts' displayNames on which the cases will be generated
- rule_
id str Alert rule ID
- severities_
filter Sequence[Union[str, AlertSeverity]] the alerts' severities on which the cases will be generated
- display
Name String The display name for alerts created by this alert rule.
- enabled Boolean
Determines whether this alert rule is enabled or disabled.
- product
Filter String | "Microsoft Cloud App Security" | "Azure Security Center" | "Azure Advanced Threat Protection" | "Azure Active Directory Identity Protection" | "Azure Security Center for IoT" The alerts' productName on which the cases will be generated
- resource
Group StringName The name of the resource group within the user's subscription. The name is case insensitive.
- workspace
Name String The name of the workspace.
- alert
Rule StringTemplate Name The Name of the alert rule template used to create this rule.
- description String
The description of the alert rule.
- display
Names List<String>Exclude Filter the alerts' displayNames on which the cases will not be generated
- display
Names List<String>Filter the alerts' displayNames on which the cases will be generated
- rule
Id String Alert rule ID
- severities
Filter List<String | "High" | "Medium" | "Low" | "Informational"> the alerts' severities on which the cases will be generated
Outputs
All input properties are implicitly available as output properties. Additionally, the MicrosoftSecurityIncidentCreationAlertRule resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Last
Modified stringUtc The last time that this alert has been modified.
- Name string
Azure resource name
- Type string
Azure resource type
- Etag string
Etag of the azure resource
- Id string
The provider-assigned unique ID for this managed resource.
- Last
Modified stringUtc The last time that this alert has been modified.
- Name string
Azure resource name
- Type string
Azure resource type
- Etag string
Etag of the azure resource
- id String
The provider-assigned unique ID for this managed resource.
- last
Modified StringUtc The last time that this alert has been modified.
- name String
Azure resource name
- type String
Azure resource type
- etag String
Etag of the azure resource
- id string
The provider-assigned unique ID for this managed resource.
- last
Modified stringUtc The last time that this alert has been modified.
- name string
Azure resource name
- type string
Azure resource type
- etag string
Etag of the azure resource
- id str
The provider-assigned unique ID for this managed resource.
- last_
modified_ strutc The last time that this alert has been modified.
- name str
Azure resource name
- type str
Azure resource type
- etag str
Etag of the azure resource
- id String
The provider-assigned unique ID for this managed resource.
- last
Modified StringUtc The last time that this alert has been modified.
- name String
Azure resource name
- type String
Azure resource type
- etag String
Etag of the azure resource
Supporting Types
AlertSeverity
- High
- High
High severity
- Medium
- Medium
Medium severity
- Low
- Low
Low severity
- Informational
- Informational
Informational severity
- Alert
Severity High - High
High severity
- Alert
Severity Medium - Medium
Medium severity
- Alert
Severity Low - Low
Low severity
- Alert
Severity Informational - Informational
Informational severity
- High
- High
High severity
- Medium
- Medium
Medium severity
- Low
- Low
Low severity
- Informational
- Informational
Informational severity
- High
- High
High severity
- Medium
- Medium
Medium severity
- Low
- Low
Low severity
- Informational
- Informational
Informational severity
- HIGH
- High
High severity
- MEDIUM
- Medium
Medium severity
- LOW
- Low
Low severity
- INFORMATIONAL
- Informational
Informational severity
- "High"
- High
High severity
- "Medium"
- Medium
Medium severity
- "Low"
- Low
Low severity
- "Informational"
- Informational
Informational severity
MicrosoftSecurityProductName
- Microsoft_Cloud_App_Security
- Microsoft Cloud App Security
- Azure_Security_Center
- Azure Security Center
- Azure_Advanced_Threat_Protection
- Azure Advanced Threat Protection
- Azure_Active_Directory_Identity_Protection
- Azure Active Directory Identity Protection
- Azure_Security_Center_
for_Io T - Azure Security Center for IoT
- Microsoft
Security Product Name_Microsoft_Cloud_App_Security - Microsoft Cloud App Security
- Microsoft
Security Product Name_Azure_Security_Center - Azure Security Center
- Microsoft
Security Product Name_Azure_Advanced_Threat_Protection - Azure Advanced Threat Protection
- Microsoft
Security Product Name_Azure_Active_Directory_Identity_Protection - Azure Active Directory Identity Protection
- Microsoft
Security Product Name_Azure_Security_Center_ for_Io T - Azure Security Center for IoT
- Microsoft_Cloud_App_Security
- Microsoft Cloud App Security
- Azure_Security_Center
- Azure Security Center
- Azure_Advanced_Threat_Protection
- Azure Advanced Threat Protection
- Azure_Active_Directory_Identity_Protection
- Azure Active Directory Identity Protection
- Azure_Security_Center_
for_Io T - Azure Security Center for IoT
- Microsoft_Cloud_App_Security
- Microsoft Cloud App Security
- Azure_Security_Center
- Azure Security Center
- Azure_Advanced_Threat_Protection
- Azure Advanced Threat Protection
- Azure_Active_Directory_Identity_Protection
- Azure Active Directory Identity Protection
- Azure_Security_Center_
for_Io T - Azure Security Center for IoT
- MICROSOFT_CLOUD_APP_SECURITY
- Microsoft Cloud App Security
- AZURE_SECURITY_CENTER
- Azure Security Center
- AZURE_ADVANCED_THREAT_PROTECTION
- Azure Advanced Threat Protection
- AZURE_ACTIVE_DIRECTORY_IDENTITY_PROTECTION
- Azure Active Directory Identity Protection
- AZURE_SECURITY_CENTER_FOR_IO_T
- Azure Security Center for IoT
- "Microsoft Cloud App Security"
- Microsoft Cloud App Security
- "Azure Security Center"
- Azure Security Center
- "Azure Advanced Threat Protection"
- Azure Advanced Threat Protection
- "Azure Active Directory Identity Protection"
- Azure Active Directory Identity Protection
- "Azure Security Center for Io
T" - Azure Security Center for IoT
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:securityinsights:MicrosoftSecurityIncidentCreationAlertRule 73e01a99-5cd7-4139-a149-9f2736ff2ab5 /subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/alertRules/73e01a99-5cd7-4139-a149-9f2736ff2ab5
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0