取消配置应用程序版本

取消配置应用程序版本

本文介绍了Azure Service Fabric:取消配置应用程序版本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在寻找一种通过SDK清除Service Fabric中旧应用程序版本的方法.似乎没有办法使用FabricClientApplicationManager取消提供版本(类似于Service Fabric资源管理器的应用程序类型"视图中可用的操作)?

I'm looking for a way of cleaning old application versions in Service Fabric via the SDK. It seems there is no way to unprovision a version by using FabricClient's ApplicationManager (similar to the action available in the Service Fabric Explorer, Application Type view) ?

我可以通过以下方式获取应用程序类型的所有版本的列表:fabricClient.QueryManager.GetApplicationTypeListAsync()

I can get a list of all the versions for an application type by using: fabricClient.QueryManager.GetApplicationTypeListAsync()

推荐答案

:

public System.Threading.Tasks.Task UnprovisionApplicationAsync (string applicationTypeName, string applicationTypeVersion);

这篇关于Azure Service Fabric:取消配置应用程序版本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 10:29