com.tencentcloudapi.apigateway.v20180808.models.DesApisStatus Maven / Gradle / Ivy
/*
* 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.apigateway.v20180808.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class DesApisStatus extends AbstractModel{
/**
* 服务唯一ID。
*/
@SerializedName("ServiceId")
@Expose
private String ServiceId;
/**
* API唯一ID。
*/
@SerializedName("ApiId")
@Expose
private String ApiId;
/**
* 用户自定义的 API 接口描述。
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("ApiDesc")
@Expose
private String ApiDesc;
/**
* 创建时间。按照 ISO8601 标准表示,并且使用 UTC 时间。格式为:YYYY-MM-DDThh:mm:ssZ。
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("CreatedTime")
@Expose
private String CreatedTime;
/**
* 最后修改时间。按照 ISO8601 标准表示,并且使用 UTC 时间。格式为:YYYY-MM-DDThh:mm:ssZ。
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("ModifiedTime")
@Expose
private String ModifiedTime;
/**
* API 接口的名称。
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("ApiName")
@Expose
private String ApiName;
/**
* VPCID。
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("VpcId")
@Expose
private Long VpcId;
/**
* VPC唯一ID。
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("UniqVpcId")
@Expose
private String UniqVpcId;
/**
* API类型。取值为NORMAL(普通API)和TSF(微服务API)。
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("ApiType")
@Expose
private String ApiType;
/**
* API协议。
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("Protocol")
@Expose
private String Protocol;
/**
* 是否买后调试。(云市场预留字段)
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("IsDebugAfterCharge")
@Expose
private Boolean IsDebugAfterCharge;
/**
* API 鉴权类型。取值为SECRET(密钥对鉴权)、NONE(免鉴权)、OAUTH、EIAM。
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("AuthType")
@Expose
private String AuthType;
/**
* OAUTH API的类型。当AuthType 为 OAUTH时该字段有效, 取值为NORMAL(业务API)和 OAUTH(授权API)。
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("ApiBusinessType")
@Expose
private String ApiBusinessType;
/**
* 关联的授权API 唯一 ID,当AuthType为OAUTH且ApiBusinessType为NORMAL时生效。标示业务API绑定的oauth2.0授权API唯一ID。
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("AuthRelationApiId")
@Expose
private String AuthRelationApiId;
/**
* OAUTH 配置信息。当AuthType是OAUTH时生效。
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("OauthConfig")
@Expose
private OauthConfig OauthConfig;
/**
* 授权API关联的业务API列表。
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("RelationBuniessApiIds")
@Expose
private String [] RelationBuniessApiIds;
/**
* API关联的标签信息。
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("Tags")
@Expose
private String [] Tags;
/**
* API 的路径,如 /path。
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("Path")
@Expose
private String Path;
/**
* API 的请求方法,如 GET。
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("Method")
@Expose
private String Method;
/**
* Get 服务唯一ID。
* @return ServiceId 服务唯一ID。
*/
public String getServiceId() {
return this.ServiceId;
}
/**
* Set 服务唯一ID。
* @param ServiceId 服务唯一ID。
*/
public void setServiceId(String ServiceId) {
this.ServiceId = ServiceId;
}
/**
* Get API唯一ID。
* @return ApiId API唯一ID。
*/
public String getApiId() {
return this.ApiId;
}
/**
* Set API唯一ID。
* @param ApiId API唯一ID。
*/
public void setApiId(String ApiId) {
this.ApiId = ApiId;
}
/**
* Get 用户自定义的 API 接口描述。
注意:此字段可能返回 null,表示取不到有效值。
* @return ApiDesc 用户自定义的 API 接口描述。
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getApiDesc() {
return this.ApiDesc;
}
/**
* Set 用户自定义的 API 接口描述。
注意:此字段可能返回 null,表示取不到有效值。
* @param ApiDesc 用户自定义的 API 接口描述。
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setApiDesc(String ApiDesc) {
this.ApiDesc = ApiDesc;
}
/**
* Get 创建时间。按照 ISO8601 标准表示,并且使用 UTC 时间。格式为:YYYY-MM-DDThh:mm:ssZ。
注意:此字段可能返回 null,表示取不到有效值。
* @return CreatedTime 创建时间。按照 ISO8601 标准表示,并且使用 UTC 时间。格式为:YYYY-MM-DDThh:mm:ssZ。
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getCreatedTime() {
return this.CreatedTime;
}
/**
* Set 创建时间。按照 ISO8601 标准表示,并且使用 UTC 时间。格式为:YYYY-MM-DDThh:mm:ssZ。
注意:此字段可能返回 null,表示取不到有效值。
* @param CreatedTime 创建时间。按照 ISO8601 标准表示,并且使用 UTC 时间。格式为:YYYY-MM-DDThh:mm:ssZ。
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setCreatedTime(String CreatedTime) {
this.CreatedTime = CreatedTime;
}
/**
* Get 最后修改时间。按照 ISO8601 标准表示,并且使用 UTC 时间。格式为:YYYY-MM-DDThh:mm:ssZ。
注意:此字段可能返回 null,表示取不到有效值。
* @return ModifiedTime 最后修改时间。按照 ISO8601 标准表示,并且使用 UTC 时间。格式为:YYYY-MM-DDThh:mm:ssZ。
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getModifiedTime() {
return this.ModifiedTime;
}
/**
* Set 最后修改时间。按照 ISO8601 标准表示,并且使用 UTC 时间。格式为:YYYY-MM-DDThh:mm:ssZ。
注意:此字段可能返回 null,表示取不到有效值。
* @param ModifiedTime 最后修改时间。按照 ISO8601 标准表示,并且使用 UTC 时间。格式为:YYYY-MM-DDThh:mm:ssZ。
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setModifiedTime(String ModifiedTime) {
this.ModifiedTime = ModifiedTime;
}
/**
* Get API 接口的名称。
注意:此字段可能返回 null,表示取不到有效值。
* @return ApiName API 接口的名称。
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getApiName() {
return this.ApiName;
}
/**
* Set API 接口的名称。
注意:此字段可能返回 null,表示取不到有效值。
* @param ApiName API 接口的名称。
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setApiName(String ApiName) {
this.ApiName = ApiName;
}
/**
* Get VPCID。
注意:此字段可能返回 null,表示取不到有效值。
* @return VpcId VPCID。
注意:此字段可能返回 null,表示取不到有效值。
*/
public Long getVpcId() {
return this.VpcId;
}
/**
* Set VPCID。
注意:此字段可能返回 null,表示取不到有效值。
* @param VpcId VPCID。
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setVpcId(Long VpcId) {
this.VpcId = VpcId;
}
/**
* Get VPC唯一ID。
注意:此字段可能返回 null,表示取不到有效值。
* @return UniqVpcId VPC唯一ID。
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getUniqVpcId() {
return this.UniqVpcId;
}
/**
* Set VPC唯一ID。
注意:此字段可能返回 null,表示取不到有效值。
* @param UniqVpcId VPC唯一ID。
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setUniqVpcId(String UniqVpcId) {
this.UniqVpcId = UniqVpcId;
}
/**
* Get API类型。取值为NORMAL(普通API)和TSF(微服务API)。
注意:此字段可能返回 null,表示取不到有效值。
* @return ApiType API类型。取值为NORMAL(普通API)和TSF(微服务API)。
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getApiType() {
return this.ApiType;
}
/**
* Set API类型。取值为NORMAL(普通API)和TSF(微服务API)。
注意:此字段可能返回 null,表示取不到有效值。
* @param ApiType API类型。取值为NORMAL(普通API)和TSF(微服务API)。
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setApiType(String ApiType) {
this.ApiType = ApiType;
}
/**
* Get API协议。
注意:此字段可能返回 null,表示取不到有效值。
* @return Protocol API协议。
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getProtocol() {
return this.Protocol;
}
/**
* Set API协议。
注意:此字段可能返回 null,表示取不到有效值。
* @param Protocol API协议。
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setProtocol(String Protocol) {
this.Protocol = Protocol;
}
/**
* Get 是否买后调试。(云市场预留字段)
注意:此字段可能返回 null,表示取不到有效值。
* @return IsDebugAfterCharge 是否买后调试。(云市场预留字段)
注意:此字段可能返回 null,表示取不到有效值。
*/
public Boolean getIsDebugAfterCharge() {
return this.IsDebugAfterCharge;
}
/**
* Set 是否买后调试。(云市场预留字段)
注意:此字段可能返回 null,表示取不到有效值。
* @param IsDebugAfterCharge 是否买后调试。(云市场预留字段)
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setIsDebugAfterCharge(Boolean IsDebugAfterCharge) {
this.IsDebugAfterCharge = IsDebugAfterCharge;
}
/**
* Get API 鉴权类型。取值为SECRET(密钥对鉴权)、NONE(免鉴权)、OAUTH、EIAM。
注意:此字段可能返回 null,表示取不到有效值。
* @return AuthType API 鉴权类型。取值为SECRET(密钥对鉴权)、NONE(免鉴权)、OAUTH、EIAM。
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getAuthType() {
return this.AuthType;
}
/**
* Set API 鉴权类型。取值为SECRET(密钥对鉴权)、NONE(免鉴权)、OAUTH、EIAM。
注意:此字段可能返回 null,表示取不到有效值。
* @param AuthType API 鉴权类型。取值为SECRET(密钥对鉴权)、NONE(免鉴权)、OAUTH、EIAM。
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setAuthType(String AuthType) {
this.AuthType = AuthType;
}
/**
* Get OAUTH API的类型。当AuthType 为 OAUTH时该字段有效, 取值为NORMAL(业务API)和 OAUTH(授权API)。
注意:此字段可能返回 null,表示取不到有效值。
* @return ApiBusinessType OAUTH API的类型。当AuthType 为 OAUTH时该字段有效, 取值为NORMAL(业务API)和 OAUTH(授权API)。
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getApiBusinessType() {
return this.ApiBusinessType;
}
/**
* Set OAUTH API的类型。当AuthType 为 OAUTH时该字段有效, 取值为NORMAL(业务API)和 OAUTH(授权API)。
注意:此字段可能返回 null,表示取不到有效值。
* @param ApiBusinessType OAUTH API的类型。当AuthType 为 OAUTH时该字段有效, 取值为NORMAL(业务API)和 OAUTH(授权API)。
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setApiBusinessType(String ApiBusinessType) {
this.ApiBusinessType = ApiBusinessType;
}
/**
* Get 关联的授权API 唯一 ID,当AuthType为OAUTH且ApiBusinessType为NORMAL时生效。标示业务API绑定的oauth2.0授权API唯一ID。
注意:此字段可能返回 null,表示取不到有效值。
* @return AuthRelationApiId 关联的授权API 唯一 ID,当AuthType为OAUTH且ApiBusinessType为NORMAL时生效。标示业务API绑定的oauth2.0授权API唯一ID。
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getAuthRelationApiId() {
return this.AuthRelationApiId;
}
/**
* Set 关联的授权API 唯一 ID,当AuthType为OAUTH且ApiBusinessType为NORMAL时生效。标示业务API绑定的oauth2.0授权API唯一ID。
注意:此字段可能返回 null,表示取不到有效值。
* @param AuthRelationApiId 关联的授权API 唯一 ID,当AuthType为OAUTH且ApiBusinessType为NORMAL时生效。标示业务API绑定的oauth2.0授权API唯一ID。
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setAuthRelationApiId(String AuthRelationApiId) {
this.AuthRelationApiId = AuthRelationApiId;
}
/**
* Get OAUTH 配置信息。当AuthType是OAUTH时生效。
注意:此字段可能返回 null,表示取不到有效值。
* @return OauthConfig OAUTH 配置信息。当AuthType是OAUTH时生效。
注意:此字段可能返回 null,表示取不到有效值。
*/
public OauthConfig getOauthConfig() {
return this.OauthConfig;
}
/**
* Set OAUTH 配置信息。当AuthType是OAUTH时生效。
注意:此字段可能返回 null,表示取不到有效值。
* @param OauthConfig OAUTH 配置信息。当AuthType是OAUTH时生效。
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setOauthConfig(OauthConfig OauthConfig) {
this.OauthConfig = OauthConfig;
}
/**
* Get 授权API关联的业务API列表。
注意:此字段可能返回 null,表示取不到有效值。
* @return RelationBuniessApiIds 授权API关联的业务API列表。
注意:此字段可能返回 null,表示取不到有效值。
*/
public String [] getRelationBuniessApiIds() {
return this.RelationBuniessApiIds;
}
/**
* Set 授权API关联的业务API列表。
注意:此字段可能返回 null,表示取不到有效值。
* @param RelationBuniessApiIds 授权API关联的业务API列表。
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setRelationBuniessApiIds(String [] RelationBuniessApiIds) {
this.RelationBuniessApiIds = RelationBuniessApiIds;
}
/**
* Get API关联的标签信息。
注意:此字段可能返回 null,表示取不到有效值。
* @return Tags API关联的标签信息。
注意:此字段可能返回 null,表示取不到有效值。
*/
public String [] getTags() {
return this.Tags;
}
/**
* Set API关联的标签信息。
注意:此字段可能返回 null,表示取不到有效值。
* @param Tags API关联的标签信息。
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setTags(String [] Tags) {
this.Tags = Tags;
}
/**
* Get API 的路径,如 /path。
注意:此字段可能返回 null,表示取不到有效值。
* @return Path API 的路径,如 /path。
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getPath() {
return this.Path;
}
/**
* Set API 的路径,如 /path。
注意:此字段可能返回 null,表示取不到有效值。
* @param Path API 的路径,如 /path。
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setPath(String Path) {
this.Path = Path;
}
/**
* Get API 的请求方法,如 GET。
注意:此字段可能返回 null,表示取不到有效值。
* @return Method API 的请求方法,如 GET。
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getMethod() {
return this.Method;
}
/**
* Set API 的请求方法,如 GET。
注意:此字段可能返回 null,表示取不到有效值。
* @param Method API 的请求方法,如 GET。
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setMethod(String Method) {
this.Method = Method;
}
public DesApisStatus() {
}
/**
* 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 DesApisStatus(DesApisStatus source) {
if (source.ServiceId != null) {
this.ServiceId = new String(source.ServiceId);
}
if (source.ApiId != null) {
this.ApiId = new String(source.ApiId);
}
if (source.ApiDesc != null) {
this.ApiDesc = new String(source.ApiDesc);
}
if (source.CreatedTime != null) {
this.CreatedTime = new String(source.CreatedTime);
}
if (source.ModifiedTime != null) {
this.ModifiedTime = new String(source.ModifiedTime);
}
if (source.ApiName != null) {
this.ApiName = new String(source.ApiName);
}
if (source.VpcId != null) {
this.VpcId = new Long(source.VpcId);
}
if (source.UniqVpcId != null) {
this.UniqVpcId = new String(source.UniqVpcId);
}
if (source.ApiType != null) {
this.ApiType = new String(source.ApiType);
}
if (source.Protocol != null) {
this.Protocol = new String(source.Protocol);
}
if (source.IsDebugAfterCharge != null) {
this.IsDebugAfterCharge = new Boolean(source.IsDebugAfterCharge);
}
if (source.AuthType != null) {
this.AuthType = new String(source.AuthType);
}
if (source.ApiBusinessType != null) {
this.ApiBusinessType = new String(source.ApiBusinessType);
}
if (source.AuthRelationApiId != null) {
this.AuthRelationApiId = new String(source.AuthRelationApiId);
}
if (source.OauthConfig != null) {
this.OauthConfig = new OauthConfig(source.OauthConfig);
}
if (source.RelationBuniessApiIds != null) {
this.RelationBuniessApiIds = new String[source.RelationBuniessApiIds.length];
for (int i = 0; i < source.RelationBuniessApiIds.length; i++) {
this.RelationBuniessApiIds[i] = new String(source.RelationBuniessApiIds[i]);
}
}
if (source.Tags != null) {
this.Tags = new String[source.Tags.length];
for (int i = 0; i < source.Tags.length; i++) {
this.Tags[i] = new String(source.Tags[i]);
}
}
if (source.Path != null) {
this.Path = new String(source.Path);
}
if (source.Method != null) {
this.Method = new String(source.Method);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "ServiceId", this.ServiceId);
this.setParamSimple(map, prefix + "ApiId", this.ApiId);
this.setParamSimple(map, prefix + "ApiDesc", this.ApiDesc);
this.setParamSimple(map, prefix + "CreatedTime", this.CreatedTime);
this.setParamSimple(map, prefix + "ModifiedTime", this.ModifiedTime);
this.setParamSimple(map, prefix + "ApiName", this.ApiName);
this.setParamSimple(map, prefix + "VpcId", this.VpcId);
this.setParamSimple(map, prefix + "UniqVpcId", this.UniqVpcId);
this.setParamSimple(map, prefix + "ApiType", this.ApiType);
this.setParamSimple(map, prefix + "Protocol", this.Protocol);
this.setParamSimple(map, prefix + "IsDebugAfterCharge", this.IsDebugAfterCharge);
this.setParamSimple(map, prefix + "AuthType", this.AuthType);
this.setParamSimple(map, prefix + "ApiBusinessType", this.ApiBusinessType);
this.setParamSimple(map, prefix + "AuthRelationApiId", this.AuthRelationApiId);
this.setParamObj(map, prefix + "OauthConfig.", this.OauthConfig);
this.setParamArraySimple(map, prefix + "RelationBuniessApiIds.", this.RelationBuniessApiIds);
this.setParamArraySimple(map, prefix + "Tags.", this.Tags);
this.setParamSimple(map, prefix + "Path", this.Path);
this.setParamSimple(map, prefix + "Method", this.Method);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy