-
Notifications
You must be signed in to change notification settings - Fork 13
/
CosmosDBSqlTriggerCreateUpdate.go
60 lines (57 loc) · 2.77 KB
/
CosmosDBSqlTriggerCreateUpdate.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package armcosmos_test
import (
"context"
"log"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/to"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/cosmos/armcosmos/v2"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/1f22d4dbd99b0fe347ad79e79d4eb1ed44a87291/specification/cosmos-db/resource-manager/Microsoft.DocumentDB/preview/2023-03-01-preview/examples/CosmosDBSqlTriggerCreateUpdate.json
func ExampleSQLResourcesClient_BeginCreateUpdateSQLTrigger() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armcosmos.NewClientFactory("<subscription-id>", cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
poller, err := clientFactory.NewSQLResourcesClient().BeginCreateUpdateSQLTrigger(ctx, "rg1", "ddb1", "databaseName", "containerName", "triggerName", armcosmos.SQLTriggerCreateUpdateParameters{
Properties: &armcosmos.SQLTriggerCreateUpdateProperties{
Options: &armcosmos.CreateUpdateOptions{},
Resource: &armcosmos.SQLTriggerResource{
Body: to.Ptr("body"),
ID: to.Ptr("triggerName"),
TriggerOperation: to.Ptr(armcosmos.TriggerOperation("triggerOperation")),
TriggerType: to.Ptr(armcosmos.TriggerType("triggerType")),
},
},
}, nil)
if err != nil {
log.Fatalf("failed to finish the request: %v", err)
}
res, err := poller.PollUntilDone(ctx, nil)
if err != nil {
log.Fatalf("failed to pull the result: %v", err)
}
// You could use response here. We use blank identifier for just demo purposes.
_ = res
// If the HTTP response code is 200 as defined in example definition, your response structure would look as follows. Please pay attention that all the values in the output are fake values for just demo purposes.
// res.SQLTriggerGetResults = armcosmos.SQLTriggerGetResults{
// Name: to.Ptr("triggerName"),
// Type: to.Ptr("Microsoft.DocumentDB/databaseAccounts/sqlDatabases/sqlContainers/sqlTriggers"),
// ID: to.Ptr("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.DocumentDB/databaseAccounts/ddb1/sqlDatabases/databaseName/sqlContainers/containerName/sqlTriggers/triggerName"),
// Properties: &armcosmos.SQLTriggerGetProperties{
// Resource: &armcosmos.SQLTriggerGetPropertiesResource{
// Etag: to.Ptr("\"00005900-0000-0000-0000-56f9a2630000\""),
// Rid: to.Ptr("PD5DALigDgw="),
// Ts: to.Ptr[float32](1459200611),
// Body: to.Ptr("body"),
// ID: to.Ptr("triggerName"),
// TriggerOperation: to.Ptr(armcosmos.TriggerOperation("triggerOperation")),
// TriggerType: to.Ptr(armcosmos.TriggerType("triggerType")),
// },
// },
// }
}