-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Expand file tree
/
Copy pathservers-configurations.json
More file actions
52 lines (52 loc) · 1.49 KB
/
servers-configurations.json
File metadata and controls
52 lines (52 loc) · 1.49 KB
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
{
"resourceType": "servers/configurations",
"apiVersion": "2017-12-01",
"learnMore": {
"url": "https://learn.microsoft.com/powershell/module/az.mysql"
},
"commands": [
{
"name": "Get-AzMySqlConfiguration",
"description": "Gets information about a configuration of server.",
"path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}/configurations/{configurationName}",
"help": {
"learnMore": {
"url": "https://learn.microsoft.com/powershell/module/az.mysql/get-azmysqlconfiguration"
},
"parameterSets": [
{
"parameters": [
"-Name <String>",
"-ResourceGroupName <String>",
"-ServerName <String>",
"[-SubscriptionId <String[]>]"
]
}
]
},
"examples": [
{
"description": "Gets information about a configuration of server.",
"parameters": [
{
"name": "-Name",
"value": "[Path.configurationName]"
},
{
"name": "-ResourceGroupName",
"value": "[Path.resourceGroupName]"
},
{
"name": "-ServerName",
"value": "[Path.serverName]"
},
{
"name": "-SubscriptionId",
"value": "[Path.subscriptionId]"
}
]
}
]
}
]
}