com.tencentcloudapi.teo.v20220901.models.Https 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.teo.v20220901.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 Https extends AbstractModel {
/**
* Whether to enable HTTP2. Values:
`on`: Enable
`off`: Disable
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("Http2")
@Expose
private String Http2;
/**
* Whether to enable OCSP. Values:
`on`: Enable
`off`: Disable
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("OcspStapling")
@Expose
private String OcspStapling;
/**
* TLS version. Valid values:
`TLSv1`: TLSv1 version;
`TLSV1.1`: TLSv1.1 version;
`TLSV1.2`: TLSv1.2 version;
`TLSv1.3`: TLSv1.3 version. Only consecutive versions can be enabled at the same time.
Note: This field may return `null`, indicating that no valid values can be obtained.
*/
@SerializedName("TlsVersion")
@Expose
private String [] TlsVersion;
/**
* HSTS Configuration
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("Hsts")
@Expose
private Hsts Hsts;
/**
* The certificate configuration.
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("CertInfo")
@Expose
private ServerCertInfo [] CertInfo;
/**
* Whether the certificate is managed by EdgeOne. Values:
`apply`: Managed by EdgeOne.
`none`: Not managed by EdgeOne. If it is left empty, the default value `none` is used.
Note: This field may return `null`, indicating that no valid value can be obtained.
*/
@SerializedName("ApplyType")
@Expose
private String ApplyType;
/**
* The cipher suite, with values:
loose-v2023: Provides high compatibility with general security, and supports TLS 1.0-1.3 cipher suites;
general-v2023: Provides relatively high compatibility with moderate security, and supports TLS 1.2-1.3 cipher suites;
strict-v2023: Provides high security, disables all cipher suites with security risks, and supports TLS 1.2-1.3 cipher suites.
Note: This field may return null, which indicates a failure to obtain a valid value.
*/
@SerializedName("CipherSuite")
@Expose
private String CipherSuite;
/**
* Get Whether to enable HTTP2. Values:
`on`: Enable
`off`: Disable
Note: This field may return null, indicating that no valid values can be obtained.
* @return Http2 Whether to enable HTTP2. Values:
`on`: Enable
`off`: Disable
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String getHttp2() {
return this.Http2;
}
/**
* Set Whether to enable HTTP2. Values:
`on`: Enable
`off`: Disable
Note: This field may return null, indicating that no valid values can be obtained.
* @param Http2 Whether to enable HTTP2. Values:
`on`: Enable
`off`: Disable
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setHttp2(String Http2) {
this.Http2 = Http2;
}
/**
* Get Whether to enable OCSP. Values:
`on`: Enable
`off`: Disable
Note: This field may return null, indicating that no valid values can be obtained.
* @return OcspStapling Whether to enable OCSP. Values:
`on`: Enable
`off`: Disable
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String getOcspStapling() {
return this.OcspStapling;
}
/**
* Set Whether to enable OCSP. Values:
`on`: Enable
`off`: Disable
Note: This field may return null, indicating that no valid values can be obtained.
* @param OcspStapling Whether to enable OCSP. Values:
`on`: Enable
`off`: Disable
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setOcspStapling(String OcspStapling) {
this.OcspStapling = OcspStapling;
}
/**
* Get TLS version. Valid values:
`TLSv1`: TLSv1 version;
`TLSV1.1`: TLSv1.1 version;
`TLSV1.2`: TLSv1.2 version;
`TLSv1.3`: TLSv1.3 version. Only consecutive versions can be enabled at the same time.
Note: This field may return `null`, indicating that no valid values can be obtained.
* @return TlsVersion TLS version. Valid values:
`TLSv1`: TLSv1 version;
`TLSV1.1`: TLSv1.1 version;
`TLSV1.2`: TLSv1.2 version;
`TLSv1.3`: TLSv1.3 version. Only consecutive versions can be enabled at the same time.
Note: This field may return `null`, indicating that no valid values can be obtained.
*/
public String [] getTlsVersion() {
return this.TlsVersion;
}
/**
* Set TLS version. Valid values:
`TLSv1`: TLSv1 version;
`TLSV1.1`: TLSv1.1 version;
`TLSV1.2`: TLSv1.2 version;
`TLSv1.3`: TLSv1.3 version. Only consecutive versions can be enabled at the same time.
Note: This field may return `null`, indicating that no valid values can be obtained.
* @param TlsVersion TLS version. Valid values:
`TLSv1`: TLSv1 version;
`TLSV1.1`: TLSv1.1 version;
`TLSV1.2`: TLSv1.2 version;
`TLSv1.3`: TLSv1.3 version. Only consecutive versions can be enabled at the same time.
Note: This field may return `null`, indicating that no valid values can be obtained.
*/
public void setTlsVersion(String [] TlsVersion) {
this.TlsVersion = TlsVersion;
}
/**
* Get HSTS Configuration
Note: This field may return null, indicating that no valid values can be obtained.
* @return Hsts HSTS Configuration
Note: This field may return null, indicating that no valid values can be obtained.
*/
public Hsts getHsts() {
return this.Hsts;
}
/**
* Set HSTS Configuration
Note: This field may return null, indicating that no valid values can be obtained.
* @param Hsts HSTS Configuration
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setHsts(Hsts Hsts) {
this.Hsts = Hsts;
}
/**
* Get The certificate configuration.
Note: This field may return null, indicating that no valid values can be obtained.
* @return CertInfo The certificate configuration.
Note: This field may return null, indicating that no valid values can be obtained.
*/
public ServerCertInfo [] getCertInfo() {
return this.CertInfo;
}
/**
* Set The certificate configuration.
Note: This field may return null, indicating that no valid values can be obtained.
* @param CertInfo The certificate configuration.
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setCertInfo(ServerCertInfo [] CertInfo) {
this.CertInfo = CertInfo;
}
/**
* Get Whether the certificate is managed by EdgeOne. Values:
`apply`: Managed by EdgeOne.
`none`: Not managed by EdgeOne. If it is left empty, the default value `none` is used.
Note: This field may return `null`, indicating that no valid value can be obtained.
* @return ApplyType Whether the certificate is managed by EdgeOne. Values:
`apply`: Managed by EdgeOne.
`none`: Not managed by EdgeOne. If it is left empty, the default value `none` is used.
Note: This field may return `null`, indicating that no valid value can be obtained.
*/
public String getApplyType() {
return this.ApplyType;
}
/**
* Set Whether the certificate is managed by EdgeOne. Values:
`apply`: Managed by EdgeOne.
`none`: Not managed by EdgeOne. If it is left empty, the default value `none` is used.
Note: This field may return `null`, indicating that no valid value can be obtained.
* @param ApplyType Whether the certificate is managed by EdgeOne. Values:
`apply`: Managed by EdgeOne.
`none`: Not managed by EdgeOne. If it is left empty, the default value `none` is used.
Note: This field may return `null`, indicating that no valid value can be obtained.
*/
public void setApplyType(String ApplyType) {
this.ApplyType = ApplyType;
}
/**
* Get The cipher suite, with values:
loose-v2023: Provides high compatibility with general security, and supports TLS 1.0-1.3 cipher suites;
general-v2023: Provides relatively high compatibility with moderate security, and supports TLS 1.2-1.3 cipher suites;
strict-v2023: Provides high security, disables all cipher suites with security risks, and supports TLS 1.2-1.3 cipher suites.
Note: This field may return null, which indicates a failure to obtain a valid value.
* @return CipherSuite The cipher suite, with values:
loose-v2023: Provides high compatibility with general security, and supports TLS 1.0-1.3 cipher suites;
general-v2023: Provides relatively high compatibility with moderate security, and supports TLS 1.2-1.3 cipher suites;
strict-v2023: Provides high security, disables all cipher suites with security risks, and supports TLS 1.2-1.3 cipher suites.
Note: This field may return null, which indicates a failure to obtain a valid value.
*/
public String getCipherSuite() {
return this.CipherSuite;
}
/**
* Set The cipher suite, with values:
loose-v2023: Provides high compatibility with general security, and supports TLS 1.0-1.3 cipher suites;
general-v2023: Provides relatively high compatibility with moderate security, and supports TLS 1.2-1.3 cipher suites;
strict-v2023: Provides high security, disables all cipher suites with security risks, and supports TLS 1.2-1.3 cipher suites.
Note: This field may return null, which indicates a failure to obtain a valid value.
* @param CipherSuite The cipher suite, with values:
loose-v2023: Provides high compatibility with general security, and supports TLS 1.0-1.3 cipher suites;
general-v2023: Provides relatively high compatibility with moderate security, and supports TLS 1.2-1.3 cipher suites;
strict-v2023: Provides high security, disables all cipher suites with security risks, and supports TLS 1.2-1.3 cipher suites.
Note: This field may return null, which indicates a failure to obtain a valid value.
*/
public void setCipherSuite(String CipherSuite) {
this.CipherSuite = CipherSuite;
}
public Https() {
}
/**
* 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 Https(Https source) {
if (source.Http2 != null) {
this.Http2 = new String(source.Http2);
}
if (source.OcspStapling != null) {
this.OcspStapling = new String(source.OcspStapling);
}
if (source.TlsVersion != null) {
this.TlsVersion = new String[source.TlsVersion.length];
for (int i = 0; i < source.TlsVersion.length; i++) {
this.TlsVersion[i] = new String(source.TlsVersion[i]);
}
}
if (source.Hsts != null) {
this.Hsts = new Hsts(source.Hsts);
}
if (source.CertInfo != null) {
this.CertInfo = new ServerCertInfo[source.CertInfo.length];
for (int i = 0; i < source.CertInfo.length; i++) {
this.CertInfo[i] = new ServerCertInfo(source.CertInfo[i]);
}
}
if (source.ApplyType != null) {
this.ApplyType = new String(source.ApplyType);
}
if (source.CipherSuite != null) {
this.CipherSuite = new String(source.CipherSuite);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Http2", this.Http2);
this.setParamSimple(map, prefix + "OcspStapling", this.OcspStapling);
this.setParamArraySimple(map, prefix + "TlsVersion.", this.TlsVersion);
this.setParamObj(map, prefix + "Hsts.", this.Hsts);
this.setParamArrayObj(map, prefix + "CertInfo.", this.CertInfo);
this.setParamSimple(map, prefix + "ApplyType", this.ApplyType);
this.setParamSimple(map, prefix + "CipherSuite", this.CipherSuite);
}
}