-
Notifications
You must be signed in to change notification settings - Fork 13
/
ConfigurationsUpdateByServer.go
62 lines (59 loc) · 2.84 KB
/
ConfigurationsUpdateByServer.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
61
62
package armmysql_test
import (
"context"
"log"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/mysql/armmysql"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/7a2ac91de424f271cf91cc8009f3fe9ee8249086/specification/mysql/resource-manager/Microsoft.DBforMySQL/stable/2017-12-01/examples/ConfigurationsUpdateByServer.json
func ExampleServerParametersClient_BeginListUpdateConfigurations() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armmysql.NewClientFactory("<subscription-id>", cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
poller, err := clientFactory.NewServerParametersClient().BeginListUpdateConfigurations(ctx, "testrg", "mysqltestsvc1", armmysql.ConfigurationListResult{}, 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.ConfigurationListResult = armmysql.ConfigurationListResult{
// Value: []*armmysql.Configuration{
// {
// Name: to.Ptr("event_scheduler"),
// Type: to.Ptr("Microsoft.DBforMySQL/servers/configurations"),
// ID: to.Ptr("/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/mysqltestsvc1/configurations/event_scheduler"),
// Properties: &armmysql.ConfigurationProperties{
// Description: to.Ptr("Indicates the status of the Event Scheduler."),
// AllowedValues: to.Ptr("ON,OFF,DISABLED"),
// DataType: to.Ptr("Enumeration"),
// DefaultValue: to.Ptr("OFF"),
// Source: to.Ptr("system-default"),
// Value: to.Ptr("OFF"),
// },
// },
// {
// Name: to.Ptr("div_precision_increment"),
// Type: to.Ptr("Microsoft.DBforMySQL/servers/configurations"),
// ID: to.Ptr("/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/mysqltestsvc1/configurations/div_precision_increment"),
// Properties: &armmysql.ConfigurationProperties{
// Description: to.Ptr("Number of digits by which to increase the scale of the result of division operations."),
// AllowedValues: to.Ptr("0-30"),
// DataType: to.Ptr("Integer"),
// DefaultValue: to.Ptr("4"),
// Source: to.Ptr("system-default"),
// Value: to.Ptr("4"),
// },
// }},
// }
}