-
Notifications
You must be signed in to change notification settings - Fork 13
/
createOrUpdateDashboard.go
117 lines (114 loc) · 3.67 KB
/
createOrUpdateDashboard.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package armportal_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/portal/armportal"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/7a2ac91de424f271cf91cc8009f3fe9ee8249086/specification/portal/resource-manager/Microsoft.Portal/preview/2020-09-01-preview/examples/createOrUpdateDashboard.json
func ExampleDashboardsClient_CreateOrUpdate() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armportal.NewClientFactory("<subscription-id>", cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
res, err := clientFactory.NewDashboardsClient().CreateOrUpdate(ctx, "testRG", "testDashboard", armportal.Dashboard{
Location: to.Ptr("eastus"),
Properties: &armportal.DashboardProperties{
Lenses: []*armportal.DashboardLens{
{
Order: to.Ptr[int32](1),
Parts: []*armportal.DashboardParts{
{
Position: &armportal.DashboardPartsPosition{
ColSpan: to.Ptr[int32](3),
RowSpan: to.Ptr[int32](4),
X: to.Ptr[int32](1),
Y: to.Ptr[int32](2),
},
},
{
Position: &armportal.DashboardPartsPosition{
ColSpan: to.Ptr[int32](6),
RowSpan: to.Ptr[int32](6),
X: to.Ptr[int32](5),
Y: to.Ptr[int32](5),
},
}},
},
{
Order: to.Ptr[int32](2),
Parts: []*armportal.DashboardParts{},
}},
Metadata: map[string]any{
"metadata": map[string]any{
"ColSpan": float64(2),
"RowSpan": float64(1),
"X": float64(4),
"Y": float64(3),
},
},
},
Tags: map[string]*string{
"aKey": to.Ptr("aValue"),
"anotherKey": to.Ptr("anotherValue"),
},
}, nil)
if err != nil {
log.Fatalf("failed to finish the request: %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.Dashboard = armportal.Dashboard{
// Name: to.Ptr("testDashboard"),
// Type: to.Ptr("Microsoft.Portal/dashboards"),
// ID: to.Ptr("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.Portal/dashboards/testDashboard"),
// Location: to.Ptr("eastus"),
// Properties: &armportal.DashboardProperties{
// Lenses: []*armportal.DashboardLens{
// {
// Order: to.Ptr[int32](1),
// Parts: []*armportal.DashboardParts{
// {
// Position: &armportal.DashboardPartsPosition{
// ColSpan: to.Ptr[int32](3),
// RowSpan: to.Ptr[int32](4),
// X: to.Ptr[int32](1),
// Y: to.Ptr[int32](2),
// },
// },
// {
// Position: &armportal.DashboardPartsPosition{
// ColSpan: to.Ptr[int32](6),
// RowSpan: to.Ptr[int32](6),
// X: to.Ptr[int32](5),
// Y: to.Ptr[int32](5),
// },
// }},
// },
// {
// Order: to.Ptr[int32](2),
// Parts: []*armportal.DashboardParts{
// },
// }},
// Metadata: map[string]any{
// "metadata": map[string]any{
// "ColSpan": float64(2),
// "RowSpan": float64(1),
// "X": float64(4),
// "Y": float64(3),
// },
// },
// },
// Tags: map[string]*string{
// "aKey": to.Ptr("aValue"),
// "anotherKey": to.Ptr("anotherValue"),
// },
// }
}