com.aliyun.cs20151215.models.DeployPolicyInstanceResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cs20151215 Show documentation
Show all versions of cs20151215 Show documentation
Alibaba Cloud CS (20151215) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cs20151215.models;
import com.aliyun.tea.*;
public class DeployPolicyInstanceResponseBody extends TeaModel {
/**
* A list of policy instances.
*/
@NameInMap("instances")
public java.util.List instances;
public static DeployPolicyInstanceResponseBody build(java.util.Map map) throws Exception {
DeployPolicyInstanceResponseBody self = new DeployPolicyInstanceResponseBody();
return TeaModel.build(map, self);
}
public DeployPolicyInstanceResponseBody setInstances(java.util.List instances) {
this.instances = instances;
return this;
}
public java.util.List getInstances() {
return this.instances;
}
}