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

com.aliyun.sdk.service.polardb20170801.models.CreateActivationCodeResponseBody Maven / Gradle / Ivy

There is a newer version: 4.0.28
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.polardb20170801.models;

import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * 
 * {@link CreateActivationCodeResponseBody} extends {@link TeaModel}
 *
 * 

CreateActivationCodeResponseBody

*/ public class CreateActivationCodeResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("ActivateAt") private String activateAt; @com.aliyun.core.annotation.NameInMap("CertContentB64") private String certContentB64; @com.aliyun.core.annotation.NameInMap("Description") private String description; @com.aliyun.core.annotation.NameInMap("ExpireAt") private String expireAt; @com.aliyun.core.annotation.NameInMap("GmtCreated") private String gmtCreated; @com.aliyun.core.annotation.NameInMap("GmtModified") private String gmtModified; @com.aliyun.core.annotation.NameInMap("Id") private Integer id; @com.aliyun.core.annotation.NameInMap("MacAddress") private String macAddress; @com.aliyun.core.annotation.NameInMap("Name") private String name; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("SystemIdentifier") private String systemIdentifier; private CreateActivationCodeResponseBody(Builder builder) { this.activateAt = builder.activateAt; this.certContentB64 = builder.certContentB64; this.description = builder.description; this.expireAt = builder.expireAt; this.gmtCreated = builder.gmtCreated; this.gmtModified = builder.gmtModified; this.id = builder.id; this.macAddress = builder.macAddress; this.name = builder.name; this.requestId = builder.requestId; this.systemIdentifier = builder.systemIdentifier; } public static Builder builder() { return new Builder(); } public static CreateActivationCodeResponseBody create() { return builder().build(); } /** * @return activateAt */ public String getActivateAt() { return this.activateAt; } /** * @return certContentB64 */ public String getCertContentB64() { return this.certContentB64; } /** * @return description */ public String getDescription() { return this.description; } /** * @return expireAt */ public String getExpireAt() { return this.expireAt; } /** * @return gmtCreated */ public String getGmtCreated() { return this.gmtCreated; } /** * @return gmtModified */ public String getGmtModified() { return this.gmtModified; } /** * @return id */ public Integer getId() { return this.id; } /** * @return macAddress */ public String getMacAddress() { return this.macAddress; } /** * @return name */ public String getName() { return this.name; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return systemIdentifier */ public String getSystemIdentifier() { return this.systemIdentifier; } public static final class Builder { private String activateAt; private String certContentB64; private String description; private String expireAt; private String gmtCreated; private String gmtModified; private Integer id; private String macAddress; private String name; private String requestId; private String systemIdentifier; /** *

The time when the activation code takes effect.

* * example: *

2024-10-16 16:46:20

*/ public Builder activateAt(String activateAt) { this.activateAt = activateAt; return this; } /** *

The activation code in the base64 format. The activation code is decoded and stored into a file named license.lic. PolarDB can access and read the license.lic file upon startup to validate the license or perform related operations.

* * example: *

AAEAA******AAA=

*/ public Builder certContentB64(String certContentB64) { this.certContentB64 = certContentB64; return this; } /** *

The description of the activation code.

* * example: *

testCode

*/ public Builder description(String description) { this.description = description; return this; } /** *

The time when the activation code expires.

* * example: *

2054-10-09 16:46:20

*/ public Builder expireAt(String expireAt) { this.expireAt = expireAt; return this; } /** *

The time when the activation code was created.

* * example: *

2024-10-16 16:46:20

*/ public Builder gmtCreated(String gmtCreated) { this.gmtCreated = gmtCreated; return this; } /** *

The time when the activation code was last updated.

* * example: *

2024-10-16 16:46:20

*/ public Builder gmtModified(String gmtModified) { this.gmtModified = gmtModified; return this; } /** *

The activation code ID.

* * example: *

123

*/ public Builder id(Integer id) { this.id = id; return this; } /** *

The MAC address.

* * example: *

12:34:56:78:98:00

*/ public Builder macAddress(String macAddress) { this.macAddress = macAddress; return this; } /** *

The name of the activation code.

* * example: *

testName

*/ public Builder name(String name) { this.name = name; return this; } /** *

The request ID.

* * example: *

4CE6DF97-AEA4-484F-906F-C407EE******

*/ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** *

The system identifier of the database.

* * example: *

1234567890123456

*/ public Builder systemIdentifier(String systemIdentifier) { this.systemIdentifier = systemIdentifier; return this; } public CreateActivationCodeResponseBody build() { return new CreateActivationCodeResponseBody(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy