Skip to content

Commit bc2c213

Browse files
msJinLeiazurepowershellDaeunYim
authored
Move MySql to master (#14278)
* Move MySql to master * Update ChangeLog.md * Fix changelog.md error of mysql Co-authored-by: azurepowershell <[email protected]> Co-authored-by: Daeun Yim <[email protected]>
1 parent 9a11862 commit bc2c213

File tree

226 files changed

+1378
-1049
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

226 files changed

+1378
-1049
lines changed

src/MySql/Az.MySql.format.ps1xml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1071,9 +1071,6 @@
10711071
<TableColumnHeader>
10721072
<Label>AdministratorLogin</Label>
10731073
</TableColumnHeader>
1074-
<TableColumnHeader>
1075-
<Label>AdministratorLoginPassword</Label>
1076-
</TableColumnHeader>
10771074
</TableHeaders>
10781075
<TableRowEntries>
10791076
<TableRowEntry>
@@ -1111,9 +1108,6 @@
11111108
<TableColumnItem>
11121109
<PropertyName>AdministratorLogin</PropertyName>
11131110
</TableColumnItem>
1114-
<TableColumnItem>
1115-
<PropertyName>AdministratorLoginPassword</PropertyName>
1116-
</TableColumnItem>
11171111
</TableColumnItems>
11181112
</TableRowEntry>
11191113
</TableRowEntries>
@@ -1406,9 +1400,6 @@
14061400
</ViewSelectedBy>
14071401
<TableControl>
14081402
<TableHeaders>
1409-
<TableColumnHeader>
1410-
<Label>AdministratorLoginPassword</Label>
1411-
</TableColumnHeader>
14121403
<TableColumnHeader>
14131404
<Label>MinimalTlsVersion</Label>
14141405
</TableColumnHeader>
@@ -1428,9 +1419,6 @@
14281419
<TableRowEntries>
14291420
<TableRowEntry>
14301421
<TableColumnItems>
1431-
<TableColumnItem>
1432-
<PropertyName>AdministratorLoginPassword</PropertyName>
1433-
</TableColumnItem>
14341422
<TableColumnItem>
14351423
<PropertyName>MinimalTlsVersion</PropertyName>
14361424
</TableColumnItem>
@@ -2441,9 +2429,6 @@
24412429
<TableColumnHeader>
24422430
<Label>AdministratorLogin</Label>
24432431
</TableColumnHeader>
2444-
<TableColumnHeader>
2445-
<Label>AdministratorLoginPassword</Label>
2446-
</TableColumnHeader>
24472432
<TableColumnHeader>
24482433
<Label>AvailabilityZone</Label>
24492434
</TableColumnHeader>
@@ -2502,9 +2487,6 @@
25022487
<TableColumnItem>
25032488
<PropertyName>AdministratorLogin</PropertyName>
25042489
</TableColumnItem>
2505-
<TableColumnItem>
2506-
<PropertyName>AdministratorLoginPassword</PropertyName>
2507-
</TableColumnItem>
25082490
<TableColumnItem>
25092491
<PropertyName>AvailabilityZone</PropertyName>
25102492
</TableColumnItem>
@@ -2568,9 +2550,6 @@
25682550
</ViewSelectedBy>
25692551
<TableControl>
25702552
<TableHeaders>
2571-
<TableColumnHeader>
2572-
<Label>AdministratorLoginPassword</Label>
2573-
</TableColumnHeader>
25742553
<TableColumnHeader>
25752554
<Label>HaEnabled</Label>
25762555
</TableColumnHeader>
@@ -2584,9 +2563,6 @@
25842563
<TableRowEntries>
25852564
<TableRowEntry>
25862565
<TableColumnItems>
2587-
<TableColumnItem>
2588-
<PropertyName>AdministratorLoginPassword</PropertyName>
2589-
</TableColumnItem>
25902566
<TableColumnItem>
25912567
<PropertyName>HaEnabled</PropertyName>
25922568
</TableColumnItem>

src/MySql/Az.MySql.psd1

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 2/5/2021
6+
# Generated on: 2/23/2021
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
RootModule = './Az.MySql.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.5.0'
15+
ModuleVersion = '0.1.0'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -45,7 +45,7 @@ PowerShellVersion = '5.1'
4545
DotNetFrameworkVersion = '4.7.2'
4646

4747
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
48-
# CLRVersion = ''
48+
# ClrVersion = ''
4949

5050
# Processor architecture (None, X86, Amd64) required by this module
5151
# ProcessorArchitecture = ''
@@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2'
5454
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.5'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
57-
RequiredAssemblies = 'bin\Az.MySql.private.dll'
57+
RequiredAssemblies = './bin/Az.MySql.private.dll'
5858

5959
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
6060
# ScriptsToProcess = @()
@@ -63,7 +63,7 @@ RequiredAssemblies = 'bin\Az.MySql.private.dll'
6363
# TypesToProcess = @()
6464

6565
# Format files (.ps1xml) to be loaded when importing this module
66-
FormatsToProcess = 'Az.MySql.format.ps1xml'
66+
FormatsToProcess = './Az.MySql.format.ps1xml'
6767

6868
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
6969
# NestedModules = @()
@@ -133,7 +133,7 @@ PrivateData = @{
133133
# IconUri = ''
134134

135135
# ReleaseNotes of this module
136-
ReleaseNotes = '* Added cmdlet ''Test-AzMySqlFlexibleServerConnect'''
136+
# ReleaseNotes = ''
137137

138138
# Prerelease string of this module
139139
# Prerelease = ''

src/MySql/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* Added maintenance windows parameter to Update-AzMySqlFlexibleServer cmdlet
22+
* Added zone parameter to server New-AzMySqlFlexibleServer cmdlet.
2123

2224
## Version 0.5.0
2325
* Added cmdlet `Test-AzMySqlFlexibleServerConnect`

src/MySql/custom/New-AzMySqlFlexibleServer.ps1

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ param(
5353
[System.String]
5454
${Location},
5555

56+
[Parameter(HelpMessage = 'Availability zone into which to provision the resource.')]
57+
[Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')]
58+
[System.String]
59+
${Zone},
60+
5661
[Parameter(HelpMessage = 'Administrator username for the server. Once set, it cannot be changed.')]
5762
[Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')]
5863
[System.String]
@@ -187,6 +192,11 @@ process {
187192
$PSBoundParameters.Location = 'westus2'
188193
}
189194

195+
if ($PSBoundParameters.ContainsKey('Zone')) {
196+
$PSBoundParameters.AvailabilityZone = $PSBoundParameters.Zone
197+
$null = $PSBoundParameters.Remove('Zone')
198+
}
199+
190200
if (!$PSBoundParameters.ContainsKey('AdministratorLoginPassword')) {
191201
$Password = Get-GeneratePassword
192202
$PSBoundParameters.AdministratorLoginPassword = $Password | ConvertTo-SecureString -AsPlainText -Force
@@ -515,6 +525,7 @@ function CreateFirewallRule($Parameters) {
515525
}
516526
elseif ($StartIP -eq $EndIP) {
517527
$Msg = 'Configuring server firewall rule to accept connections from ' + $StartIP
528+
$RuleName = "FirewallIPAddress_" + $Date
518529
}
519530
else {
520531
$Msg = 'Configuring server firewall rule to accept connections from {0} to {1}' -f $StartIP, $EndIp

src/MySql/custom/Restore-AzMySqlFlexibleServer_PointInTimeRestore.ps1

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ function Restore-AzMySqlFlexibleServer_PointInTimeRestore {
4545
[Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20200701Preview.IServerAutoGenerated]
4646
${InputObject},
4747

48-
[Parameter(HelpMessage = 'The name of the sku, e.g., Standard_D2ds_v4, Standard_B1ms')]
48+
[Parameter(HelpMessage = 'Availability zone into which to provision the resource.')]
4949
[Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')]
5050
[System.String]
51-
${Sku},
51+
${Zone},
5252

5353
[Parameter(HelpMessage = 'The credentials, account, tenant, and subscription used for communication with Azure.')]
5454
[Alias('AzureRMContext', 'AzureCredential')]
@@ -113,16 +113,13 @@ function Restore-AzMySqlFlexibleServer_PointInTimeRestore {
113113
$server = $PSBoundParameters['InputObject']
114114
$PSBoundParameters.SourceServerId = $server.Id
115115
$PSBoundParameters.Location = $server.Location
116-
$PSBoundParameters.SkuName = $server.SkuName
117116
$null = $PSBoundParameters.Remove('InputObject')
118117

119-
if($PSBoundParameters.ContainsKey('Sku'))
120-
{
121-
$PSBoundParameters.SkuName = $PSBoundParameters['Sku']
122-
$null = $PSBoundParameters.Remove('Sku')
118+
if ($PSBoundParameters.ContainsKey('Zone')) {
119+
$PSBoundParameters.AvailabilityZone = $PSBoundParameters.Zone
120+
$null = $PSBoundParameters.Remove('Zone')
123121
}
124122

125-
126123
Az.MySql.internal\New-AzMySqlFlexibleServer @PSBoundParameters
127124
} catch {
128125
throw

src/MySql/custom/Update-AzMySqlFlexibleServer.ps1

Lines changed: 43 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,26 +56,28 @@ function Update-AzMySqlFlexibleServer {
5656
[System.String]
5757
${ReplicationRole},
5858

59-
[Parameter(HelpMessage='The name of the sku, typically, tier + family + cores, e.g. B_Gen4_1, GP_Gen5_8.')]
59+
[Parameter(HelpMessage='The name of the sku, typically, tier + family + cores, e.g. Burstable_B1ms, Standard_D2ds_v4')]
6060
[Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')]
6161
[System.String]
6262
${Sku},
6363

64-
[Parameter(HelpMessage='The tier of the particular SKU, e.g. Basic.')]
64+
[Parameter(HelpMessage='The tier of the particular SKU. Accepted values: Burstable, GeneralPurpose, Memory Optimized. Default: Burstable.')]
6565
[ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier])]
6666
[Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')]
6767
[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SkuTier]
6868
${SkuTier},
6969

7070
[Parameter(HelpMessage='Enable or disable high availability feature.')]
7171
[ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HaEnabledEnum])]
72+
[Validateset('Enabled', 'Disabled')]
7273
[Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')]
7374
[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.HaEnabledEnum]
7475
# Enable HA or not for a server.
7576
${HaEnabled},
7677

7778
[Parameter(HelpMessage='Enable ssl enforcement or not when connect to server.')]
7879
[ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum])]
80+
[Validateset('Enabled', 'Disabled')]
7981
[Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')]
8082
[Microsoft.Azure.PowerShell.Cmdlets.MySql.Support.SslEnforcementEnum]
8183
${SslEnforcement},
@@ -103,6 +105,11 @@ function Update-AzMySqlFlexibleServer {
103105
[System.Collections.Hashtable]
104106
${Tag},
105107

108+
[Parameter(HelpMessage='Period of time (UTC) designated for maintenance. Examples: "Sun:23:30" to schedule on Sunday, 11:30pm UTC. To set back to default pass in "Disabled"')]
109+
[Microsoft.Azure.PowerShell.Cmdlets.MySql.Category('Body')]
110+
[System.String]
111+
${MaintenanceWindow},
112+
106113
[Parameter(HelpMessage = 'The credentials, account, tenant, and subscription used for communication with Azure.')]
107114
[Alias('AzureRMContext', 'AzureCredential')]
108115
[ValidateNotNull()]
@@ -181,6 +188,40 @@ function Update-AzMySqlFlexibleServer {
181188
$null = $PSBoundParameters.Remove('StorageAutogrow')
182189
}
183190

191+
if ($PSBoundParameters.ContainsKey('MaintenanceWindow')) {
192+
193+
$PSBoundParameters.MaintenanceWindowDayOfWeek = $null
194+
$PSBoundParameters.MaintenanceWindowStartHour = $null
195+
$PSBoundParameters.MaintenanceWindowStartMinute = $null
196+
197+
if ($PSBoundParameters.MaintenanceWindow.ToLower() -eq "disabled"){
198+
$PSBoundParameters.MaintenanceWindowDayOfWeek = 0
199+
$PSBoundParameters.MaintenanceWindowStartHour = 0
200+
$PSBoundParameters.MaintenanceWindowStartMinute = 0
201+
$PSBoundParameters.MaintenanceWindowCustomWindow = "Disabled"
202+
}
203+
else {
204+
$ParsedWindow = $PSBoundParameters.MaintenanceWindow -split ":"
205+
$DaytoNumber = @{Mon = 1; Tue = 2; Wed = 3; Thur = 4; Fri = 5; Sat = 6; Sun = 0}
206+
207+
if ($ParsedWindow.Length -ge 1){
208+
$PSBoundParameters.MaintenanceWindowDayOfWeek = $DaytoNumber[$ParsedWindow[0]]
209+
}
210+
211+
if ($ParsedWindow.Length -ge 2){
212+
$PSBoundParameters.MaintenanceWindowStartHour = $ParsedWindow[1]
213+
}
214+
215+
if ($ParsedWindow.Length -ge 3){
216+
$PSBoundParameters.MaintenanceWindowStartMinute = $ParsedWindow[2]
217+
}
218+
219+
$PSBoundParameters.MaintenanceWindowCustomWindow = "Enabled"
220+
}
221+
222+
$null = $PSBoundParameters.Remove('MaintenanceWindow')
223+
}
224+
184225
Az.MySql.internal\Update-AzMySqlFlexibleServer @PSBoundParameters
185226
} catch {
186227
throw

src/MySql/exports/Get-AzMySqlConfiguration.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ INPUTOBJECT <IMySqlIdentity>: Identity Parameter
6161
[SubscriptionId <String>]: The ID of the target subscription.
6262
[VirtualNetworkRuleName <String>]: The name of the virtual network rule.
6363
.Link
64-
https://docs.microsoft.com/en-us/powershell/module/az.mysql/get-azmysqlconfiguration
64+
https://docs.microsoft.com/powershell/module/az.mysql/get-azmysqlconfiguration
6565
#>
6666
function Get-AzMySqlConfiguration {
6767
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IConfiguration])]

src/MySql/exports/Get-AzMySqlConnectionString.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ INPUTOBJECT <IServer>: The server for the connection string.
6363
[UserVisibleState <ServerState?>]: A state of a server that is visible to user.
6464
[Version <ServerVersion?>]: Server version.
6565
.Link
66-
https://docs.microsoft.com/en-us/powershell/module/az.mysql/get-azmysqlconnectionstring
66+
https://docs.microsoft.com/powershell/module/az.mysql/get-azmysqlconnectionstring
6767
#>
6868
function Get-AzMySqlConnectionString {
6969
[OutputType([System.String])]

src/MySql/exports/Get-AzMySqlFirewallRule.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ INPUTOBJECT <IMySqlIdentity>: Identity Parameter
6060
[SubscriptionId <String>]: The ID of the target subscription.
6161
[VirtualNetworkRuleName <String>]: The name of the virtual network rule.
6262
.Link
63-
https://docs.microsoft.com/en-us/powershell/module/az.mysql/get-azmysqlfirewallrule
63+
https://docs.microsoft.com/powershell/module/az.mysql/get-azmysqlfirewallrule
6464
#>
6565
function Get-AzMySqlFirewallRule {
6666
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule])]

src/MySql/exports/Get-AzMySqlFlexibleServer.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ INPUTOBJECT <IMySqlIdentity>: Identity Parameter
6767
[SubscriptionId <String>]: The ID of the target subscription.
6868
[VirtualNetworkRuleName <String>]: The name of the virtual network rule.
6969
.Link
70-
https://docs.microsoft.com/en-us/powershell/module/az.mysql/get-azmysqlflexibleserver
70+
https://docs.microsoft.com/powershell/module/az.mysql/get-azmysqlflexibleserver
7171
#>
7272
function Get-AzMySqlFlexibleServer {
7373
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20200701Preview.IServerAutoGenerated])]

src/MySql/exports/Get-AzMySqlFlexibleServerConfiguration.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ INPUTOBJECT <IMySqlIdentity>: Identity Parameter
6262
[SubscriptionId <String>]: The ID of the target subscription.
6363
[VirtualNetworkRuleName <String>]: The name of the virtual network rule.
6464
.Link
65-
https://docs.microsoft.com/en-us/powershell/module/az.mysql/get-azmysqlflexibleserverconfiguration
65+
https://docs.microsoft.com/powershell/module/az.mysql/get-azmysqlflexibleserverconfiguration
6666
#>
6767
function Get-AzMySqlFlexibleServerConfiguration {
6868
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20200701Preview.IConfigurationAutoGenerated])]

src/MySql/exports/Get-AzMySqlFlexibleServerConnectionString.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ INPUTOBJECT <IMySqlIdentity>: The server for the connection string.
4949
[SubscriptionId <String>]: The ID of the target subscription.
5050
[VirtualNetworkRuleName <String>]: The name of the virtual network rule.
5151
.Link
52-
https://docs.microsoft.com/en-us/powershell/module/az.mysql/get-azmysqlflexibleserverconnectionstring
52+
https://docs.microsoft.com/powershell/module/az.mysql/get-azmysqlflexibleserverconnectionstring
5353
#>
5454
function Get-AzMySqlFlexibleServerConnectionString {
5555
[OutputType([System.String])]

src/MySql/exports/Get-AzMySqlFlexibleServerDatabase.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ INPUTOBJECT <IMySqlIdentity>: Identity Parameter
6262
[SubscriptionId <String>]: The ID of the target subscription.
6363
[VirtualNetworkRuleName <String>]: The name of the virtual network rule.
6464
.Link
65-
https://docs.microsoft.com/en-us/powershell/module/az.mysql/get-azmysqlflexibleserverdatabase
65+
https://docs.microsoft.com/powershell/module/az.mysql/get-azmysqlflexibleserverdatabase
6666
#>
6767
function Get-AzMySqlFlexibleServerDatabase {
6868
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IDatabase])]

src/MySql/exports/Get-AzMySqlFlexibleServerFirewallRule.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ INPUTOBJECT <IMySqlIdentity>: Identity Parameter
6161
[SubscriptionId <String>]: The ID of the target subscription.
6262
[VirtualNetworkRuleName <String>]: The name of the virtual network rule.
6363
.Link
64-
https://docs.microsoft.com/en-us/powershell/module/az.mysql/get-azmysqlflexibleserverfirewallrule
64+
https://docs.microsoft.com/powershell/module/az.mysql/get-azmysqlflexibleserverfirewallrule
6565
#>
6666
function Get-AzMySqlFlexibleServerFirewallRule {
6767
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IFirewallRule])]

src/MySql/exports/Get-AzMySqlFlexibleServerLocationBasedCapability.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Standard_E64ds_v4 MemoryOptimized 8192 64
4646
.Outputs
4747
Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20200701Preview.ICapabilityProperties
4848
.Link
49-
https://docs.microsoft.com/en-us/powershell/module/az.mysql/get-azmysqlflexibleserverlocationbasedcapability
49+
https://docs.microsoft.com/powershell/module/az.mysql/get-azmysqlflexibleserverlocationbasedcapability
5050
#>
5151
function Get-AzMySqlFlexibleServerLocationBasedCapability {
5252
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20200701Preview.ICapabilityProperties])]

