具体来说,在azurejavasdk中provisionstate只是一个字符串。
package com.microsoft.azure.management.resources
public interface Deployment extends
Indexable,
Refreshable<Deployment>,
Updatable<Deployment.Update>,
HasInner<DeploymentExtendedInner>,
HasManager<ResourceManager>,
HasName {
/**
* @return the state of the provisioning process of the resources being deployed
*/
String provisioningState();
}
我怀疑这是因为不同的服务有不同的部署实现和不同的
ProvisioningState
班级。
供应状态
类来确定Azure模板部署的有效状态?