@@ -8,19 +8,32 @@ schema: 2.0.0
88# New-AzMapsAccount
99
1010## SYNOPSIS
11- Create or update a Maps Account.
11+ create a Maps Account.
1212A Maps Account holds the keys which allow access to the Maps REST APIs.
1313
1414## SYNTAX
1515
16+ ### CreateExpanded (Default)
1617```
17- New-AzMapsAccount -Name <String> -ResourceGroupName <String> -Location <String> -SkuName <Name>
18- [-SubscriptionId <String>] [-DisableLocalAuth] [-Kind <Kind>] [-Tag <Hashtable>] [-DefaultProfile <PSObject>]
19- [-Confirm] [-WhatIf] [<CommonParameters>]
18+ New-AzMapsAccount -Name <String> -ResourceGroupName <String> -Location <String> -SkuName <String>
19+ [-SubscriptionId <String>] [-DisableLocalAuth] [-Kind <String>] [-Tag <Hashtable>]
20+ [-DefaultProfile <PSObject>] [-Confirm] [-WhatIf] [<CommonParameters>]
21+ ```
22+
23+ ### CreateViaJsonFilePath
24+ ```
25+ New-AzMapsAccount -Name <String> -ResourceGroupName <String> -JsonFilePath <String> [-SubscriptionId <String>]
26+ [-DefaultProfile <PSObject>] [-Confirm] [-WhatIf] [<CommonParameters>]
27+ ```
28+
29+ ### CreateViaJsonString
30+ ```
31+ New-AzMapsAccount -Name <String> -ResourceGroupName <String> -JsonString <String> [-SubscriptionId <String>]
32+ [-DefaultProfile <PSObject>] [-Confirm] [-WhatIf] [<CommonParameters>]
2033```
2134
2235## DESCRIPTION
23- Create or update a Maps Account.
36+ create a Maps Account.
2437A Maps Account holds the keys which allow access to the Maps REST APIs.
2538
2639## EXAMPLES
@@ -62,7 +75,7 @@ This will disable Shared Keys authentication from any usage.
6275
6376` ` ` yaml
6477Type : System.Management.Automation.SwitchParameter
65- Parameter Sets : (All)
78+ Parameter Sets : CreateExpanded
6679Aliases :
6780
6881Required : False
@@ -72,12 +85,42 @@ Accept pipeline input: False
7285Accept wildcard characters : False
7386` ` `
7487
88+ ### -JsonFilePath
89+ Path of Json file supplied to the Create operation
90+
91+ ` ` ` yaml
92+ Type : System.String
93+ Parameter Sets : CreateViaJsonFilePath
94+ Aliases :
95+
96+ Required : True
97+ Position : Named
98+ Default value : None
99+ Accept pipeline input : False
100+ Accept wildcard characters : False
101+ ` ` `
102+
103+ ### -JsonString
104+ Json string supplied to the Create operation
105+
106+ ` ` ` yaml
107+ Type : System.String
108+ Parameter Sets : CreateViaJsonString
109+ Aliases :
110+
111+ Required : True
112+ Position : Named
113+ Default value : None
114+ Accept pipeline input : False
115+ Accept wildcard characters : False
116+ ` ` `
117+
75118### -Kind
76119Get or Set Kind property.
77120
78121` ` ` yaml
79- Type : Microsoft.Azure.PowerShell.Cmdlets.Maps.Support.Kind
80- Parameter Sets : (All)
122+ Type : System.String
123+ Parameter Sets : CreateExpanded
81124Aliases :
82125
83126Required : False
@@ -92,7 +135,7 @@ The geo-location where the resource lives
92135
93136` ` ` yaml
94137Type : System.String
95- Parameter Sets : (All)
138+ Parameter Sets : CreateExpanded
96139Aliases :
97140
98141Required : True
@@ -137,8 +180,8 @@ Accept wildcard characters: False
137180The name of the SKU, in standard format (such as S0).
138181
139182` ` ` yaml
140- Type : Microsoft.Azure.PowerShell.Cmdlets.Maps.Support.Name
141- Parameter Sets : (All)
183+ Type : System.String
184+ Parameter Sets : CreateExpanded
142185Aliases :
143186
144187Required : True
@@ -168,7 +211,7 @@ Resource tags.
168211
169212` ` ` yaml
170213Type : System.Collections.Hashtable
171- Parameter Sets : (All)
214+ Parameter Sets : CreateExpanded
172215Aliases :
173216
174217Required : False
@@ -216,7 +259,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
216259
217260## OUTPUTS
218261
219- ### Microsoft.Azure.PowerShell.Cmdlets.Maps.Models.Api20210201. IMapsAccount
262+ ### Microsoft.Azure.PowerShell.Cmdlets.Maps.Models.IMapsAccount
220263
221264## NOTES
222265
0 commit comments