-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
74 changed files
with
7,389 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,173 @@ | ||
--- | ||
external help file: | ||
Module Name: Az.MySql | ||
online version: https://docs.microsoft.com/en-us/powershell/module/az.mysql/get-azmysqlflexibleserver | ||
schema: 2.0.0 | ||
--- | ||
|
||
# Get-AzMySqlFlexibleServer | ||
|
||
## SYNOPSIS | ||
Gets information about a server. | ||
|
||
## SYNTAX | ||
|
||
### List1 (Default) | ||
``` | ||
Get-AzMySqlFlexibleServer [-SubscriptionId <String[]>] [-DefaultProfile <PSObject>] [<CommonParameters>] | ||
``` | ||
|
||
### Get | ||
``` | ||
Get-AzMySqlFlexibleServer -ResourceGroupName <String> -ServerName <String> [-SubscriptionId <String[]>] | ||
[-DefaultProfile <PSObject>] [<CommonParameters>] | ||
``` | ||
|
||
### GetViaIdentity | ||
``` | ||
Get-AzMySqlFlexibleServer -InputObject <IMySqlIdentity> [-DefaultProfile <PSObject>] [<CommonParameters>] | ||
``` | ||
|
||
### List | ||
``` | ||
Get-AzMySqlFlexibleServer -ResourceGroupName <String> [-SubscriptionId <String[]>] | ||
[-DefaultProfile <PSObject>] [<CommonParameters>] | ||
``` | ||
|
||
## DESCRIPTION | ||
Gets information about a server. | ||
|
||
## EXAMPLES | ||
|
||
### Example 1: {{ Add title here }} | ||
```powershell | ||
PS C:\> {{ Add code here }} | ||
{{ Add output here }} | ||
``` | ||
|
||
{{ Add description here }} | ||
|
||
### Example 2: {{ Add title here }} | ||
```powershell | ||
PS C:\> {{ Add code here }} | ||
{{ Add output here }} | ||
``` | ||
|
||
{{ Add description here }} | ||
|
||
## PARAMETERS | ||
|
||
### -DefaultProfile | ||
The credentials, account, tenant, and subscription used for communication with Azure. | ||
|
||
```yaml | ||
Type: System.Management.Automation.PSObject | ||
Parameter Sets: (All) | ||
Aliases: AzureRMContext, AzureCredential | ||
|
||
Required: False | ||
Position: Named | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### -InputObject | ||
Identity Parameter | ||
To construct, see NOTES section for INPUTOBJECT properties and create a hash table. | ||
```yaml | ||
Type: Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity | ||
Parameter Sets: GetViaIdentity | ||
Aliases: | ||
|
||
Required: True | ||
Position: Named | ||
Default value: None | ||
Accept pipeline input: True (ByValue) | ||
Accept wildcard characters: False | ||
``` | ||
### -ResourceGroupName | ||
The name of the resource group. | ||
The name is case insensitive. | ||
```yaml | ||
Type: System.String | ||
Parameter Sets: Get, List | ||
Aliases: | ||
|
||
Required: True | ||
Position: Named | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### -ServerName | ||
The name of the server. | ||
```yaml | ||
Type: System.String | ||
Parameter Sets: Get | ||
Aliases: | ||
|
||
Required: True | ||
Position: Named | ||
Default value: None | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### -SubscriptionId | ||
The ID of the target subscription. | ||
```yaml | ||
Type: System.String[] | ||
Parameter Sets: Get, List, List1 | ||
Aliases: | ||
|
||
Required: False | ||
Position: Named | ||
Default value: (Get-AzContext).Subscription.Id | ||
Accept pipeline input: False | ||
Accept wildcard characters: False | ||
``` | ||
### CommonParameters | ||
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). | ||
## INPUTS | ||
### Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.IMySqlIdentity | ||
## OUTPUTS | ||
### Microsoft.Azure.PowerShell.Cmdlets.MySql.Models.Api20200701Privatepreview.IServerAutoGenerated | ||
## NOTES | ||
ALIASES | ||
COMPLEX PARAMETER PROPERTIES | ||
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. | ||
INPUTOBJECT <IMySqlIdentity>: Identity Parameter | ||
- `[ConfigurationName <String>]`: The name of the server configuration. | ||
- `[DatabaseName <String>]`: The name of the database. | ||
- `[FirewallRuleName <String>]`: The name of the server firewall rule. | ||
- `[Id <String>]`: Resource identity path | ||
- `[KeyName <String>]`: The name of the server key. | ||
- `[LocationName <String>]`: The name of the location. | ||
- `[ResourceGroupName <String>]`: The name of the resource group. The name is case insensitive. | ||
- `[SecurityAlertPolicyName <SecurityAlertPolicyName?>]`: The name of the security alert policy. | ||
- `[ServerName <String>]`: The name of the server. | ||
- `[SubscriptionId <String>]`: The ID of the target subscription. | ||
- `[VirtualNetworkRuleName <String>]`: The name of the virtual network rule. | ||
|
||
## RELATED LINKS | ||
|
Oops, something went wrong.