-
Notifications
You must be signed in to change notification settings - Fork 13
/
CosmosDBGremlinDatabaseThroughputUpdate.go
60 lines (57 loc) · 2.6 KB
/
CosmosDBGremlinDatabaseThroughputUpdate.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/CosmosDBGremlinDatabaseThroughputUpdate.json
func ExampleGremlinResourcesClient_BeginUpdateGremlinDatabaseThroughput() {
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.NewGremlinResourcesClient().BeginUpdateGremlinDatabaseThroughput(ctx, "rg1", "ddb1", "databaseName", armcosmos.ThroughputSettingsUpdateParameters{
Location: to.Ptr("West US"),
Tags: map[string]*string{},
Properties: &armcosmos.ThroughputSettingsUpdateProperties{
Resource: &armcosmos.ThroughputSettingsResource{
Throughput: to.Ptr[int32](400),
},
},
}, 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.ThroughputSettingsGetResults = armcosmos.ThroughputSettingsGetResults{
// Name: to.Ptr("default"),
// Type: to.Ptr("Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings"),
// ID: to.Ptr("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.DocumentDB/databaseAccounts/ddb1/gremlinDatabases/databaseName/throughputSettings/default"),
// Location: to.Ptr("West US"),
// Tags: map[string]*string{
// },
// Properties: &armcosmos.ThroughputSettingsGetProperties{
// Resource: &armcosmos.ThroughputSettingsGetPropertiesResource{
// Etag: to.Ptr("\"00005900-0000-0000-0000-56f9a2630000\""),
// Rid: to.Ptr("PD5DALigDgw="),
// Ts: to.Ptr[float32](1459200611),
// MinimumThroughput: to.Ptr("400"),
// OfferReplacePending: to.Ptr("true"),
// Throughput: to.Ptr[int32](400),
// },
// },
// }
}