com.aliyun.cas20200630.models.DescribeClientCertificateStatusRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cas20200630 Show documentation
Show all versions of cas20200630 Show documentation
Alibaba Cloud SSL Certificates Service (20200630) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cas20200630.models;
import com.aliyun.tea.*;
public class DescribeClientCertificateStatusRequest extends TeaModel {
/**
* The unique identifiers of the client certificates or server certificates that you want to query. Separate multiple unique identifiers with commas (,).
*
* > You can call the [ListClientCertificate](~~330884~~) operation to query the unique identifiers of all client certificates and server certificates.
*/
@NameInMap("Identifier")
public String identifier;
public static DescribeClientCertificateStatusRequest build(java.util.Map map) throws Exception {
DescribeClientCertificateStatusRequest self = new DescribeClientCertificateStatusRequest();
return TeaModel.build(map, self);
}
public DescribeClientCertificateStatusRequest setIdentifier(String identifier) {
this.identifier = identifier;
return this;
}
public String getIdentifier() {
return this.identifier;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy