我想使用Azure Powershell内联脚本将文件上传到API管理。我无法在Powershell脚本中找到一种方法来提及Artifact的文件路径。
期望使用Azure Powershell,该Azure Powershell使用AzureRM服务连接来访问API管理服务并按如下方式上传swagger文件
Import-AzureRmApiManagementApi -Context $ ApiMgmtContext -SpecificationFormat“ Swagger” -SpecificationPath“ My_Azuredevops_repo_path_to_file” -Path“ apis
答案 0 :(得分:0)
看起来像这里的路径可以通过利用these变量之一来提及。请检查链接并提及适当的变量。
AFAIK(如果它是下载源代码文件的代理上的本地路径),则可能需要具有变量$(Build.SourcesDirectory)/ $(Build.Repository.LocalPath)/ $(System.DefaultWorkingDirectory)>
希望这会有所帮助!