Skip to main content

SqlResourceSqlTrigger

Provides a SqlResourceSqlTrigger from the DocumentDB group

Examples

CosmosDBSqlTriggerCreateUpdate

exports.createResources = () => [
{
type: "SqlResourceSqlTrigger",
group: "DocumentDB",
name: "mySqlResourceSqlTrigger",
properties: () => ({
properties: {
resource: {
id: "triggerName",
body: "body",
triggerType: "triggerType",
triggerOperation: "triggerOperation",
},
options: {},
},
}),
dependencies: ({}) => ({
resourceGroup: "myResourceGroup",
account: "myDatabaseAccount",
database: "mySqlResourceSqlDatabase",
container: "mySqlResourceSqlContainer",
}),
},
];

Dependencies

Swagger Schema

{
description: 'Parameters to create and update Cosmos DB trigger.',
type: 'object',
properties: {
properties: {
'x-ms-client-flatten': true,
description: 'Properties to create and update Azure Cosmos DB trigger.',
type: 'object',
properties: {
resource: {
description: 'The standard JSON format of a trigger',
type: 'object',
properties: {
id: {
type: 'string',
description: 'Name of the Cosmos DB SQL trigger'
},
body: { type: 'string', description: 'Body of the Trigger' },
triggerType: {
type: 'string',
enum: [ 'Pre', 'Post' ],
description: 'Type of the Trigger',
'x-ms-enum': { name: 'triggerType', modelAsString: true }
},
triggerOperation: {
type: 'string',
enum: [ 'All', 'Create', 'Update', 'Delete', 'Replace' ],
description: 'The operation the trigger is associated with',
'x-ms-enum': { name: 'triggerOperation', modelAsString: true }
}
},
required: [ 'id' ]
},
options: {
description: 'A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.',
type: 'object',
properties: {
throughput: {
type: 'integer',
description: 'Request Units per second. For example, "throughput": 10000.'
},
autoscaleSettings: {
description: 'Specifies the Autoscale settings.',
type: 'object',
properties: {
maxThroughput: {
type: 'integer',
description: 'Represents maximum throughput, the resource can scale up to.'
}
}
}
}
}
},
required: [ 'resource' ]
}
},
allOf: [
{
type: 'object',
description: 'The core properties of ARM resources.',
properties: {
id: {
readOnly: true,
type: 'string',
description: 'The unique resource identifier of the ARM resource.'
},
name: {
readOnly: true,
type: 'string',
description: 'The name of the ARM resource.'
},
type: {
readOnly: true,
type: 'string',
description: 'The type of Azure resource.'
},
location: {
type: 'string',
description: 'The location of the resource group to which the resource belongs.'
},
tags: {
type: 'object',
additionalProperties: { type: 'string' },
description: '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".'
}
},
'x-ms-azure-resource': true
}
],
required: [ 'properties' ]
}

Misc

The resource version is 2022-05-15.

The Swagger schema used to generate this documentation can be found here.