azure-native.documentdb.SqlResourceSqlTrigger
Explore with Pulumi AI
An Azure Cosmos DB trigger. Azure REST API version: 2023-04-15. Prior API version in Azure Native 1.x: 2021-03-15.
Other available API versions: 2023-03-15-preview, 2023-09-15, 2023-09-15-preview, 2023-11-15, 2023-11-15-preview, 2024-02-15-preview, 2024-05-15, 2024-05-15-preview, 2024-08-15, 2024-09-01-preview, 2024-11-15, 2024-12-01-preview.
Example Usage
CosmosDBSqlTriggerCreateUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var sqlResourceSqlTrigger = new AzureNative.DocumentDB.SqlResourceSqlTrigger("sqlResourceSqlTrigger", new()
    {
        AccountName = "ddb1",
        ContainerName = "containerName",
        DatabaseName = "databaseName",
        Options = null,
        Resource = new AzureNative.DocumentDB.Inputs.SqlTriggerResourceArgs
        {
            Body = "body",
            Id = "triggerName",
            TriggerOperation = "triggerOperation",
            TriggerType = "triggerType",
        },
        ResourceGroupName = "rg1",
        TriggerName = "triggerName",
    });
});
package main
import (
	documentdb "github.com/pulumi/pulumi-azure-native-sdk/documentdb/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := documentdb.NewSqlResourceSqlTrigger(ctx, "sqlResourceSqlTrigger", &documentdb.SqlResourceSqlTriggerArgs{
			AccountName:   pulumi.String("ddb1"),
			ContainerName: pulumi.String("containerName"),
			DatabaseName:  pulumi.String("databaseName"),
			Options:       &documentdb.CreateUpdateOptionsArgs{},
			Resource: &documentdb.SqlTriggerResourceArgs{
				Body:             pulumi.String("body"),
				Id:               pulumi.String("triggerName"),
				TriggerOperation: pulumi.String("triggerOperation"),
				TriggerType:      pulumi.String("triggerType"),
			},
			ResourceGroupName: pulumi.String("rg1"),
			TriggerName:       pulumi.String("triggerName"),
		})
		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.documentdb.SqlResourceSqlTrigger;
