![JAR search and dependency download from the Maven repository](/logo.png)
com.tencentcloudapi.cdb.v20170320.models.DescribeParamTemplateInfoResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud API SDK for Java
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.cdb.v20170320.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class DescribeParamTemplateInfoResponse extends AbstractModel {
/**
* Parameter template ID.
*/
@SerializedName("TemplateId")
@Expose
private Long TemplateId;
/**
* Parameter template name.
*/
@SerializedName("Name")
@Expose
private String Name;
/**
* Database engine version specified in the parameter template
*/
@SerializedName("EngineVersion")
@Expose
private String EngineVersion;
/**
* Number of parameters in the parameter template
*/
@SerializedName("TotalCount")
@Expose
private Long TotalCount;
/**
* Parameter details
*/
@SerializedName("Items")
@Expose
private ParameterDetail [] Items;
/**
* Parameter template description
*/
@SerializedName("Description")
@Expose
private String Description;
/**
* Type of the parameter template. Valid values: `HIGH_STABILITY` (high-stability template), `HIGH_PERFORMANCE` (high-performance template).
*/
@SerializedName("TemplateType")
@Expose
private String TemplateType;
/**
* Parameter template engine. Valid values: `InnoDB`, `RocksDB`.
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("EngineType")
@Expose
private String EngineType;
/**
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
*/
@SerializedName("RequestId")
@Expose
private String RequestId;
/**
* Get Parameter template ID.
* @return TemplateId Parameter template ID.
*/
public Long getTemplateId() {
return this.TemplateId;
}
/**
* Set Parameter template ID.
* @param TemplateId Parameter template ID.
*/
public void setTemplateId(Long TemplateId) {
this.TemplateId = TemplateId;
}
/**
* Get Parameter template name.
* @return Name Parameter template name.
*/
public String getName() {
return this.Name;
}
/**
* Set Parameter template name.
* @param Name Parameter template name.
*/
public void setName(String Name) {
this.Name = Name;
}
/**
* Get Database engine version specified in the parameter template
* @return EngineVersion Database engine version specified in the parameter template
*/
public String getEngineVersion() {
return this.EngineVersion;
}
/**
* Set Database engine version specified in the parameter template
* @param EngineVersion Database engine version specified in the parameter template
*/
public void setEngineVersion(String EngineVersion) {
this.EngineVersion = EngineVersion;
}
/**
* Get Number of parameters in the parameter template
* @return TotalCount Number of parameters in the parameter template
*/
public Long getTotalCount() {
return this.TotalCount;
}
/**
* Set Number of parameters in the parameter template
* @param TotalCount Number of parameters in the parameter template
*/
public void setTotalCount(Long TotalCount) {
this.TotalCount = TotalCount;
}
/**
* Get Parameter details
* @return Items Parameter details
*/
public ParameterDetail [] getItems() {
return this.Items;
}
/**
* Set Parameter details
* @param Items Parameter details
*/
public void setItems(ParameterDetail [] Items) {
this.Items = Items;
}
/**
* Get Parameter template description
* @return Description Parameter template description
*/
public String getDescription() {
return this.Description;
}
/**
* Set Parameter template description
* @param Description Parameter template description
*/
public void setDescription(String Description) {
this.Description = Description;
}
/**
* Get Type of the parameter template. Valid values: `HIGH_STABILITY` (high-stability template), `HIGH_PERFORMANCE` (high-performance template).
* @return TemplateType Type of the parameter template. Valid values: `HIGH_STABILITY` (high-stability template), `HIGH_PERFORMANCE` (high-performance template).
*/
public String getTemplateType() {
return this.TemplateType;
}
/**
* Set Type of the parameter template. Valid values: `HIGH_STABILITY` (high-stability template), `HIGH_PERFORMANCE` (high-performance template).
* @param TemplateType Type of the parameter template. Valid values: `HIGH_STABILITY` (high-stability template), `HIGH_PERFORMANCE` (high-performance template).
*/
public void setTemplateType(String TemplateType) {
this.TemplateType = TemplateType;
}
/**
* Get Parameter template engine. Valid values: `InnoDB`, `RocksDB`.
Note: This field may return null, indicating that no valid values can be obtained.
* @return EngineType Parameter template engine. Valid values: `InnoDB`, `RocksDB`.
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String getEngineType() {
return this.EngineType;
}
/**
* Set Parameter template engine. Valid values: `InnoDB`, `RocksDB`.
Note: This field may return null, indicating that no valid values can be obtained.
* @param EngineType Parameter template engine. Valid values: `InnoDB`, `RocksDB`.
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setEngineType(String EngineType) {
this.EngineType = EngineType;
}
/**
* Get The unique request ID, which is returned for each request. RequestId is required for locating a problem.
* @return RequestId The unique request ID, which is returned for each request. RequestId is required for locating a problem.
*/
public String getRequestId() {
return this.RequestId;
}
/**
* Set The unique request ID, which is returned for each request. RequestId is required for locating a problem.
* @param RequestId The unique request ID, which is returned for each request. RequestId is required for locating a problem.
*/
public void setRequestId(String RequestId) {
this.RequestId = RequestId;
}
public DescribeParamTemplateInfoResponse() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public DescribeParamTemplateInfoResponse(DescribeParamTemplateInfoResponse source) {
if (source.TemplateId != null) {
this.TemplateId = new Long(source.TemplateId);
}
if (source.Name != null) {
this.Name = new String(source.Name);
}
if (source.EngineVersion != null) {
this.EngineVersion = new String(source.EngineVersion);
}
if (source.TotalCount != null) {
this.TotalCount = new Long(source.TotalCount);
}
if (source.Items != null) {
this.Items = new ParameterDetail[source.Items.length];
for (int i = 0; i < source.Items.length; i++) {
this.Items[i] = new ParameterDetail(source.Items[i]);
}
}
if (source.Description != null) {
this.Description = new String(source.Description);
}
if (source.TemplateType != null) {
this.TemplateType = new String(source.TemplateType);
}
if (source.EngineType != null) {
this.EngineType = new String(source.EngineType);
}
if (source.RequestId != null) {
this.RequestId = new String(source.RequestId);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "TemplateId", this.TemplateId);
this.setParamSimple(map, prefix + "Name", this.Name);
this.setParamSimple(map, prefix + "EngineVersion", this.EngineVersion);
this.setParamSimple(map, prefix + "TotalCount", this.TotalCount);
this.setParamArrayObj(map, prefix + "Items.", this.Items);
this.setParamSimple(map, prefix + "Description", this.Description);
this.setParamSimple(map, prefix + "TemplateType", this.TemplateType);
this.setParamSimple(map, prefix + "EngineType", this.EngineType);
this.setParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy