You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upgrade to 3.0.0.0-preview package - Support for ARM VNET + ILB + Soap
- Upgrade ApiMAnagement nuget to 3.0.0-preview
- Added test for WSDL Importing Exporting
- Added test for Swagger Importing Exporting
- Added test for ARM VNET both with External and Internal VIP
- Fixed powershell Issue on ApiManagement
#2622 - Retrieve State
from Server
- Fixed Powershell Issue on ApiManagement
#2606 - Use Patch
- Regenerated all Session Records
- Deprecated cmdlet ManageVirtualNetwork
- Refactored RP tests for proper cleanup in Finally block
Copy file name to clipboardExpand all lines: src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands.ApiManagement.ServiceManagement.csproj
Copy file name to clipboardExpand all lines: src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/ImportAzureApiManagementApi.cs
+17-3Lines changed: 17 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ public class ImportAzureApiManagementApi : AzureApiManagementCmdletBase
41
41
[Parameter(
42
42
ValueFromPipelineByPropertyName=true,
43
43
Mandatory=true,
44
-
HelpMessage="Specification format (Wadl, Swagger). This parameter is required.")]
44
+
HelpMessage="Specification format (Wadl, Swagger, Wsdl). This parameter is required.")]
@@ -67,15 +67,29 @@ public class ImportAzureApiManagementApi : AzureApiManagementCmdletBase
67
67
HelpMessage="Web API Path. Last part of the API's public URL. This URL will be used by API consumers for sending requests to the web service. Must be 1 to 400 characters long. This parameter is optional. Default value is $null.")]
68
68
publicStringPath{get;set;}
69
69
70
+
[Parameter(
71
+
ValueFromPipelineByPropertyName=true,
72
+
Mandatory=false,
73
+
HelpMessage="Local name of WSDL Service to be imported. Must be 1 to 400 characters long."+
74
+
" This parameter is optional and only required for importing Wsdl . Default value is $null.")]
75
+
publicStringWsdlServiceName{get;set;}
76
+
77
+
[Parameter(
78
+
ValueFromPipelineByPropertyName=true,
79
+
Mandatory=false,
80
+
HelpMessage="Local name of WSDL Endpoint (port) to be imported."+
81
+
" Must be 1 to 400 characters long. This parameter is optional and only required for importing Wsdl. Default value is $null.")]
0 commit comments