All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.ens20171110.models.DescribeKeyPairsResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;

import com.aliyun.tea.*;

public class DescribeKeyPairsResponseBody extends TeaModel {
    /**
     * 

Details about the key pairs.

*/ @NameInMap("KeyPairs") public DescribeKeyPairsResponseBodyKeyPairs keyPairs; /** *

The page number.

* * example: *

1

*/ @NameInMap("PageNumber") public Integer pageNumber; /** *

The number of entries returned per page.

* * example: *

10

*/ @NameInMap("PageSize") public Integer pageSize; /** *

The request ID.

* * example: *

37B52F33-6879-49D0-A39B-22966B01449E

*/ @NameInMap("RequestId") public String requestId; /** *

The total number of key pairs.

* * example: *

7

*/ @NameInMap("TotalCount") public Integer totalCount; public static DescribeKeyPairsResponseBody build(java.util.Map map) throws Exception { DescribeKeyPairsResponseBody self = new DescribeKeyPairsResponseBody(); return TeaModel.build(map, self); } public DescribeKeyPairsResponseBody setKeyPairs(DescribeKeyPairsResponseBodyKeyPairs keyPairs) { this.keyPairs = keyPairs; return this; } public DescribeKeyPairsResponseBodyKeyPairs getKeyPairs() { return this.keyPairs; } public DescribeKeyPairsResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public DescribeKeyPairsResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public DescribeKeyPairsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeKeyPairsResponseBody setTotalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public Integer getTotalCount() { return this.totalCount; } public static class DescribeKeyPairsResponseBodyKeyPairsKeyPair extends TeaModel { /** *

The time when the key pair was created. The time follows the ISO 8601 standard in the yyyy-MM-ddThh:mm:ssZ format. The time is displayed in UTC.

* * example: *

2020-04-26T15:38:27Z

*/ @NameInMap("CreationTime") public String creationTime; /** *

The fingerprint of the key pair.

* * example: *

fdaf8ff7a756ef843814fc****

*/ @NameInMap("KeyPairFingerPrint") public String keyPairFingerPrint; /** *

The ID of the key pair.

* * example: *

ssh-50cynkq42sgj4ej1tn78t4***

*/ @NameInMap("KeyPairId") public String keyPairId; /** *

The name of the SSH key pair.

* * example: *

TestKeyPairName

*/ @NameInMap("KeyPairName") public String keyPairName; public static DescribeKeyPairsResponseBodyKeyPairsKeyPair build(java.util.Map map) throws Exception { DescribeKeyPairsResponseBodyKeyPairsKeyPair self = new DescribeKeyPairsResponseBodyKeyPairsKeyPair(); return TeaModel.build(map, self); } public DescribeKeyPairsResponseBodyKeyPairsKeyPair setCreationTime(String creationTime) { this.creationTime = creationTime; return this; } public String getCreationTime() { return this.creationTime; } public DescribeKeyPairsResponseBodyKeyPairsKeyPair setKeyPairFingerPrint(String keyPairFingerPrint) { this.keyPairFingerPrint = keyPairFingerPrint; return this; } public String getKeyPairFingerPrint() { return this.keyPairFingerPrint; } public DescribeKeyPairsResponseBodyKeyPairsKeyPair setKeyPairId(String keyPairId) { this.keyPairId = keyPairId; return this; } public String getKeyPairId() { return this.keyPairId; } public DescribeKeyPairsResponseBodyKeyPairsKeyPair setKeyPairName(String keyPairName) { this.keyPairName = keyPairName; return this; } public String getKeyPairName() { return this.keyPairName; } } public static class DescribeKeyPairsResponseBodyKeyPairs extends TeaModel { @NameInMap("KeyPair") public java.util.List keyPair; public static DescribeKeyPairsResponseBodyKeyPairs build(java.util.Map map) throws Exception { DescribeKeyPairsResponseBodyKeyPairs self = new DescribeKeyPairsResponseBodyKeyPairs(); return TeaModel.build(map, self); } public DescribeKeyPairsResponseBodyKeyPairs setKeyPair(java.util.List keyPair) { this.keyPair = keyPair; return this; } public java.util.List getKeyPair() { return this.keyPair; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy