-
Notifications
You must be signed in to change notification settings - Fork 13
/
KustoDatabaseReadonlyUpdate.go
42 lines (38 loc) · 1.23 KB
/
KustoDatabaseReadonlyUpdate.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
package armkusto_test
import (
"context"
"log"
"time"
"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/kusto/armkusto"
)
// x-ms-original-file: specification/azure-kusto/resource-manager/Microsoft.Kusto/stable/2021-08-27/examples/KustoDatabaseReadonlyUpdate.json
func ExampleDatabasesClient_BeginCreateOrUpdate() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
client := armkusto.NewDatabasesClient("<subscription-id>", cred, nil)
poller, err := client.BeginCreateOrUpdate(ctx,
"<resource-group-name>",
"<cluster-name>",
"<database-name>",
&armkusto.ReadOnlyFollowingDatabase{
Kind: armkusto.Kind("ReadOnlyFollowing").ToPtr(),
Location: to.StringPtr("<location>"),
Properties: &armkusto.ReadOnlyFollowingDatabaseProperties{
HotCachePeriod: to.StringPtr("<hot-cache-period>"),
},
},
nil)
if err != nil {
log.Fatal(err)
}
res, err := poller.PollUntilDone(ctx, 30*time.Second)
if err != nil {
log.Fatal(err)
}
log.Printf("Response result: %#v\n", res.DatabasesClientCreateOrUpdateResult)
}