SqlTriggerResource Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SqlTriggerResource() |
Initializes a new instance of the SqlTriggerResource class. |
SqlTriggerResource(String, String, String, String) |
Initializes a new instance of the SqlTriggerResource class. |
SqlTriggerResource()
Initializes a new instance of the SqlTriggerResource class.
public SqlTriggerResource ();
Public Sub New ()
Applies to
SqlTriggerResource(String, String, String, String)
Initializes a new instance of the SqlTriggerResource class.
public SqlTriggerResource (string id, string body = default, string triggerType = default, string triggerOperation = default);
new Microsoft.Azure.Management.CosmosDB.Models.SqlTriggerResource : string * string * string * string -> Microsoft.Azure.Management.CosmosDB.Models.SqlTriggerResource
Public Sub New (id As String, Optional body As String = Nothing, Optional triggerType As String = Nothing, Optional triggerOperation As String = Nothing)
Parameters
- id
- String
Name of the Cosmos DB SQL trigger
- body
- String
Body of the Trigger
- triggerType
- String
Type of the Trigger. Possible values include: 'Pre', 'Post'
- triggerOperation
- String
The operation the trigger is associated with. Possible values include: 'All', 'Create', 'Update', 'Delete', 'Replace'