Search code examples
azure-service-fabric

Azure Service Fabric REST API - how to copy application package to image store?


I am looking for Service Fabric REST API method for copying an application package to the image store of a service fabric cluster. That is, method similar to Power Shell cmdlet Copy-ServiceFabricApplicationPackage and Service Fabric Client .NET API method FabricClient.ApplicationManagementClient.CopyApplicationPackage.

I can't find such a method from Service Fabric Client REST API Reference.

How similar operation should be done using Service Fabric REST API methods?


Solution

  • AFAIK both CopyApplicationPackage and Copy-ServiceFabricApplicationPackage use ImageStore API under the hood, so I think ImageStore REST API is what you are looking for.