com.aliyun.cs20151215.models.ModifyPolicyInstanceResponseBody 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 ModifyPolicyInstanceResponseBody extends TeaModel {
/**
* The list of policy instances that are updated.
*/
@NameInMap("instances")
public java.util.List instances;
public static ModifyPolicyInstanceResponseBody build(java.util.Map map) throws Exception {
ModifyPolicyInstanceResponseBody self = new ModifyPolicyInstanceResponseBody();
return TeaModel.build(map, self);
}
public ModifyPolicyInstanceResponseBody setInstances(java.util.List instances) {
this.instances = instances;
return this;
}
public java.util.List getInstances() {
return this.instances;
}
}