import com.pulumi.azurenative.documentdb.SqlResourceSqlTriggerArgs;
import com.pulumi.azurenative.documentdb.inputs.CreateUpdateOptionsArgs;
import com.pulumi.azurenative.documentdb.inputs.SqlTriggerResourceArgs;
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 sqlResourceSqlTrigger = new SqlResourceSqlTrigger("sqlResourceSqlTrigger", SqlResourceSqlTriggerArgs.builder()
            .accountName("ddb1")
            .containerName("containerName")
            .databaseName("databaseName")
            .options()
            .resource(SqlTriggerResourceArgs.builder()
                .body("body")
                .id("triggerName")
                .triggerOperation("triggerOperation")
                .triggerType("triggerType")
                .build())
            .resourceGroupName("rg1")
            .triggerName("triggerName")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const sqlResourceSqlTrigger = new azure_native.documentdb.SqlResourceSqlTrigger("sqlResourceSqlTrigger", {
    accountName: "ddb1",
    containerName: "containerName",
    databaseName: "databaseName",
    options: {},
    resource: {
        body: "body",
        id: "triggerName",
        triggerOperation: "triggerOperation",
        triggerType: "triggerType",
    },
    resourceGroupName: "rg1",
    triggerName: "triggerName",
});
import pulumi
import pulumi_azure_native as azure_native
sql_resource_sql_trigger = azure_native.documentdb.SqlResourceSqlTrigger("sqlResourceSqlTrigger",
    account_name="ddb1",
    container_name="containerName",
    database_name="databaseName",
    options={},
    resource={
        "body": "body",
        "id": "triggerName",
        "trigger_operation": "triggerOperation",
        "trigger_type": "triggerType",
    },
    resource_group_name="rg1",
    trigger_name="triggerName")
resources:
  sqlResourceSqlTrigger:
    type: azure-native:documentdb:SqlResourceSqlTrigger
    properties:
      accountName: ddb1
      containerName: containerName
      databaseName: databaseName
      options: {}
      resource:
        body: body
        id: triggerName
        triggerOperation: triggerOperation
        triggerType: triggerType
      resourceGroupName: rg1
      triggerName: triggerName
Create SqlResourceSqlTrigger Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SqlResourceSqlTrigger(name: string, args: SqlResourceSqlTriggerArgs, opts?: CustomResourceOptions);@overload
def SqlResourceSqlTrigger(resource_name: str,
                          args: SqlResourceSqlTriggerArgs,
                          opts: Optional[ResourceOptions] = None)
@overload
def SqlResourceSqlTrigger(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          account_name: Optional[str] = None,
                          container_name: Optional[str] = None,
                          database_name: Optional[str] = None,
                          resource: Optional[SqlTriggerResourceArgs] = None,
                          resource_group_name: Optional[str] = None,
                          location: Optional[str] = None,
                          options: Optional[CreateUpdateOptionsArgs] = None,
                          tags: Optional[Mapping[str, str]] = None,
                          trigger_name: Optional[str] = None)func NewSqlResourceSqlTrigger(ctx *Context, name string, args SqlResourceSqlTriggerArgs, opts ...ResourceOption) (*SqlResourceSqlTrigger, error)public SqlResourceSqlTrigger(string name, SqlResourceSqlTriggerArgs args, CustomResourceOptions? opts = null)
public SqlResourceSqlTrigger(String name, SqlResourceSqlTriggerArgs args)
public SqlResourceSqlTrigger(String name, SqlResourceSqlTriggerArgs args, CustomResourceOptions options)
type: azure-native:documentdb:SqlResourceSqlTrigger
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 SqlResourceSqlTriggerArgs
- 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 SqlResourceSqlTriggerArgs
- 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 SqlResourceSqlTriggerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SqlResourceSqlTriggerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SqlResourceSqlTriggerArgs
- 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 sqlResourceSqlTriggerResource = new AzureNative.DocumentDB.SqlResourceSqlTrigger("sqlResourceSqlTriggerResource", new()
{
    AccountName = "string",
    ContainerName = "string",
    DatabaseName = "string",
    Resource = new AzureNative.DocumentDB.Inputs.SqlTriggerResourceArgs
    {
        Id = "string",
        Body = "string",
        TriggerOperation = "string",
        TriggerType = "string",
    },
    ResourceGroupName = "string",
    Location = "string",
    Options = new AzureNative.DocumentDB.Inputs.CreateUpdateOptionsArgs
    {
        AutoscaleSettings = new AzureNative.DocumentDB.Inputs.AutoscaleSettingsArgs
        {
            MaxThroughput = 0,
        },
        Throughput = 0,
    },
    Tags = 
    {
        { "string", "string" },
    },
    TriggerName = "string",
});
example, err := documentdb.NewSqlResourceSqlTrigger(ctx, "sqlResourceSqlTriggerResource", &documentdb.SqlResourceSqlTriggerArgs{
	AccountName:   pulumi.String("string"),
	ContainerName: pulumi.String("string"),
	DatabaseName:  pulumi.String("string"),
	Resource: &documentdb.SqlTriggerResourceArgs{
		Id:               pulumi.String("string"),
		Body:             pulumi.String("string"),
		TriggerOperation: pulumi.String("string"),
		TriggerType:      pulumi.String("string"),
	},
	ResourceGroupName: pulumi.String("string"),
	Location:          pulumi.String("string"),
	Options: &documentdb.CreateUpdateOptionsArgs{
		AutoscaleSettings: &documentdb.AutoscaleSettingsArgs{
			MaxThroughput: pulumi.Int(0),
		},
		Throughput: pulumi.Int(0),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	TriggerName: pulumi.String("string"),
})
var sqlResourceSqlTriggerResource = new SqlResourceSqlTrigger("sqlResourceSqlTriggerResource", SqlResourceSqlTriggerArgs.builder()
    .accountName("string")
    .containerName("string")
    .databaseName("string")
    .resource(SqlTriggerResourceArgs.builder()
        .id("string")
        .body("string")
        .triggerOperation("string")
        .triggerType("string")
        .build())
    .resourceGroupName("string")
    .location("string")
    .options(CreateUpdateOptionsArgs.builder()
        .autoscaleSettings(AutoscaleSettingsArgs.builder()
            .maxThroughput(0)
            .build())
        .throughput(0)
        .build())
    .tags(Map.of("string", "string"))
    .triggerName("string")
    .build());
sql_resource_sql_trigger_resource = azure_native.documentdb.SqlResourceSqlTrigger("sqlResourceSqlTriggerResource",
    account_name="string",
    container_name="string",
    database_name="string",
    resource={
        "id": "string",
        "body": "string",
        "trigger_operation": "string",
        "trigger_type": "string",
    },
    resource_group_name="string",
    location="string",
    options={
        "autoscale_settings": {
            "max_throughput": 0,
        },
        "throughput": 0,
    },
    tags={
        "string": "string",
    },
    trigger_name="string")
const sqlResourceSqlTriggerResource = new azure_native.documentdb.SqlResourceSqlTrigger("sqlResourceSqlTriggerResource", {
    accountName: "string",
    containerName: "string",
    databaseName: "string",
    resource: {
        id: "string",
        body: "string",
        triggerOperation: "string",
        triggerType: "string",
    },
    resourceGroupName: "string",
    location: "string",
    options: {
        autoscaleSettings: {
            maxThroughput: 0,
        },
        throughput: 0,
    },
    tags: {
        string: "string",
    },
    triggerName: "string",
});
type: azure-native:documentdb:SqlResourceSqlTrigger
properties:
    accountName: string
    containerName: string
    databaseName: string
    location: string
    options:
        autoscaleSettings:
            maxThroughput: 0
        throughput: 0
    resource:
        body: string
        id: string
        triggerOperation: string
        triggerType: string
    resourceGroupName: string
    tags:
        string: string
    triggerName: string
SqlResourceSqlTrigger 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 SqlResourceSqlTrigger resource accepts the following input properties:
- AccountName string
- Cosmos DB database account name.
- ContainerName string
- Cosmos DB container name.
- DatabaseName string
- Cosmos DB database name.
- Resource
Pulumi.Azure Native. Document DB. Inputs. Sql Trigger Resource 
- The standard JSON format of a trigger
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Location string
- The location of the resource group to which the resource belongs.
- Options
Pulumi.Azure Native. Document DB. Inputs. Create Update Options 
- A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
- Dictionary<string, string>
- Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
- TriggerName string
- Cosmos DB trigger name.
- AccountName string
- Cosmos DB database account name.
- ContainerName string
- Cosmos DB container name.
- DatabaseName string
- Cosmos DB database name.
- Resource
SqlTrigger Resource Args 
- The standard JSON format of a trigger
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Location string
- The location of the resource group to which the resource belongs.
- Options
CreateUpdate Options Args 
- A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
- map[string]string
- Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
- TriggerName string
- Cosmos DB trigger name.
- accountName String
- Cosmos DB database account name.
- containerName String
- Cosmos DB container name.
- databaseName String
- Cosmos DB database name.
- resource
SqlTrigger Resource 
- The standard JSON format of a trigger
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- location String
- The location of the resource group to which the resource belongs.
- options
CreateUpdate Options 
- A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
- Map<String,String>
- Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
- triggerName String
- Cosmos DB trigger name.
- accountName string
- Cosmos DB database account name.
- containerName string
- Cosmos DB container name.
- databaseName string
- Cosmos DB database name.
- resource
SqlTrigger Resource 
- The standard JSON format of a trigger
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- location string
- The location of the resource group to which the resource belongs.
- options
CreateUpdate Options 
- A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
- {[key: string]: string}
- Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
- triggerName string
- Cosmos DB trigger name.
- account_name str
- Cosmos DB database account name.
- container_name str
- Cosmos DB container name.
- database_name str
- Cosmos DB database name.
- resource
SqlTrigger Resource Args 
- The standard JSON format of a trigger
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- location str
- The location of the resource group to which the resource belongs.
- options
CreateUpdate Options Args 
- A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
- Mapping[str, str]
- Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
- trigger_name str
- Cosmos DB trigger name.
- accountName String
- Cosmos DB database account name.
- containerName String
- Cosmos DB container name.
- databaseName String
- Cosmos DB database name.
- resource Property Map
- The standard JSON format of a trigger
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- location String
- The location of the resource group to which the resource belongs.
- options Property Map
- A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
- Map<String>
- Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
- triggerName String
- Cosmos DB trigger name.
Outputs
All input properties are implicitly available as output properties. Additionally, the SqlResourceSqlTrigger resource produces the following output properties:
Supporting Types
AutoscaleSettings, AutoscaleSettingsArgs    
- MaxThroughput int
- Represents maximum throughput, the resource can scale up to.
- MaxThroughput int
- Represents maximum throughput, the resource can scale up to.
- maxThroughput Integer
- Represents maximum throughput, the resource can scale up to.
- maxThroughput number
- Represents maximum throughput, the resource can scale up to.
- max_throughput int
- Represents maximum throughput, the resource can scale up to.
- maxThroughput Number
- Represents maximum throughput, the resource can scale up to.
CreateUpdateOptions, CreateUpdateOptionsArgs      
- AutoscaleSettings Pulumi.Azure Native. Document DB. Inputs. Autoscale Settings 
- Specifies the Autoscale settings.
- Throughput int
- Request Units per second. For example, "throughput": 10000.
- AutoscaleSettings AutoscaleSettings 
- Specifies the Autoscale settings.
- Throughput int
- Request Units per second. For example, "throughput": 10000.
- autoscaleSettings AutoscaleSettings 
- Specifies the Autoscale settings.
- throughput Integer
- Request Units per second. For example, "throughput": 10000.
- autoscaleSettings AutoscaleSettings 
- Specifies the Autoscale settings.
- throughput number
- Request Units per second. For example, "throughput": 10000.
- autoscale_settings AutoscaleSettings 
- Specifies the Autoscale settings.
- throughput int
- Request Units per second. For example, "throughput": 10000.
- autoscaleSettings Property Map
- Specifies the Autoscale settings.
- throughput Number
- Request Units per second. For example, "throughput": 10000.
SqlTriggerGetPropertiesResponseResource, SqlTriggerGetPropertiesResponseResourceArgs            
- Etag string
- A system generated property representing the resource etag required for optimistic concurrency control.
- Id string
- Name of the Cosmos DB SQL trigger
- Rid string
- A system generated property. A unique identifier.
- Ts double
- A system generated property that denotes the last updated timestamp of the resource.
- Body string
- Body of the Trigger
- TriggerOperation string
- The operation the trigger is associated with
- TriggerType string
- Type of the Trigger
- Etag string
- A system generated property representing the resource etag required for optimistic concurrency control.
- Id string
- Name of the Cosmos DB SQL trigger
- Rid string
- A system generated property. A unique identifier.
- Ts float64
- A system generated property that denotes the last updated timestamp of the resource.
- Body string
- Body of the Trigger
- TriggerOperation string
- The operation the trigger is associated with
- TriggerType string
- Type of the Trigger
- etag String
- A system generated property representing the resource etag required for optimistic concurrency control.
- id String
- Name of the Cosmos DB SQL trigger
- rid String
- A system generated property. A unique identifier.
- ts Double
- A system generated property that denotes the last updated timestamp of the resource.
- body String
- Body of the Trigger
- triggerOperation String
- The operation the trigger is associated with
- triggerType String
- Type of the Trigger
- etag string
- A system generated property representing the resource etag required for optimistic concurrency control.
- id string
- Name of the Cosmos DB SQL trigger
- rid string
- A system generated property. A unique identifier.
- ts number
- A system generated property that denotes the last updated timestamp of the resource.
- body string
- Body of the Trigger
- triggerOperation string
- The operation the trigger is associated with
- triggerType string
- Type of the Trigger
- etag str
- A system generated property representing the resource etag required for optimistic concurrency control.
- id str
- Name of the Cosmos DB SQL trigger
- rid str
- A system generated property. A unique identifier.
- ts float
- A system generated property that denotes the last updated timestamp of the resource.
- body str
- Body of the Trigger
- trigger_operation str
- The operation the trigger is associated with
- trigger_type str
- Type of the Trigger
- etag String
- A system generated property representing the resource etag required for optimistic concurrency control.
- id String
- Name of the Cosmos DB SQL trigger
- rid String
- A system generated property. A unique identifier.
- ts Number
- A system generated property that denotes the last updated timestamp of the resource.
- body String
- Body of the Trigger
- triggerOperation String
- The operation the trigger is associated with
- triggerType String
- Type of the Trigger
SqlTriggerResource, SqlTriggerResourceArgs      
- Id string
- Name of the Cosmos DB SQL trigger
- Body string
- Body of the Trigger
- TriggerOperation string | Pulumi.Azure Native. Document DB. Trigger Operation 
- The operation the trigger is associated with
- TriggerType string | Pulumi.Azure Native. Document DB. Trigger Type 
- Type of the Trigger
- Id string
- Name of the Cosmos DB SQL trigger
- Body string
- Body of the Trigger
- TriggerOperation string | TriggerOperation 
- The operation the trigger is associated with
- TriggerType string | TriggerType 
- Type of the Trigger
- id String
- Name of the Cosmos DB SQL trigger
- body String
- Body of the Trigger
- triggerOperation String | TriggerOperation 
- The operation the trigger is associated with
- triggerType String | TriggerType 
- Type of the Trigger
- id string
- Name of the Cosmos DB SQL trigger
- body string
- Body of the Trigger
- triggerOperation string | TriggerOperation 
- The operation the trigger is associated with
- triggerType string | TriggerType 
- Type of the Trigger
- id str
- Name of the Cosmos DB SQL trigger
- body str
- Body of the Trigger
- trigger_operation str | TriggerOperation 
- The operation the trigger is associated with
- trigger_type str | TriggerType 
- Type of the Trigger
- id String
- Name of the Cosmos DB SQL trigger
- body String
- Body of the Trigger
- triggerOperation String | "All" | "Create" | "Update" | "Delete" | "Replace"
- The operation the trigger is associated with
- triggerType String | "Pre" | "Post"
- Type of the Trigger
TriggerOperation, TriggerOperationArgs    
- All
- All
- Create
- Create
- Update
- Update
- Delete
- Delete
- Replace
- Replace
- TriggerOperation All 
- All
- TriggerOperation Create 
- Create
- TriggerOperation Update 
- Update
- TriggerOperation Delete 
- Delete
- TriggerOperation Replace 
- Replace
- All
- All
- Create
- Create
- Update
- Update
- Delete
- Delete
- Replace
- Replace
- All
- All
- Create
- Create
- Update
- Update
- Delete
- Delete
- Replace
- Replace
- ALL
- All
- CREATE
- Create
- UPDATE
- Update
- DELETE
- Delete
- REPLACE
- Replace
- "All"
- All
- "Create"
- Create
- "Update"
- Update
- "Delete"
- Delete
- "Replace"
- Replace
TriggerType, TriggerTypeArgs    
- Pre
- Pre
- Post
- Post
- TriggerType Pre 
- Pre
- TriggerType Post 
- Post
- Pre
- Pre
- Post
- Post
- Pre
- Pre
- Post
- Post
- PRE
- Pre
- POST
- Post
- "Pre"
- Pre
- "Post"
- Post
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:documentdb:SqlResourceSqlTrigger triggerName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/sqlDatabases/{databaseName}/containers/{containerName}/triggers/{triggerName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0