Bagikan melalui


SqlTriggerResource Constructors

Definition

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'

Applies to