![JAR search and dependency download from the Maven repository](/logo.png)
com.tencentcloudapi.sqlserver.v20180328.models.ZoneInfo 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.sqlserver.v20180328.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 ZoneInfo extends AbstractModel {
/**
* AZ ID in the format of ap-guangzhou-1 (i.e., Guangzhou Zone 1)
*/
@SerializedName("Zone")
@Expose
private String Zone;
/**
* AZ name
*/
@SerializedName("ZoneName")
@Expose
private String ZoneName;
/**
* Numeric ID of AZ
*/
@SerializedName("ZoneId")
@Expose
private Long ZoneId;
/**
* ID of specification purchasable in this AZ, which, together with the returned value of the `DescribeProductConfig` API, can be used to find out the specifications currently purchasable in the AZ
*/
@SerializedName("SpecId")
@Expose
private Long SpecId;
/**
* Information of database versions purchasable under the current AZ and specification. Valid values: 2008R2 (SQL Server 2008 Enterprise), 2012SP3 (SQL Server 2012 Enterprise), 2016SP1 (SQL Server 2016 Enterprise), 201602 (SQL Server 2016 Standard), 2017 (SQL Server 2017 Enterprise)
*/
@SerializedName("Version")
@Expose
private String Version;
/**
* Get AZ ID in the format of ap-guangzhou-1 (i.e., Guangzhou Zone 1)
* @return Zone AZ ID in the format of ap-guangzhou-1 (i.e., Guangzhou Zone 1)
*/
public String getZone() {
return this.Zone;
}
/**
* Set AZ ID in the format of ap-guangzhou-1 (i.e., Guangzhou Zone 1)
* @param Zone AZ ID in the format of ap-guangzhou-1 (i.e., Guangzhou Zone 1)
*/
public void setZone(String Zone) {
this.Zone = Zone;
}
/**
* Get AZ name
* @return ZoneName AZ name
*/
public String getZoneName() {
return this.ZoneName;
}
/**
* Set AZ name
* @param ZoneName AZ name
*/
public void setZoneName(String ZoneName) {
this.ZoneName = ZoneName;
}
/**
* Get Numeric ID of AZ
* @return ZoneId Numeric ID of AZ
*/
public Long getZoneId() {
return this.ZoneId;
}
/**
* Set Numeric ID of AZ
* @param ZoneId Numeric ID of AZ
*/
public void setZoneId(Long ZoneId) {
this.ZoneId = ZoneId;
}
/**
* Get ID of specification purchasable in this AZ, which, together with the returned value of the `DescribeProductConfig` API, can be used to find out the specifications currently purchasable in the AZ
* @return SpecId ID of specification purchasable in this AZ, which, together with the returned value of the `DescribeProductConfig` API, can be used to find out the specifications currently purchasable in the AZ
*/
public Long getSpecId() {
return this.SpecId;
}
/**
* Set ID of specification purchasable in this AZ, which, together with the returned value of the `DescribeProductConfig` API, can be used to find out the specifications currently purchasable in the AZ
* @param SpecId ID of specification purchasable in this AZ, which, together with the returned value of the `DescribeProductConfig` API, can be used to find out the specifications currently purchasable in the AZ
*/
public void setSpecId(Long SpecId) {
this.SpecId = SpecId;
}
/**
* Get Information of database versions purchasable under the current AZ and specification. Valid values: 2008R2 (SQL Server 2008 Enterprise), 2012SP3 (SQL Server 2012 Enterprise), 2016SP1 (SQL Server 2016 Enterprise), 201602 (SQL Server 2016 Standard), 2017 (SQL Server 2017 Enterprise)
* @return Version Information of database versions purchasable under the current AZ and specification. Valid values: 2008R2 (SQL Server 2008 Enterprise), 2012SP3 (SQL Server 2012 Enterprise), 2016SP1 (SQL Server 2016 Enterprise), 201602 (SQL Server 2016 Standard), 2017 (SQL Server 2017 Enterprise)
*/
public String getVersion() {
return this.Version;
}
/**
* Set Information of database versions purchasable under the current AZ and specification. Valid values: 2008R2 (SQL Server 2008 Enterprise), 2012SP3 (SQL Server 2012 Enterprise), 2016SP1 (SQL Server 2016 Enterprise), 201602 (SQL Server 2016 Standard), 2017 (SQL Server 2017 Enterprise)
* @param Version Information of database versions purchasable under the current AZ and specification. Valid values: 2008R2 (SQL Server 2008 Enterprise), 2012SP3 (SQL Server 2012 Enterprise), 2016SP1 (SQL Server 2016 Enterprise), 201602 (SQL Server 2016 Standard), 2017 (SQL Server 2017 Enterprise)
*/
public void setVersion(String Version) {
this.Version = Version;
}
public ZoneInfo() {
}
/**
* 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 ZoneInfo(ZoneInfo source) {
if (source.Zone != null) {
this.Zone = new String(source.Zone);
}
if (source.ZoneName != null) {
this.ZoneName = new String(source.ZoneName);
}
if (source.ZoneId != null) {
this.ZoneId = new Long(source.ZoneId);
}
if (source.SpecId != null) {
this.SpecId = new Long(source.SpecId);
}
if (source.Version != null) {
this.Version = new String(source.Version);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Zone", this.Zone);
this.setParamSimple(map, prefix + "ZoneName", this.ZoneName);
this.setParamSimple(map, prefix + "ZoneId", this.ZoneId);
this.setParamSimple(map, prefix + "SpecId", this.SpecId);
this.setParamSimple(map, prefix + "Version", this.Version);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy