-
Notifications
You must be signed in to change notification settings - Fork 496
/
Copy pathserver.yml
652 lines (652 loc) · 28.3 KB
/
server.yml
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
### YamlMime:AzureCLIGroup
uid: az_mariadb_server
name: az mariadb server
summary: |-
Manage MariaDB servers.
status: GA
sourceType: Core
directCommands:
- uid: az_mariadb_server_create
name: az mariadb server create
summary: |-
Create a server.
status: GA
sourceType: Core
syntax: >-
az mariadb server create [--admin-password]
[--admin-user]
[--assign-identity]
[--auto-grow {Disabled, Enabled}]
[--backup-retention]
[--geo-redundant-backup {Disabled, Enabled}]
[--infrastructure-encryption {Disabled, Enabled}]
[--location]
[--minimal-tls-version {TLS1_0, TLS1_1, TLS1_2, TLSEnforcementDisabled}]
[--name]
[--public]
[--resource-group]
[--sku-name]
[--ssl-enforcement {Disabled, Enabled}]
[--storage-size]
[--tags]
[--version]
examples:
- summary: |-
Create a MariaDB server in North Europe with sku GP_Gen5_2 (General Purpose, Gen 5 hardware, 2 vCores).
syntax: >-
az mariadb server create -l northeurope -g testgroup -n testsvr -u username -p password \
--sku-name GP_Gen5_2
- summary: |-
Create a MariaDB server with all paramaters set.
syntax: >-
az mariadb server create -l northeurope -g testgroup -n testsvr -u username -p password \
--sku-name B_Gen5_1 --ssl-enforcement Disabled --public-network-access Disabled \
--backup-retention 10 --geo-redundant-backup Enabled --storage-size 51200 \
--tags "key=value" --version 10.2
optionalParameters:
- name: --admin-password -p
summary: |-
The password of the administrator. Minimum 8 characters and maximum 128 characters. Password must contain characters from three of the following categories: English uppercase letters, English lowercase letters, numbers, and non-alphanumeric characters.
- name: --admin-user -u
defaultValue: "annoyedtamarin0"
summary: |-
Administrator username for the server. Once set, it cannot be changed.
- name: --assign-identity
defaultValue: "False"
summary: |-
Generate and assign an Azure Active Directory Identity for this server for use with key management services like Azure KeyVault.
- name: --auto-grow
defaultValue: "Enabled"
parameterValueGroup: "Disabled, Enabled"
summary: |-
Enable or disable autogrow of the storage. Default value is Enabled.
- name: --backup-retention
summary: |-
The number of days a backup is retained. Range of 7 to 35 days. Default is 7 days.
- name: --geo-redundant-backup
parameterValueGroup: "Disabled, Enabled"
summary: |-
Enable or disable geo-redundant backups. Default value is Disabled. Not supported in Basic pricing tier.
- name: --infrastructure-encryption -i
parameterValueGroup: "Disabled, Enabled"
summary: |-
Add an optional second layer of encryption for data using new encryption algorithm. Default value is Disabled.
- name: --location -l
summary: |-
Location. Values from: `az account list-locations`. You can configure the default location using `az configure --defaults location=<location>`.
- name: --minimal-tls-version
parameterValueGroup: "TLS1_0, TLS1_1, TLS1_2, TLSEnforcementDisabled"
summary: |-
Set the minimal TLS version for connections to server when SSL is enabled. Default is TLSEnforcementDisabled.
- name: --name -n
summary: |-
Name of the server. The name can contain only lowercase letters, numbers, and the hyphen (-) character. Minimum 3 characters and maximum 63 characters.
- name: --public --public-network-access
summary: |-
Enable or disable public network access to server. When disabled, only connections made through Private Links can reach this server. Allowed values are : `Enabled`, `Disabled`, `all`, `0.0.0.0`, `<SingleIP>`, `<StartIP-DestinationIP>`. Default is `Enabled`.
- name: --resource-group -g
summary: |-
Name of resource group. You can configure the default group using `az configure --defaults group=<name>`.
- name: --sku-name
defaultValue: "GP_Gen5_2"
summary: |-
The name of the sku. Follows the convention {pricing tier}_{compute generation}_{vCores} in shorthand. Examples: B_Gen5_1, GP_Gen5_4, MO_Gen5_16.
- name: --ssl-enforcement
parameterValueGroup: "Disabled, Enabled"
summary: |-
Enable or disable ssl enforcement for connections to server. Default is Enabled.
- name: --storage-size
defaultValue: "5120"
summary: |-
The storage capacity of the server (unit is megabytes). Minimum 5120 and increases in 1024 increments. Default is 5120.
- name: --tags
summary: |-
Space-separated tags: key[=value] [key[=value] ...]. Use "" to clear existing tags.
- name: --version
summary: |-
Server major version.
- uid: az_mariadb_server_delete
name: az mariadb server delete
summary: |-
Delete a server.
status: GA
sourceType: Core
syntax: >-
az mariadb server delete [--ids]
[--name]
[--resource-group]
[--subscription]
[--yes]
examples:
- summary: |-
Delete a server.
syntax: az mariadb server delete -g testgroup -n testsvr
optionalParameters:
- name: --ids
summary: |-
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
- name: --name -n
summary: |-
Name of the server. The name can contain only lowercase letters, numbers, and the hyphen (-) character. Minimum 3 characters and maximum 63 characters.
- name: --resource-group -g
summary: |-
Name of resource group. You can configure the default group using `az configure --defaults group=<name>`.
- name: --subscription
summary: |-
Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.
- name: --yes -y
defaultValue: "False"
summary: |-
Do not prompt for confirmation.
- uid: az_mariadb_server_georestore
name: az mariadb server georestore
summary: |-
Geo-restore a server from backup.
status: GA
sourceType: Core
syntax: >-
az mariadb server georestore --location
--source-server
[--backup-retention]
[--geo-redundant-backup]
[--ids]
[--name]
[--no-wait]
[--resource-group]
[--sku-name]
[--subscription]
examples:
- summary: |-
Geo-restore 'testsvr' into a new server 'testsvrnew' located in West US 2.
syntax: az mariadb server georestore -g testgroup -n testsvrnew --source-server testsvr -l westus2
- summary: |-
Geo-restore 'testsvr' into a new server 'testsvrnew' located in West US 2 with sku GP_Gen5_2.
syntax: az mariadb server georestore -g testgroup -n testsvrnew --source-server testsvr -l westus2 --sku-name GP_Gen5_2
- summary: |-
Geo-restore 'testsvr2' into a new server 'testsvrnew', where 'testsvrnew' is in a different resource group from 'testsvr2'.
syntax: >-
az mariadb server georestore -g testgroup -n testsvrnew \
-s "/subscriptions/${SubID}/resourceGroups/${ResourceGroup}/providers/Microsoft.DBforMariaDB/servers/testsvr2" \
-l westus2
requiredParameters:
- isRequired: true
name: --location -l
summary: |-
Location. Values from: `az account list-locations`. You can configure the default location using `az configure --defaults location=<location>`.
- isRequired: true
name: --source-server -s
summary: |-
The name or ID of the source server to restore from.
optionalParameters:
- name: --backup-retention
summary: |-
The number of days a backup is retained. Range of 7 to 35 days. Default is 7 days.
- name: --geo-redundant-backup
summary: |-
Enable or disable geo-redundant backups. Default value is Disabled. Not supported in Basic pricing tier.
- name: --ids
summary: |-
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
- name: --name -n
summary: |-
Name of the server. The name can contain only lowercase letters, numbers, and the hyphen (-) character. Minimum 3 characters and maximum 63 characters.
- name: --no-wait
defaultValue: "False"
summary: |-
Do not wait for the long-running operation to finish.
- name: --resource-group -g
summary: |-
Name of resource group. You can configure the default group using `az configure --defaults group=<name>`.
- name: --sku-name
summary: |-
The name of the sku. Defaults to sku of the source server. Follows the convention {pricing tier}_{compute generation}_{vCores} in shorthand. Examples: B_Gen5_1, GP_Gen5_4, MO_Gen5_16.
- name: --subscription
summary: |-
Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.
- uid: az_mariadb_server_list
name: az mariadb server list
summary: |-
List available servers.
status: GA
sourceType: Core
syntax: az mariadb server list [--resource-group]
examples:
- summary: |-
List all MariaDB servers in a subscription.
syntax: az mariadb server list
- summary: |-
List all MariaDB servers in a resource group.
syntax: az mariadb server list -g testgroup
optionalParameters:
- name: --resource-group -g
summary: |-
Name of resource group. You can configure the default group using `az configure --defaults group=<name>`.
- uid: az_mariadb_server_list-skus
name: az mariadb server list-skus
summary: |-
List available sku's in the given region.
status: GA
sourceType: Core
syntax: az mariadb server list-skus --location
examples:
- summary: |-
List available sku's in the given region.
syntax: az mariadb server list-skus -l eastus
requiredParameters:
- isRequired: true
name: --location -l
summary: |-
The name of the location. Required.
- uid: az_mariadb_server_restart
name: az mariadb server restart
summary: |-
Restart a server.
status: GA
sourceType: Core
syntax: >-
az mariadb server restart [--ids]
[--name]
[--resource-group]
[--subscription]
examples:
- summary: |-
Restart a server.
syntax: az mariadb server restart -g testgroup -n testsvr
optionalParameters:
- name: --ids
summary: |-
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
- name: --name -n
summary: |-
Name of the server. The name can contain only lowercase letters, numbers, and the hyphen (-) character. Minimum 3 characters and maximum 63 characters.
- name: --resource-group -g
summary: |-
Name of resource group. You can configure the default group using `az configure --defaults group=<name>`.
- name: --subscription
summary: |-
Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.
- uid: az_mariadb_server_restore
name: az mariadb server restore
summary: |-
Restore a server from backup.
status: GA
sourceType: Core
syntax: >-
az mariadb server restore --pitr-time
--source-server
[--ids]
[--name]
[--no-wait]
[--resource-group]
[--subscription]
examples:
- summary: |-
Restore 'testsvr' to a specific point-in-time as a new server 'testsvrnew'.
syntax: az mariadb server restore -g testgroup -n testsvrnew --source-server testsvr --restore-point-in-time "2017-06-15T13:10:00Z"
- summary: |-
Restore 'testsvr2' to 'testsvrnew', where 'testsvrnew' is in a different resource group from 'testsvr2'.
syntax: >-
az mariadb server restore -g testgroup -n testsvrnew \
-s "/subscriptions/${SubID}/resourceGroups/${ResourceGroup}/providers/Microsoft.DBforMariaDB/servers/testsvr2" \
--restore-point-in-time "2017-06-15T13:10:00Z"
requiredParameters:
- isRequired: true
name: --pitr-time --restore-point-in-time
summary: |-
The point in time in UTC to restore from (ISO8601 format), e.g., 2017-04-26T02:10:00+08:00.
- isRequired: true
name: --source-server -s
summary: |-
The name or resource ID of the source server to restore from.
optionalParameters:
- name: --ids
summary: |-
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
- name: --name -n
summary: |-
Name of the server. The name can contain only lowercase letters, numbers, and the hyphen (-) character. Minimum 3 characters and maximum 63 characters.
- name: --no-wait
defaultValue: "False"
summary: |-
Do not wait for the long-running operation to finish.
- name: --resource-group -g
summary: |-
Name of resource group. You can configure the default group using `az configure --defaults group=<name>`.
- name: --subscription
summary: |-
Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.
- uid: az_mariadb_server_show
name: az mariadb server show
summary: |-
Get the details of a server.
status: GA
sourceType: Core
syntax: >-
az mariadb server show [--ids]
[--name]
[--resource-group]
[--subscription]
examples:
- summary: |-
Get the details of a server. (autogenerated)
syntax: az mariadb server show --name MyServer --resource-group MyResourceGroup
optionalParameters:
- name: --ids
summary: |-
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
- name: --name -n
summary: |-
Name of the server. The name can contain only lowercase letters, numbers, and the hyphen (-) character. Minimum 3 characters and maximum 63 characters.
- name: --resource-group -g
summary: |-
Name of resource group. You can configure the default group using `az configure --defaults group=<name>`.
- name: --subscription
summary: |-
Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.
- uid: az_mariadb_server_show-connection-string
name: az mariadb server show-connection-string
summary: |-
Show the connection strings for a MariaDB server database.
status: GA
sourceType: Core
syntax: >-
az mariadb server show-connection-string [--admin-password]
[--admin-user]
[--database-name]
[--ids]
[--server-name]
[--subscription]
examples:
- summary: |-
Show connection strings for cmd and programming languages.
syntax: az mariadb server show-connection-string -s testServer -u username -p password -d databasename
optionalParameters:
- name: --admin-password -p
defaultValue: "{password}"
summary: |-
The login password of the administrator.
- name: --admin-user -u
defaultValue: "{username}"
summary: |-
The login username of the administrator.
- name: --database-name -d
defaultValue: "{database}"
summary: |-
The name of a database.
- name: --ids
summary: |-
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
- name: --server-name -s
defaultValue: "{server}"
summary: |-
Name of the server.
- name: --subscription
summary: |-
Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.
- uid: az_mariadb_server_start
name: az mariadb server start
summary: |-
Start a stopped server.
status: GA
sourceType: Core
syntax: >-
az mariadb server start [--ids]
[--name]
[--resource-group]
[--subscription]
examples:
- summary: |-
Start a stopped server. (autogenerated)
syntax: az mariadb server start --name testsvr --resource-group testgroup --subscription MySubscription
optionalParameters:
- name: --ids
summary: |-
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
- name: --name -n
summary: |-
Name of the server. The name can contain only lowercase letters, numbers, and the hyphen (-) character. Minimum 3 characters and maximum 63 characters.
- name: --resource-group -g
summary: |-
Name of resource group. You can configure the default group using `az configure --defaults group=<name>`.
- name: --subscription
summary: |-
Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.
- uid: az_mariadb_server_stop
name: az mariadb server stop
summary: |-
Stop a running server.
status: GA
sourceType: Core
syntax: >-
az mariadb server stop [--ids]
[--name]
[--resource-group]
[--subscription]
examples:
- summary: |-
Stop a running server. (autogenerated)
syntax: az mariadb server stop --name testsvr --resource-group testgroup --subscription MySubscription
optionalParameters:
- name: --ids
summary: |-
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
- name: --name -n
summary: |-
Name of the server. The name can contain only lowercase letters, numbers, and the hyphen (-) character. Minimum 3 characters and maximum 63 characters.
- name: --resource-group -g
summary: |-
Name of resource group. You can configure the default group using `az configure --defaults group=<name>`.
- name: --subscription
summary: |-
Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.
- uid: az_mariadb_server_update
name: az mariadb server update
summary: |-
Update a server.
status: GA
sourceType: Core
syntax: >-
az mariadb server update [--add]
[--admin-password]
[--assign-identity]
[--auto-grow {Disabled, Enabled}]
[--backup-retention]
[--force-string]
[--ids]
[--minimal-tls-version {TLS1_0, TLS1_1, TLS1_2, TLSEnforcementDisabled}]
[--name]
[--public]
[--remove]
[--resource-group]
[--set]
[--sku-name]
[--ssl-enforcement {Disabled, Enabled}]
[--storage-size]
[--subscription]
[--tags]
examples:
- summary: |-
Update a server's sku.
syntax: az mariadb server update -g testgroup -n testsvrnew --sku-name GP_Gen5_4
- summary: |-
Update a server's tags.
syntax: az mariadb server update -g testgroup -n testsvrnew --tags "k1=v1" "k2=v2"
- summary: |-
Update a server. (autogenerated)
syntax: az mariadb server update --admin-password password --name testsvrnew --resource-group testgroup
- summary: |-
Update a server. (autogenerated)
syntax: az mariadb server update --name testsvrnew --resource-group testgroup --ssl-enforcement Enabled
optionalParameters:
- name: --add
defaultValue: "[]"
summary: |-
Add an object to a list of objects by specifying a path and key value pairs. Example: `--add property.listProperty <key=value, string or JSON string>`.
- name: --admin-password -p
summary: |-
The password of the administrator. Minimum 8 characters and maximum 128 characters. Password must contain characters from three of the following categories: English uppercase letters, English lowercase letters, numbers, and non-alphanumeric characters.
- name: --assign-identity
defaultValue: "False"
summary: |-
Generate and assign an Azure Active Directory Identity for this server for use with key management services like Azure KeyVault.
- name: --auto-grow
parameterValueGroup: "Disabled, Enabled"
summary: |-
Enable or disable autogrow of the storage. Default value is Enabled.
- name: --backup-retention
summary: |-
The number of days a backup is retained. Range of 7 to 35 days. Default is 7 days.
- name: --force-string
defaultValue: "False"
summary: |-
When using 'set' or 'add', preserve string literals instead of attempting to convert to JSON.
- name: --ids
summary: |-
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
- name: --minimal-tls-version
parameterValueGroup: "TLS1_0, TLS1_1, TLS1_2, TLSEnforcementDisabled"
summary: |-
Set the minimal TLS version for connections to server when SSL is enabled. Default is TLSEnforcementDisabled.
- name: --name -n
summary: |-
Name of the server. The name can contain only lowercase letters, numbers, and the hyphen (-) character. Minimum 3 characters and maximum 63 characters.
- name: --public --public-network-access
summary: |-
Enable or disable public network access to server. When disabled, only connections made through Private Links can reach this server. Allowed values are : `Enabled`, `Disabled`, `all`, `0.0.0.0`, `<SingleIP>`, `<StartIP-DestinationIP>`. Default is `Enabled`.
- name: --remove
defaultValue: "[]"
summary: |-
Remove a property or an element from a list. Example: `--remove property.list <indexToRemove>` OR `--remove propertyToRemove`.
- name: --resource-group -g
summary: |-
Name of resource group. You can configure the default group using `az configure --defaults group=<name>`.
- name: --set
defaultValue: "[]"
summary: |-
Update an object by specifying a property path and value to set. Example: `--set property1.property2=<value>`.
- name: --sku-name
summary: |-
The name of the sku. Follows the convention {pricing tier}_{compute generation}_{vCores} in shorthand. Examples: B_Gen5_1, GP_Gen5_4, MO_Gen5_16.
- name: --ssl-enforcement
parameterValueGroup: "Disabled, Enabled"
summary: |-
Enable or disable ssl enforcement for connections to server. Default is Enabled.
- name: --storage-size
summary: |-
The storage capacity of the server (unit is megabytes). Minimum 5120 and increases in 1024 increments. Default is 5120.
- name: --subscription
summary: |-
Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.
- name: --tags
summary: |-
Space-separated tags: key[=value] [key[=value] ...]. Use "" to clear existing tags.
- uid: az_mariadb_server_wait
name: az mariadb server wait
summary: |-
Wait for server to satisfy certain conditions.
status: GA
sourceType: Core
syntax: >-
az mariadb server wait [--custom]
[--exists]
[--ids]
[--interval]
[--name]
[--resource-group]
[--subscription]
[--timeout]
optionalParameters:
- name: --custom
summary: |-
Wait until the condition satisfies a custom JMESPath query. E.g. provisioningState!='InProgress', instanceView.statuses[?code=='PowerState/running'].
- name: --exists
defaultValue: "False"
summary: |-
Wait until the resource exists.
- name: --ids
summary: |-
One or more resource IDs (space-delimited). It should be a complete resource ID containing all information of 'Resource Id' arguments. You should provide either --ids or other 'Resource Id' arguments.
- name: --interval
defaultValue: "30"
summary: |-
Polling interval in seconds.
- name: --name -n
summary: |-
Name of the server. The name can contain only lowercase letters, numbers, and the hyphen (-) character. Minimum 3 characters and maximum 63 characters.
- name: --resource-group -g
summary: |-
Name of resource group. You can configure the default group using `az configure --defaults group=<name>`.
- name: --subscription
summary: |-
Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.
- name: --timeout
defaultValue: "3600"
summary: |-
Maximum wait in seconds.
commands:
- az_mariadb_server_configuration
- az_mariadb_server_configuration_list
- az_mariadb_server_configuration_set
- az_mariadb_server_configuration_show
- az_mariadb_server_create
- az_mariadb_server_delete
- az_mariadb_server_firewall-rule
- az_mariadb_server_firewall-rule_create
- az_mariadb_server_firewall-rule_delete
- az_mariadb_server_firewall-rule_list
- az_mariadb_server_firewall-rule_show
- az_mariadb_server_firewall-rule_update
- az_mariadb_server_georestore
- az_mariadb_server_list
- az_mariadb_server_list-skus
- az_mariadb_server_private-endpoint-connection
- az_mariadb_server_private-endpoint-connection_approve
- az_mariadb_server_private-endpoint-connection_delete
- az_mariadb_server_private-endpoint-connection_reject
- az_mariadb_server_private-endpoint-connection_show
- az_mariadb_server_private-link-resource
- az_mariadb_server_private-link-resource_list
- az_mariadb_server_replica
- az_mariadb_server_replica_create
- az_mariadb_server_replica_list
- az_mariadb_server_replica_stop
- az_mariadb_server_restart
- az_mariadb_server_restore
- az_mariadb_server_show
- az_mariadb_server_show-connection-string
- az_mariadb_server_start
- az_mariadb_server_stop
- az_mariadb_server_update
- az_mariadb_server_vnet-rule
- az_mariadb_server_vnet-rule_create
- az_mariadb_server_vnet-rule_delete
- az_mariadb_server_vnet-rule_list
- az_mariadb_server_vnet-rule_show
- az_mariadb_server_vnet-rule_update
- az_mariadb_server_wait
globalParameters:
- name: --debug
summary: |-
Increase logging verbosity to show all debug logs.
- name: --help -h
summary: |-
Show this help message and exit.
- name: --only-show-errors
summary: |-
Only show errors, suppressing warnings.
- name: --output -o
defaultValue: "json"
parameterValueGroup: "json, jsonc, none, table, tsv, yaml, yamlc"
summary: |-
Output format.
- name: --query
summary: |-
JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.
- name: --subscription
summary: |-
Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.
- name: --verbose
summary: |-
Increase logging verbosity. Use --debug for full debug logs.
metadata:
description: Manage MariaDB servers.