com.aliyun.cs20151215.models.DescribePolicyInstancesRequest 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 DescribePolicyInstancesRequest extends TeaModel {
/**
* The name of the policy instance that you want to query.
*
* example:
* allowed-repos-cz4s2
*/
@NameInMap("instance_name")
public String instanceName;
/**
* The name of the policy that you want to query.
*
* example:
* ACKPSPCapabilities
*/
@NameInMap("policy_name")
public String policyName;
public static DescribePolicyInstancesRequest build(java.util.Map map) throws Exception {
DescribePolicyInstancesRequest self = new DescribePolicyInstancesRequest();
return TeaModel.build(map, self);
}
public DescribePolicyInstancesRequest setInstanceName(String instanceName) {
this.instanceName = instanceName;
return this;
}
public String getInstanceName() {
return this.instanceName;
}
public DescribePolicyInstancesRequest setPolicyName(String policyName) {
this.policyName = policyName;
return this;
}
public String getPolicyName() {
return this.policyName;
}
}