src/MySql/exports/Get-AzMySqlFlexibleServerReplica.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ mysql-test westus2 mysql_test 5.7 5120 Stand
2828
.Outputs
2929
Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20200701Preview.IServerAutoGenerated
3030
.Link
31-
https://docs.microsoft.com/en-us/powershell/module/az.mysql/get-azmysqlflexibleserverreplica
31+
https://docs.microsoft.com/powershell/module/az.mysql/get-azmysqlflexibleserverreplica
3232
#>
3333
function Get-AzMySqlFlexibleServerReplica {
3434
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20200701Preview.IServerAutoGenerated])]

src/MySql/exports/Get-AzMySqlReplica.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ mysql-test-replica eastus mysql_test 5.7 10240 G
2828
.Outputs
2929
Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer
3030
.Link
31-
https://docs.microsoft.com/en-us/powershell/module/az.mysql/get-azmysqlreplica
31+
https://docs.microsoft.com/powershell/module/az.mysql/get-azmysqlreplica
3232
#>
3333
function Get-AzMySqlReplica {
3434
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer])]

src/MySql/exports/Get-AzMySqlServer.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ INPUTOBJECT <IMySqlIdentity>: Identity Parameter
6666
[SubscriptionId <String>]: The ID of the target subscription.
6767
[VirtualNetworkRuleName <String>]: The name of the virtual network rule.
6868
.Link
69-
https://docs.microsoft.com/en-us/powershell/module/az.mysql/get-azmysqlserver
69+
https://docs.microsoft.com/powershell/module/az.mysql/get-azmysqlserver
7070
#>
7171
function Get-AzMySqlServer {
7272
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20171201.IServer])]

0 commit comments

Comments
 (0)