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
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