index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiGroupRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeApiGroupRequest extends RpcAcsRequest<DescribeApiGroupResponse> { public DescribeApiGroupRequest() { super("CloudAPI", "2016-07-14", "DescribeApiGroup", "apigateway"); } private String groupId; public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } @Override public Class<DescribeApiGroupResponse> getResponseClass() { return DescribeApiGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiGroupResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeApiGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeApiGroupResponse extends AcsResponse { private String requestId; private String groupId; private String groupName; private String subDomain; private String description; private String createdTime; private String modifiedTime; private String regionId; private String status; private String billingStatus; private String illegalStatus; private Integer trafficLimit; private List<DomainItem> customDomains; private List<StageInfo> stageItems; private String vpcDomain; private String instanceId; private String httpsPolicy; private String basePath; private String defaultDomain; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getSubDomain() { return this.subDomain; } public void setSubDomain(String subDomain) { this.subDomain = subDomain; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getCreatedTime() { return this.createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public String getModifiedTime() { return this.modifiedTime; } public void setModifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getBillingStatus() { return this.billingStatus; } public void setBillingStatus(String billingStatus) { this.billingStatus = billingStatus; } public String getIllegalStatus() { return this.illegalStatus; } public void setIllegalStatus(String illegalStatus) { this.illegalStatus = illegalStatus; } public Integer getTrafficLimit() { return this.trafficLimit; } public void setTrafficLimit(Integer trafficLimit) { this.trafficLimit = trafficLimit; } public List<DomainItem> getCustomDomains() { return this.customDomains; } public void setCustomDomains(List<DomainItem> customDomains) { this.customDomains = customDomains; } public List<StageInfo> getStageItems() { return this.stageItems; } public void setStageItems(List<StageInfo> stageItems) { this.stageItems = stageItems; } public String getVpcDomain() { return vpcDomain; } public void setVpcDomain(String vpcDomain) { this.vpcDomain = vpcDomain; } public String getInstanceId() { return instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getHttpsPolicy() { return httpsPolicy; } public void setHttpsPolicy(String httpsPolicy) { this.httpsPolicy = httpsPolicy; } public String getBasePath() { return basePath; } public void setBasePath(String basePath) { this.basePath = basePath; } public String getDefaultDomain() { return defaultDomain; } public void setDefaultDomain(String defaultDomain) { this.defaultDomain = defaultDomain; } public static class DomainItem { private String domainName; private String certificateId; private String certificateName; private String domainCNAMEStatus; private String domainBindingStatus; private String domainLegalStatus; private String domainRemark; public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public String getCertificateId() { return this.certificateId; } public void setCertificateId(String certificateId) { this.certificateId = certificateId; } public String getCertificateName() { return this.certificateName; } public void setCertificateName(String certificateName) { this.certificateName = certificateName; } public String getDomainCNAMEStatus() { return this.domainCNAMEStatus; } public void setDomainCNAMEStatus(String domainCNAMEStatus) { this.domainCNAMEStatus = domainCNAMEStatus; } public String getDomainBindingStatus() { return this.domainBindingStatus; } public void setDomainBindingStatus(String domainBindingStatus) { this.domainBindingStatus = domainBindingStatus; } public String getDomainRemark() { return domainRemark; } public void setDomainRemark(String domainRemark) { this.domainRemark = domainRemark; } public String getDomainLegalStatus() { return domainLegalStatus; } public void setDomainLegalStatus(String domainLegalStatus) { this.domainLegalStatus = domainLegalStatus; } } public static class StageInfo { private String stageId; private String stageName; private String description; public String getStageId() { return this.stageId; } public void setStageId(String stageId) { this.stageId = stageId; } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } } @Override public DescribeApiGroupResponse getInstance(UnmarshallerContext context) { return DescribeApiGroupResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiGroupsRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import java.util.List; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.cloudapi.openapi.sdk.entity.Tag; /** * @author auto create * */ public class DescribeApiGroupsRequest extends RpcAcsRequest<DescribeApiGroupsResponse> { public DescribeApiGroupsRequest() { super("CloudAPI", "2016-07-14", "DescribeApiGroups", "apigateway"); } private String groupId; private String groupName; private Integer pageNumber; private Integer pageSize; private List<Tag> tags; private Boolean enableTagAuth; public List<Tag> getTags() { return tags; } public void setTags(List<Tag> tags) { this.tags = tags; if (tags != null) { for (int i = 0; i < tags.size(); i++) { putQueryParameter("Tag." + (i + 1) + ".Value" , tags.get(i).getValue()); putQueryParameter("Tag." + (i + 1) + ".Key" , tags.get(i).getKey()); } } } public Boolean getEnableTagAuth() { return enableTagAuth; } public void setEnableTagAuth(Boolean enableTagAuth) { this.enableTagAuth = enableTagAuth; putQueryParameter("EnableTagAuth", enableTagAuth); } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; putQueryParameter("GroupName", groupName); } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; putQueryParameter("PageNumber", pageNumber); } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; putQueryParameter("PageSize", pageSize); } @Override public Class<DescribeApiGroupsResponse> getResponseClass() { return DescribeApiGroupsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiGroupsResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeApiGroupsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeApiGroupsResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<ApiGroupAttribute> apiGroupAttributes; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<ApiGroupAttribute> getApiGroupAttributes() { return this.apiGroupAttributes; } public void setApiGroupAttributes(List<ApiGroupAttribute> apiGroupAttributes) { this.apiGroupAttributes = apiGroupAttributes; } public static class ApiGroupAttribute { private String groupId; private String groupName; private String basePath; private String subDomain; private String description; private String createdTime; private String modifiedTime; private String regionId; private Integer trafficLimit; private BillingStatus billingStatus; private IllegalStatus illegalStatus; private String instanceId; private String httpsPolicy; public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getSubDomain() { return this.subDomain; } public void setSubDomain(String subDomain) { this.subDomain = subDomain; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getCreatedTime() { return this.createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public String getModifiedTime() { return this.modifiedTime; } public void setModifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public Integer getTrafficLimit() { return this.trafficLimit; } public void setTrafficLimit(Integer trafficLimit) { this.trafficLimit = trafficLimit; } public BillingStatus getBillingStatus() { return this.billingStatus; } public void setBillingStatus(BillingStatus billingStatus) { this.billingStatus = billingStatus; } public IllegalStatus getIllegalStatus() { return this.illegalStatus; } public void setIllegalStatus(IllegalStatus illegalStatus) { this.illegalStatus = illegalStatus; } public String getInstanceId() { return instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getHttpsPolicy() { return httpsPolicy; } public void setHttpsPolicy(String httpsPolicy) { this.httpsPolicy = httpsPolicy; } public String getBasePath() { return basePath; } public void setBasePath(String basePath) { this.basePath = basePath; } public enum BillingStatus { NORMAL("NORMAL"), LOCKED("LOCKED"); private String stringValue; BillingStatus(String stringValue) { setStringValue(stringValue); } public String getStringValue() { return stringValue; } public void setStringValue(String stringValue) { this.stringValue = stringValue; } public static BillingStatus getEnum(String stringValue){ if(null == stringValue){ return null; } for (BillingStatus billingStatus : BillingStatus.values()) { if(billingStatus.getStringValue().equals(stringValue)){ return billingStatus; } } return null; } } public enum IllegalStatus { NORMAL("NORMAL"), LOCKED("LOCKED"); private String stringValue; IllegalStatus(String stringValue) { setStringValue(stringValue); } public String getStringValue() { return stringValue; } public void setStringValue(String stringValue) { this.stringValue = stringValue; } public static IllegalStatus getEnum(String stringValue){ if(null == stringValue){ return null; } for (IllegalStatus illegalStatus : IllegalStatus.values()) { if(illegalStatus.getStringValue().equals(stringValue)){ return illegalStatus; } } return null; } } } @Override public DescribeApiGroupsResponse getInstance(UnmarshallerContext context) { return DescribeApiGroupsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiHistoriesRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeApiHistoriesRequest extends RpcAcsRequest<DescribeApiHistoriesResponse> { public DescribeApiHistoriesRequest() { super("CloudAPI", "2016-07-14", "DescribeApiHistories", "apigateway"); } private String stageName; private String apiName; private String groupId; private String pageSize; private String apiId; private String pageNumber; public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; if(stageName != null){ putQueryParameter("StageName", stageName); } } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; if(apiName != null){ putQueryParameter("ApiName", apiName); } } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId); } } public String getPageSize() { return this.pageSize; } public void setPageSize(String pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize); } } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; if(apiId != null){ putQueryParameter("ApiId", apiId); } } public String getPageNumber() { return this.pageNumber; } public void setPageNumber(String pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber); } } @Override public Class<DescribeApiHistoriesResponse> getResponseClass() { return DescribeApiHistoriesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiHistoriesResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeApiHistoriesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * */ public class DescribeApiHistoriesResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<ApiHisItem> apiHisItems; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<ApiHisItem> getApiHisItems() { return this.apiHisItems; } public void setApiHisItems(List<ApiHisItem> apiHisItems) { this.apiHisItems = apiHisItems; } public static class ApiHisItem { private String regionId; private String apiId; private String apiName; private String groupId; private String groupName; private String stageName; private String historyVersion; private String status; private String description; private String deployedTime; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; } public String getHistoryVersion() { return this.historyVersion; } public void setHistoryVersion(String historyVersion) { this.historyVersion = historyVersion; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getDeployedTime() { return this.deployedTime; } public void setDeployedTime(String deployedTime) { this.deployedTime = deployedTime; } } @Override public DescribeApiHistoriesResponse getInstance(UnmarshallerContext context) { return DescribeApiHistoriesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiHistoryRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeApiHistoryRequest extends RpcAcsRequest<DescribeApiHistoryResponse> { public DescribeApiHistoryRequest() { super("CloudAPI", "2016-07-14", "DescribeApiHistory", "apigateway"); } private String groupId; private String apiId; private String stageName; private String historyVersion; public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; putQueryParameter("ApiId", apiId); } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; putQueryParameter("StageName", stageName); } public String getHistoryVersion() { return this.historyVersion; } public void setHistoryVersion(String historyVersion) { this.historyVersion = historyVersion; putQueryParameter("HistoryVersion", historyVersion); } @Override public Class<DescribeApiHistoryResponse> getResponseClass() { return DescribeApiHistoryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiHistoryResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.model.v20160714.DescribeApiResponse.*; import com.aliyuncs.cloudapi.transform.v20160714.DescribeApiHistoryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeApiHistoryResponse extends AcsResponse { private String requestId; private String regionId; private String groupId; private String groupName; private String stageName; private String apiId; private String apiName; private String description; private String historyVersion; private String status; private String visibility; private String authType; private Boolean forceNonceCheck; private Boolean disableInternet; private String resultType; private String resultSample; private String failResultSample; private String deployedTime; private String allowSignatureMethod; private String ResultBodyModel; private List<ErrorCodeSample> errorCodeSamples; private List<SystemParameter> systemParameters; private List<SystemParameter> customSystemParameters; private List<ConstantParameter> constantParameters; private List<RequestParameter> requestParameters; private List<ServiceParameter> serviceParameters; private List<ServiceParameterMap> serviceParametersMap; private RequestConfig requestConfig; private ServiceConfig serviceConfig; private OpenIdConnectConfig openIdConnectConfig; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getHistoryVersion() { return this.historyVersion; } public void setHistoryVersion(String historyVersion) { this.historyVersion = historyVersion; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getVisibility() { return this.visibility; } public void setVisibility(String visibility) { this.visibility = visibility; } public String getAuthType() { return this.authType; } public void setAuthType(String authType) { this.authType = authType; } public String getResultType() { return this.resultType; } public void setResultType(String resultType) { this.resultType = resultType; } public String getResultSample() { return this.resultSample; } public void setResultSample(String resultSample) { this.resultSample = resultSample; } public String getDeployedTime() { return this.deployedTime; } public void setDeployedTime(String deployedTime) { this.deployedTime = deployedTime; } public String getAllowSignatureMethod() { return allowSignatureMethod; } public void setAllowSignatureMethod(String allowSignatureMethod) { this.allowSignatureMethod = allowSignatureMethod; } public List<SystemParameter> getSystemParameters() { return this.systemParameters; } public void setSystemParameters(List<SystemParameter> systemParameters) { this.systemParameters = systemParameters; } public List<ConstantParameter> getConstantParameters() { return this.constantParameters; } public void setConstantParameters(List<ConstantParameter> constantParameters) { this.constantParameters = constantParameters; } public List<RequestParameter> getRequestParameters() { return this.requestParameters; } public void setRequestParameters(List<RequestParameter> requestParameters) { this.requestParameters = requestParameters; } public Boolean getForceNonceCheck() { return forceNonceCheck; } public void setForceNonceCheck(Boolean forceNonceCheck) { this.forceNonceCheck = forceNonceCheck; } public Boolean getDisableInternet() { return disableInternet; } public void setDisableInternet(Boolean disableInternet) { this.disableInternet = disableInternet; } public List<ServiceParameter> getServiceParameters() { return this.serviceParameters; } public void setServiceParameters(List<ServiceParameter> serviceParameters) { this.serviceParameters = serviceParameters; } public List<ServiceParameterMap> getServiceParametersMap() { return this.serviceParametersMap; } public void setServiceParametersMap(List<ServiceParameterMap> serviceParametersMap) { this.serviceParametersMap = serviceParametersMap; } public RequestConfig getRequestConfig() { return this.requestConfig; } public void setRequestConfig(RequestConfig requestConfig) { this.requestConfig = requestConfig; } public ServiceConfig getServiceConfig() { return this.serviceConfig; } public void setServiceConfig(ServiceConfig serviceConfig) { this.serviceConfig = serviceConfig; } public String getFailResultSample() { return failResultSample; } public void setFailResultSample(String failResultSample) { this.failResultSample = failResultSample; } public List<ErrorCodeSample> getErrorCodeSamples() { return errorCodeSamples; } public void setErrorCodeSamples(List<ErrorCodeSample> errorCodeSamples) { this.errorCodeSamples = errorCodeSamples; } public List<SystemParameter> getCustomSystemParameters() { return customSystemParameters; } public void setCustomSystemParameters(List<SystemParameter> customSystemParameters) { this.customSystemParameters = customSystemParameters; } public OpenIdConnectConfig getOpenIdConnectConfig() { return openIdConnectConfig; } public void setOpenIdConnectConfig(OpenIdConnectConfig openIdConnectConfig) { this.openIdConnectConfig = openIdConnectConfig; } public String getResultBodyModel() { return ResultBodyModel; } public void setResultBodyModel(String resultBodyModel) { ResultBodyModel = resultBodyModel; } @Override public DescribeApiHistoryResponse getInstance(UnmarshallerContext context) { return DescribeApiHistoryResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiIpControlsRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeApiIpControlsRequest extends RpcAcsRequest<DescribeApiIpControlsResponse> { public DescribeApiIpControlsRequest() { super("CloudAPI", "2016-07-14", "DescribeApiIpControls", "apigateway"); } private String stageName; private String groupId; private Integer pageSize; private Integer pageNumber; private String apiIds; public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; if(stageName != null){ putQueryParameter("StageName", stageName); } } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getApiIds() { return this.apiIds; } public void setApiIds(String apiIds) { this.apiIds = apiIds; if(apiIds != null){ putQueryParameter("ApiIds", apiIds); } } @Override public Class<DescribeApiIpControlsResponse> getResponseClass() { return DescribeApiIpControlsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiIpControlsResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeApiIpControlsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeApiIpControlsResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<ApiIpControlItem> apiIpControls; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<ApiIpControlItem> getApiIpControls() { return this.apiIpControls; } public void setApiIpControls(List<ApiIpControlItem> apiIpControls) { this.apiIpControls = apiIpControls; } public static class ApiIpControlItem { private String apiId; private String apiName; private String ipControlId; private String ipControlName; private String boundTime; public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; } public String getIpControlId() { return this.ipControlId; } public void setIpControlId(String ipControlId) { this.ipControlId = ipControlId; } public String getIpControlName() { return this.ipControlName; } public void setIpControlName(String ipControlName) { this.ipControlName = ipControlName; } public String getBoundTime() { return this.boundTime; } public void setBoundTime(String boundTime) { this.boundTime = boundTime; } } @Override public DescribeApiIpControlsResponse getInstance(UnmarshallerContext context) { return DescribeApiIpControlsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiLatencyDataRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeApiLatencyDataRequest extends RpcAcsRequest<DescribeApiLatencyDataResponse> { public DescribeApiLatencyDataRequest() { super("CloudAPI", "2016-07-14", "DescribeApiLatencyData", "apigateway"); } private String apiId; private String groupId; private String startTime; private String endTime; public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; putQueryParameter("ApiId", apiId); } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; putQueryParameter("StartTime", startTime); } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; putQueryParameter("EndTime", endTime); } @Override public Class<DescribeApiLatencyDataResponse> getResponseClass() { return DescribeApiLatencyDataResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiLatencyDataResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeApiLatencyDataResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeApiLatencyDataResponse extends AcsResponse { private String requestId; private List<MonitorItem> callLatencys; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<MonitorItem> getCallLatencys() { return this.callLatencys; } public void setCallLatencys(List<MonitorItem> callLatencys) { this.callLatencys = callLatencys; } public static class MonitorItem { private String itemTime; private String itemValue; public String getItemTime() { return this.itemTime; } public void setItemTime(String itemTime) { this.itemTime = itemTime; } public String getItemValue() { return this.itemValue; } public void setItemValue(String itemValue) { this.itemValue = itemValue; } } @Override public DescribeApiLatencyDataResponse getInstance(UnmarshallerContext context) { return DescribeApiLatencyDataResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiQpsDataRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeApiQpsDataRequest extends RpcAcsRequest<DescribeApiQpsDataResponse> { public DescribeApiQpsDataRequest() { super("CloudAPI", "2016-07-14", "DescribeApiQpsData", "apigateway"); } private String apiId; private String groupId; private String startTime; private String endTime; public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; putQueryParameter("ApiId", apiId); } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; putQueryParameter("StartTime", startTime); } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; putQueryParameter("EndTime", endTime); } @Override public Class<DescribeApiQpsDataResponse> getResponseClass() { return DescribeApiQpsDataResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiQpsDataResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeApiQpsDataResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeApiQpsDataResponse extends AcsResponse { private String requestId; private List<MonitorItem> callSuccesses; private List<MonitorItem> callFails; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<MonitorItem> getCallSuccesses() { return this.callSuccesses; } public void setCallSuccesses(List<MonitorItem> callSuccesses) { this.callSuccesses = callSuccesses; } public List<MonitorItem> getCallFails() { return this.callFails; } public void setCallFails(List<MonitorItem> callFails) { this.callFails = callFails; } public static class MonitorItem { private String itemTime; private String itemValue; public String getItemTime() { return this.itemTime; } public void setItemTime(String itemTime) { this.itemTime = itemTime; } public String getItemValue() { return this.itemValue; } public void setItemValue(String itemValue) { this.itemValue = itemValue; } } @Override public DescribeApiQpsDataResponse getInstance(UnmarshallerContext context) { return DescribeApiQpsDataResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeApiRequest extends RpcAcsRequest<DescribeApiResponse> { public DescribeApiRequest() { super("CloudAPI", "2016-07-14", "DescribeApi", "apigateway"); } private String groupId; private String apiId; public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; putQueryParameter("ApiId", apiId); } @Override public Class<DescribeApiResponse> getResponseClass() { return DescribeApiResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeApiResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create */ public class DescribeApiResponse extends AcsResponse { private String requestId; private String regionId; private String apiId; private String apiName; private String groupId; private String groupName; private String visibility; private String authType; private Boolean forceNonceCheck; private Boolean disableInternet; private String appCodeAuthType; private String internalApiName; private String resultType; private String resultSample; private String failResultSample; private String createdTime; private String modifiedTime; private String description; private String allowSignatureMethod; private String resultBodyModel; private String webSocketApiType; private List<SystemParameter> systemParameters; private List<SystemParameter> customSystemParameters; private List<ConstantParameter> constantParameters; private List<RequestParameter> requestParameters; private List<ServiceParameter> serviceParameters; private List<ServiceParameterMap> serviceParametersMap; private List<ErrorCodeSample> errorCodeSamples; private List<DeployedInfo> deployedInfos; private RequestConfig requestConfig; private ServiceConfig serviceConfig; private OpenIdConnectConfig openIdConnectConfig; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getVisibility() { return this.visibility; } public void setVisibility(String visibility) { this.visibility = visibility; } public String getAuthType() { return this.authType; } public void setAuthType(String authType) { this.authType = authType; } public String getResultType() { return this.resultType; } public void setResultType(String resultType) { this.resultType = resultType; } public String getAppCodeAuthType() { return appCodeAuthType; } public void setAppCodeAuthType(String appCodeAuthType) { this.appCodeAuthType = appCodeAuthType; } public String getInternalApiName() { return internalApiName; } public void setInternalApiName(String internalApiName) { this.internalApiName = internalApiName; } public String getResultSample() { return this.resultSample; } public void setResultSample(String resultSample) { this.resultSample = resultSample; } public String getCreatedTime() { return this.createdTime; } public Boolean getForceNonceCheck() { return forceNonceCheck; } public void setForceNonceCheck(Boolean forceNonceCheck) { this.forceNonceCheck = forceNonceCheck; } public Boolean getDisableInternet() { return disableInternet; } public void setDisableInternet(Boolean disableInternet) { this.disableInternet = disableInternet; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public String getModifiedTime() { return this.modifiedTime; } public void setModifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public List<SystemParameter> getSystemParameters() { return this.systemParameters; } public void setSystemParameters(List<SystemParameter> systemParameters) { this.systemParameters = systemParameters; } public List<SystemParameter> getCustomSystemParameters() { return customSystemParameters; } public void setCustomSystemParameters(List<SystemParameter> customSystemParameters) { this.customSystemParameters = customSystemParameters; } public List<ConstantParameter> getConstantParameters() { return this.constantParameters; } public void setConstantParameters(List<ConstantParameter> constantParameters) { this.constantParameters = constantParameters; } public List<RequestParameter> getRequestParameters() { return this.requestParameters; } public void setRequestParameters(List<RequestParameter> requestParameters) { this.requestParameters = requestParameters; } public List<ServiceParameter> getServiceParameters() { return this.serviceParameters; } public void setServiceParameters(List<ServiceParameter> serviceParameters) { this.serviceParameters = serviceParameters; } public List<ServiceParameterMap> getServiceParametersMap() { return this.serviceParametersMap; } public void setServiceParametersMap(List<ServiceParameterMap> serviceParametersMap) { this.serviceParametersMap = serviceParametersMap; } public List<DeployedInfo> getDeployedInfos() { return this.deployedInfos; } public void setDeployedInfos(List<DeployedInfo> deployedInfos) { this.deployedInfos = deployedInfos; } public RequestConfig getRequestConfig() { return this.requestConfig; } public void setRequestConfig(RequestConfig requestConfig) { this.requestConfig = requestConfig; } public ServiceConfig getServiceConfig() { return this.serviceConfig; } public void setServiceConfig(ServiceConfig serviceConfig) { this.serviceConfig = serviceConfig; } public String getFailResultSample() { return failResultSample; } public void setFailResultSample(String failResultSample) { this.failResultSample = failResultSample; } public List<ErrorCodeSample> getErrorCodeSamples() { return errorCodeSamples; } public void setErrorCodeSamples(List<ErrorCodeSample> errorCodeSamples) { this.errorCodeSamples = errorCodeSamples; } public OpenIdConnectConfig getOpenIdConnectConfig() { return openIdConnectConfig; } public void setOpenIdConnectConfig(OpenIdConnectConfig openIdConnectConfig) { this.openIdConnectConfig = openIdConnectConfig; } public String getAllowSignatureMethod() { return allowSignatureMethod; } public void setAllowSignatureMethod(String allowSignatureMethod) { this.allowSignatureMethod = allowSignatureMethod; } public String getResultBodyModel() { return resultBodyModel; } public void setResultBodyModel(String resultBodyModel) { this.resultBodyModel = resultBodyModel; } public String getWebSocketApiType() { return webSocketApiType; } public void setWebSocketApiType(String webSocketApiType) { this.webSocketApiType = webSocketApiType; } public static class SystemParameter { private String parameterName; private String serviceParameterName; private String location; private String demoValue; private String description; public String getParameterName() { return this.parameterName; } public void setParameterName(String parameterName) { this.parameterName = parameterName; } public String getServiceParameterName() { return this.serviceParameterName; } public void setServiceParameterName(String serviceParameterName) { this.serviceParameterName = serviceParameterName; } public String getLocation() { return this.location; } public void setLocation(String location) { this.location = location; } public String getDemoValue() { return this.demoValue; } public void setDemoValue(String demoValue) { this.demoValue = demoValue; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } } public static class ConstantParameter { private String serviceParameterName; private String constantValue; private String location; private String description; public String getServiceParameterName() { return this.serviceParameterName; } public void setServiceParameterName(String serviceParameterName) { this.serviceParameterName = serviceParameterName; } public String getConstantValue() { return this.constantValue; } public void setConstantValue(String constantValue) { this.constantValue = constantValue; } public String getLocation() { return this.location; } public void setLocation(String location) { this.location = location; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } } public static class RequestParameter { private String apiParameterName; private String location; private String parameterType; private String arrayItemsType; private String required; private String defaultValue; private String demoValue; private Long maxValue; private Long minValue; private Long maxLength; private Long minLength; private String regularExpression; private String jsonScheme; private String enumValue; private String docShow; private Integer docOrder; private String description; public String getApiParameterName() { return this.apiParameterName; } public void setApiParameterName(String apiParameterName) { this.apiParameterName = apiParameterName; } public String getLocation() { return this.location; } public void setLocation(String location) { this.location = location; } public String getParameterType() { return this.parameterType; } public void setParameterType(String parameterType) { this.parameterType = parameterType; } public String getArrayItemsType() { return arrayItemsType; } public void setArrayItemsType(String arrayItemsType) { this.arrayItemsType = arrayItemsType; } public String getRequired() { return this.required; } public void setRequired(String required) { this.required = required; } public String getDefaultValue() { return this.defaultValue; } public void setDefaultValue(String defaultValue) { this.defaultValue = defaultValue; } public String getDemoValue() { return this.demoValue; } public void setDemoValue(String demoValue) { this.demoValue = demoValue; } public Long getMaxValue() { return this.maxValue; } public void setMaxValue(Long maxValue) { this.maxValue = maxValue; } public Long getMinValue() { return this.minValue; } public void setMinValue(Long minValue) { this.minValue = minValue; } public Long getMaxLength() { return this.maxLength; } public void setMaxLength(Long maxLength) { this.maxLength = maxLength; } public Long getMinLength() { return this.minLength; } public void setMinLength(Long minLength) { this.minLength = minLength; } public String getRegularExpression() { return this.regularExpression; } public void setRegularExpression(String regularExpression) { this.regularExpression = regularExpression; } public String getJsonScheme() { return this.jsonScheme; } public void setJsonScheme(String jsonScheme) { this.jsonScheme = jsonScheme; } public String getEnumValue() { return this.enumValue; } public void setEnumValue(String enumValue) { this.enumValue = enumValue; } public String getDocShow() { return this.docShow; } public void setDocShow(String docShow) { this.docShow = docShow; } public Integer getDocOrder() { return this.docOrder; } public void setDocOrder(Integer docOrder) { this.docOrder = docOrder; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } } public static class ServiceParameter { private String serviceParameterName; private String location; private String parameterType; private String parameterCatalog; public String getServiceParameterName() { return this.serviceParameterName; } public void setServiceParameterName(String serviceParameterName) { this.serviceParameterName = serviceParameterName; } public String getLocation() { return this.location.toUpperCase(); } public void setLocation(String location) { this.location = location; } public String getParameterType() { return this.parameterType; } public void setParameterType(String parameterType) { this.parameterType = parameterType; } public String getParameterCatalog() { return parameterCatalog; } public void setParameterCatalog(String parameterCatalog) { this.parameterCatalog = parameterCatalog; } } public static class ServiceParameterMap { private String serviceParameterName; private String requestParameterName; public String getServiceParameterName() { return this.serviceParameterName; } public void setServiceParameterName(String serviceParameterName) { this.serviceParameterName = serviceParameterName; } public String getRequestParameterName() { return this.requestParameterName; } public void setRequestParameterName(String requestParameterName) { this.requestParameterName = requestParameterName; } } public static class DeployedInfo { private String stageName; private String effectiveVersion; private String deployedStatus; public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; } public String getEffectiveVersion() { return this.effectiveVersion; } public void setEffectiveVersion(String effectiveVersion) { this.effectiveVersion = effectiveVersion; } public String getDeployedStatus() { return this.deployedStatus; } public void setDeployedStatus(String deployedStatus) { this.deployedStatus = deployedStatus; } } public static class ErrorCodeSample { private String code; private String message; private String description; private String model; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getModel() { return model; } public void setModel(String model) { this.model = model; } } public static class RequestConfig { private String requestProtocol; private String requestHttpMethod; private String requestPath; private String bodyFormat; private String postBodyDescription; private String requestMode; private String bodyModel; public String getRequestProtocol() { return this.requestProtocol; } public void setRequestProtocol(String requestProtocol) { this.requestProtocol = requestProtocol; } public String getRequestHttpMethod() { return this.requestHttpMethod; } public void setRequestHttpMethod(String requestHttpMethod) { this.requestHttpMethod = requestHttpMethod; } public String getRequestPath() { return this.requestPath; } public void setRequestPath(String requestPath) { this.requestPath = requestPath; } public String getBodyFormat() { return this.bodyFormat; } public void setBodyFormat(String bodyFormat) { this.bodyFormat = bodyFormat; } public String getPostBodyDescription() { return this.postBodyDescription; } public void setPostBodyDescription(String postBodyDescription) { this.postBodyDescription = postBodyDescription; } public String getRequestMode() { return requestMode; } public void setRequestMode(String requestMode) { this.requestMode = requestMode; } public String getBodyModel() { return bodyModel; } public void setBodyModel(String bodyModel) { this.bodyModel = bodyModel; } } public static class ServiceConfig { private String serviceProtocol; private String serviceAddress; private String serviceHttpMethod; private String servicePath; private Integer serviceTimeout; private String mock; private String mockResult; private Integer mockStatusCode; private List<MockHeader> mockHeaders; private Boolean serviceVpcEnable = false; private VpcConfig vpcConfig; private FunctionComputeConfig functionComputeConfig; /** * 用户定义给后端的ContentType的类型: DEFAULT:服务器默认 CUSTOM:用户自定义 CLIENT:透传客户端的ContentType头 */ private String contentTypeCatagory; /** * 用户定义的ContentType头的值 */ private String contentTypeValue; private String aoneAppName; public String getServiceProtocol() { return this.serviceProtocol; } public void setServiceProtocol(String serviceProtocol) { this.serviceProtocol = serviceProtocol; } public String getServiceAddress() { return this.serviceAddress; } public void setServiceAddress(String serviceAddress) { this.serviceAddress = serviceAddress; } public String getServiceHttpMethod() { return this.serviceHttpMethod; } public void setServiceHttpMethod(String serviceHttpMethod) { this.serviceHttpMethod = serviceHttpMethod; } public String getServicePath() { return this.servicePath; } public void setServicePath(String servicePath) { this.servicePath = servicePath; } public Integer getServiceTimeout() { return this.serviceTimeout; } public void setServiceTimeout(Integer serviceTimeout) { this.serviceTimeout = serviceTimeout; } public String getMock() { return mock; } public void setMock(String mock) { this.mock = mock; } public String getMockResult() { return mockResult; } public void setMockResult(String mockResult) { this.mockResult = mockResult; } public VpcConfig getVpcConfig() { return vpcConfig; } public void setVpcConfig(VpcConfig vpcConfig) { this.vpcConfig = vpcConfig; } public Boolean isServiceVpcEnable() { return serviceVpcEnable; } public void setServiceVpcEnable(Boolean serviceVpcEnable) { this.serviceVpcEnable = serviceVpcEnable; } public String getContentTypeCatagory() { return contentTypeCatagory; } public void setContentTypeCatagory(String contentTypeCatagory) { this.contentTypeCatagory = contentTypeCatagory; } public String getContentTypeValue() { return contentTypeValue; } public void setContentTypeValue(String contentTypeValue) { this.contentTypeValue = contentTypeValue; } public String getAoneAppName() { return aoneAppName; } public void setAoneAppName(String aoneAppName) { this.aoneAppName = aoneAppName; } public Integer getMockStatusCode() { return mockStatusCode; } public void setMockStatusCode(Integer mockStatusCode) { this.mockStatusCode = mockStatusCode; } public List<MockHeader> getMockHeaders() { return mockHeaders; } public void setMockHeaders(List<MockHeader> mockHeaders) { this.mockHeaders = mockHeaders; } public FunctionComputeConfig getFunctionComputeConfig() { return functionComputeConfig; } public void setFunctionComputeConfig(FunctionComputeConfig functionComputeConfig) { this.functionComputeConfig = functionComputeConfig; } } public static class MockHeader { private String headerName; private String headerValue; public String getHeaderName() { return headerName; } public void setHeaderName(String headerName) { this.headerName = headerName; } public String getHeaderValue() { return headerValue; } public void setHeaderValue(String headerValue) { this.headerValue = headerValue; } } public static class OpenIdConnectConfig { private String openIdApiType; private String idTokenParamName; private String publicKeyId; private String publicKey; public String getOpenIdApiType() { return openIdApiType; } public void setOpenIdApiType(String openIdApiType) { this.openIdApiType = openIdApiType; } public String getIdTokenParamName() { return idTokenParamName; } public void setIdTokenParamName(String idTokenParamName) { this.idTokenParamName = idTokenParamName; } public String getPublicKeyId() { return publicKeyId; } public void setPublicKeyId(String publicKeyId) { this.publicKeyId = publicKeyId; } public String getPublicKey() { return publicKey; } public void setPublicKey(String publicKey) { this.publicKey = publicKey; } } public static class VpcConfig { private String vpcId; private String instanceId; private Integer port; private String name; public String getVpcId() { return vpcId; } public void setVpcId(String vpcId) { this.vpcId = vpcId; } public String getInstanceId() { return instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public Integer getPort() { return port; } public void setPort(Integer port) { this.port = port; } public String getName() { return name; } public void setName(String name) { this.name = name; } } public static class FunctionComputeConfig { private String fcRegionId; private String serviceName; private String qualifier; private String functionName; private String roleArn; public String getFcRegionId() { return fcRegionId; } public void setFcRegionId(String fcRegionId) { this.fcRegionId = fcRegionId; } public String getServiceName() { return serviceName; } public void setServiceName(String serviceName) { this.serviceName = serviceName; } public String getQualifier() { return qualifier; } public void setQualifier(String qualifier) { this.qualifier = qualifier; } public String getFunctionName() { return functionName; } public void setFunctionName(String functionName) { this.functionName = functionName; } public String getRoleArn() { return roleArn; } public void setRoleArn(String roleArn) { this.roleArn = roleArn; } } @Override public DescribeApiResponse getInstance(UnmarshallerContext context) { return DescribeApiResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiSignaturesRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeApiSignaturesRequest extends RpcAcsRequest<DescribeApiSignaturesResponse> { public DescribeApiSignaturesRequest() { super("CloudAPI", "2016-07-14", "DescribeApiSignatures", "apigateway"); } private String stageName; private String groupId; private String apiIds; private Integer pageNumber; private Integer pageSize; public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; putQueryParameter("StageName", stageName); } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public String getApiIds() { return this.apiIds; } public void setApiIds(String apiIds) { this.apiIds = apiIds; putQueryParameter("ApiIds", apiIds); } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; putQueryParameter("PageNumber", pageNumber); } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; putQueryParameter("PageSize", pageSize); } @Override public Class<DescribeApiSignaturesResponse> getResponseClass() { return DescribeApiSignaturesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiSignaturesResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeApiSignaturesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeApiSignaturesResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<ApiSignatureItem> apiSignatures; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<ApiSignatureItem> getApiSignatures() { return this.apiSignatures; } public void setApiSignatures(List<ApiSignatureItem> apiSignatures) { this.apiSignatures = apiSignatures; } public static class ApiSignatureItem { private String apiId; private String apiName; private String signatureId; private String signatureName; private String boundTime; public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; } public String getSignatureId() { return this.signatureId; } public void setSignatureId(String signatureId) { this.signatureId = signatureId; } public String getSignatureName() { return this.signatureName; } public void setSignatureName(String signatureName) { this.signatureName = signatureName; } public String getBoundTime() { return this.boundTime; } public void setBoundTime(String boundTime) { this.boundTime = boundTime; } } @Override public DescribeApiSignaturesResponse getInstance(UnmarshallerContext context) { return DescribeApiSignaturesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiStageRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create */ public class DescribeApiStageRequest extends RpcAcsRequest<DescribeApiStageResponse> { public DescribeApiStageRequest() { super("CloudAPI", "2016-07-14", "DescribeApiStage", "apigateway"); } private String groupId; private String stageId; public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public String getStageId() { return this.stageId; } public void setStageId(String stageId) { this.stageId = stageId; putQueryParameter("StageId", stageId); } @Override public Class<DescribeApiStageResponse> getResponseClass() { return DescribeApiStageResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiStageResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeApiStageResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeApiStageResponse extends AcsResponse { private String requestId; private String groupId; private String stageId; private String stageName; private String description; private String createdTime; private String modifiedTime; private List<VariableItem> variables; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getStageId() { return this.stageId; } public void setStageId(String stageId) { this.stageId = stageId; } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getCreatedTime() { return this.createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public String getModifiedTime() { return this.modifiedTime; } public void setModifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; } public List<VariableItem> getVariables() { return this.variables; } public void setVariables(List<VariableItem> variables) { this.variables = variables; } public static class VariableItem { private String variableName; private String variableValue; public String getVariableName() { return this.variableName; } public void setVariableName(String variableName) { this.variableName = variableName; } public String getVariableValue() { return this.variableValue; } public void setVariableValue(String variableValue) { this.variableValue = variableValue; } } @Override public DescribeApiStageResponse getInstance(UnmarshallerContext context) { return DescribeApiStageResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiTrafficControlsRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeApiTrafficControlsRequest extends RpcAcsRequest<DescribeApiTrafficControlsResponse> { public DescribeApiTrafficControlsRequest() { super("CloudAPI", "2016-07-14", "DescribeApiTrafficControls", "apigateway"); } private String stageName; private String groupId; private String apiIds; private Integer pageNumber; private Integer pageSize; public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; putQueryParameter("StageName", stageName); } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public String getApiIds() { return this.apiIds; } public void setApiIds(String apiIds) { this.apiIds = apiIds; putQueryParameter("ApiIds", apiIds); } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; putQueryParameter("PageNumber", pageNumber); } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; putQueryParameter("PageSize", pageSize); } @Override public Class<DescribeApiTrafficControlsResponse> getResponseClass() { return DescribeApiTrafficControlsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiTrafficControlsResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeApiTrafficControlsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeApiTrafficControlsResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<ApiTrafficControlItem> apiTrafficControls; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<ApiTrafficControlItem> getApiTrafficControls() { return this.apiTrafficControls; } public void setApiTrafficControls(List<ApiTrafficControlItem> apiTrafficControls) { this.apiTrafficControls = apiTrafficControls; } public static class ApiTrafficControlItem { private String apiId; private String apiName; private String trafficControlId; private String trafficControlName; private String boundTime; public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; } public String getTrafficControlId() { return this.trafficControlId; } public void setTrafficControlId(String trafficControlId) { this.trafficControlId = trafficControlId; } public String getTrafficControlName() { return this.trafficControlName; } public void setTrafficControlName(String trafficControlName) { this.trafficControlName = trafficControlName; } public String getBoundTime() { return this.boundTime; } public void setBoundTime(String boundTime) { this.boundTime = boundTime; } } @Override public DescribeApiTrafficControlsResponse getInstance(UnmarshallerContext context) { return DescribeApiTrafficControlsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiTrafficDataRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeApiTrafficDataRequest extends RpcAcsRequest<DescribeApiTrafficDataResponse> { public DescribeApiTrafficDataRequest() { super("CloudAPI", "2016-07-14", "DescribeApiTrafficData", "apigateway"); } private String apiId; private String groupId; private String startTime; private String endTime; public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; putQueryParameter("ApiId", apiId); } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; putQueryParameter("StartTime", startTime); } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; putQueryParameter("EndTime", endTime); } @Override public Class<DescribeApiTrafficDataResponse> getResponseClass() { return DescribeApiTrafficDataResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApiTrafficDataResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeApiTrafficDataResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create */ public class DescribeApiTrafficDataResponse extends AcsResponse { private String requestId; private List<MonitorItem> callUploads; private List<MonitorItem> callDownloads; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<MonitorItem> getCallUploads() { return this.callUploads; } public void setCallUploads(List<MonitorItem> callUploads) { this.callUploads = callUploads; } public List<MonitorItem> getCallDownloads() { return this.callDownloads; } public void setCallDownloads(List<MonitorItem> callDownloads) { this.callDownloads = callDownloads; } public static class MonitorItem { private String itemTime; private String itemValue; public String getItemTime() { return this.itemTime; } public void setItemTime(String itemTime) { this.itemTime = itemTime; } public String getItemValue() { return this.itemValue; } public void setItemValue(String itemValue) { this.itemValue = itemValue; } } @Override public DescribeApiTrafficDataResponse getInstance(UnmarshallerContext context) { return DescribeApiTrafficDataResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApisByAppRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeApisByAppRequest extends RpcAcsRequest<DescribeApisByAppResponse> { public DescribeApisByAppRequest() { super("CloudAPI", "2016-07-14", "DescribeApisByApp", "apigateway"); } private Long appId; private Integer pageSize; private Integer pageNumber; public Long getAppId() { return this.appId; } public void setAppId(Long appId) { this.appId = appId; if(appId != null){ putQueryParameter("AppId", appId.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } @Override public Class<DescribeApisByAppResponse> getResponseClass() { return DescribeApisByAppResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApisByAppResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeApisByAppResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * */ public class DescribeApisByAppResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<AppApiRelationInfo> appApiRelationInfos; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<AppApiRelationInfo> getAppApiRelationInfos() { return this.appApiRelationInfos; } public void setAppApiRelationInfos(List<AppApiRelationInfo> appApiRelationInfos) { this.appApiRelationInfos = appApiRelationInfos; } public static class AppApiRelationInfo { private String regionId; private String groupId; private String groupName; private String stageName; private String operator; private String apiId; private String apiName; private String authorizationSource; private String description; private String createdTime; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; } public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; } public String getAuthorizationSource() { return this.authorizationSource; } public void setAuthorizationSource(String authorizationSource) { this.authorizationSource = authorizationSource; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getCreatedTime() { return this.createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } } @Override public DescribeApisByAppResponse getInstance(UnmarshallerContext context) { return DescribeApisByAppResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApisByIpControlRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeApisByIpControlRequest extends RpcAcsRequest<DescribeApisByIpControlResponse> { public DescribeApisByIpControlRequest() { super("CloudAPI", "2016-07-14", "DescribeApisByIpControl", "apigateway"); } private String ipControlId; private Integer pageSize; private Integer pageNumber; public String getIpControlId() { return this.ipControlId; } public void setIpControlId(String ipControlId) { this.ipControlId = ipControlId; if(ipControlId != null){ putQueryParameter("IpControlId", ipControlId); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } @Override public Class<DescribeApisByIpControlResponse> getResponseClass() { return DescribeApisByIpControlResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApisByIpControlResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeApisByIpControlResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeApisByIpControlResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<ApiInfo> apiInfos; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<ApiInfo> getApiInfos() { return this.apiInfos; } public void setApiInfos(List<ApiInfo> apiInfos) { this.apiInfos = apiInfos; } public static class ApiInfo { private String regionId; private String groupId; private String groupName; private String stageName; private String apiId; private String apiName; private String description; private String visibility; private String boundTime; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getVisibility() { return this.visibility; } public void setVisibility(String visibility) { this.visibility = visibility; } public String getBoundTime() { return this.boundTime; } public void setBoundTime(String boundTime) { this.boundTime = boundTime; } } @Override public DescribeApisByIpControlResponse getInstance(UnmarshallerContext context) { return DescribeApisByIpControlResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApisBySignatureRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeApisBySignatureRequest extends RpcAcsRequest<DescribeApisBySignatureResponse> { public DescribeApisBySignatureRequest() { super("CloudAPI", "2016-07-14", "DescribeApisBySignature", "apigateway"); } private String signatureId; private Integer pageSize; private Integer pageNumber; public String getSignatureId() { return this.signatureId; } public void setSignatureId(String signatureId) { this.signatureId = signatureId; putQueryParameter("SignatureId", signatureId); } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; putQueryParameter("PageSize", pageSize); } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; putQueryParameter("PageNumber", pageNumber); } @Override public Class<DescribeApisBySignatureResponse> getResponseClass() { return DescribeApisBySignatureResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApisBySignatureResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeApisBySignatureResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeApisBySignatureResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<ApiInfo> apiInfos; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<ApiInfo> getApiInfos() { return this.apiInfos; } public void setApiInfos(List<ApiInfo> apiInfos) { this.apiInfos = apiInfos; } public static class ApiInfo { private String regionId; private String groupId; private String groupName; private String stageName; private String apiId; private String apiName; private String description; private String visibility; private String boundTime; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getVisibility() { return this.visibility; } public void setVisibility(String visibility) { this.visibility = visibility; } public String getBoundTime() { return this.boundTime; } public void setBoundTime(String boundTime) { this.boundTime = boundTime; } } @Override public DescribeApisBySignatureResponse getInstance(UnmarshallerContext context) { return DescribeApisBySignatureResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApisByTrafficControlRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeApisByTrafficControlRequest extends RpcAcsRequest<DescribeApisByTrafficControlResponse> { public DescribeApisByTrafficControlRequest() { super("CloudAPI", "2016-07-14", "DescribeApisByTrafficControl", "apigateway"); } private String trafficControlId; private Integer pageSize; private Integer pageNumber; public String getTrafficControlId() { return this.trafficControlId; } public void setTrafficControlId(String trafficControlId) { this.trafficControlId = trafficControlId; putQueryParameter("TrafficControlId", trafficControlId); } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; putQueryParameter("PageSize", pageSize); } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; putQueryParameter("PageNumber", pageNumber); } @Override public Class<DescribeApisByTrafficControlResponse> getResponseClass() { return DescribeApisByTrafficControlResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApisByTrafficControlResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeApisByTrafficControlResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeApisByTrafficControlResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<ApiInfo> apiInfos; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<ApiInfo> getApiInfos() { return this.apiInfos; } public void setApiInfos(List<ApiInfo> apiInfos) { this.apiInfos = apiInfos; } public static class ApiInfo { private String regionId; private String groupId; private String groupName; private String stageName; private String apiId; private String apiName; private String description; private String visibility; private String boundTime; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getVisibility() { return this.visibility; } public void setVisibility(String visibility) { this.visibility = visibility; } public String getBoundTime() { return this.boundTime; } public void setBoundTime(String boundTime) { this.boundTime = boundTime; } } @Override public DescribeApisByTrafficControlResponse getInstance(UnmarshallerContext context) { return DescribeApisByTrafficControlResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApisRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import java.util.List; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.cloudapi.openapi.sdk.entity.Tag; /** * @author auto create * */ public class DescribeApisRequest extends RpcAcsRequest<DescribeApisResponse> { public DescribeApisRequest() { super("CloudAPI", "2016-07-14", "DescribeApis", "apigateway"); } private String groupId; private String apiId; private String apiName; private String catalogId; private String visibility; private Integer pageSize; private Integer pageNumber; private Boolean enableTagAuth; private List<Tag> tags; public List<Tag> getTags() { return tags; } public void setTags(List<Tag> tags) { this.tags = tags; if (tags != null) { for (int i = 0; i < tags.size(); i++) { putQueryParameter("Tag." + (i + 1) + ".Value" , tags.get(i).getValue()); putQueryParameter("Tag." + (i + 1) + ".Key" , tags.get(i).getKey()); } } } public Boolean getEnableTagAuth() { return enableTagAuth; } public void setEnableTagAuth(Boolean enableTagAuth) { this.enableTagAuth = enableTagAuth; putQueryParameter("EnableTagAuth", enableTagAuth); } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; putQueryParameter("ApiId", apiId); } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; putQueryParameter("ApiName", apiName); } public String getCatalogId() { return this.catalogId; } public void setCatalogId(String catalogId) { this.catalogId = catalogId; putQueryParameter("CatalogId", catalogId); } public String getVisibility() { return this.visibility; } public void setVisibility(String visibility) { this.visibility = visibility; putQueryParameter("Visibility", visibility); } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; putQueryParameter("PageSize", pageSize); } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; putQueryParameter("PageNumber", pageNumber); } @Override public Class<DescribeApisResponse> getResponseClass() { return DescribeApisResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeApisResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeApisResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeApisResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<ApiSummary> apiSummarys; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<ApiSummary> getApiSummarys() { return this.apiSummarys; } public void setApiSummarys(List<ApiSummary> apiSummarys) { this.apiSummarys = apiSummarys; } public static class ApiSummary { private String regionId; private String groupId; private String groupName; private String apiId; private String apiName; private String visibility; private String description; private String createdTime; private String modifiedTime; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; } public String getVisibility() { return this.visibility; } public void setVisibility(String visibility) { this.visibility = visibility; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getCreatedTime() { return this.createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public String getModifiedTime() { return this.modifiedTime; } public void setModifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; } } @Override public DescribeApisResponse getInstance(UnmarshallerContext context) { return DescribeApisResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeAppAttributesRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import java.util.List; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.cloudapi.openapi.sdk.entity.Tag; /** * @author auto create */ public class DescribeAppAttributesRequest extends RpcAcsRequest<DescribeAppAttributesResponse> { public DescribeAppAttributesRequest() { super("CloudAPI", "2016-07-14", "DescribeAppAttributes", "apigateway"); } private Long appId; private String appName; private Integer pageNumber; private Integer pageSize; private List<Tag> tags; private Boolean enableTagAuth; public List<Tag> getTags() { return tags; } public void setTags(List<Tag> tags) { this.tags = tags; if (tags != null) { for (int i = 0; i < tags.size(); i++) { putQueryParameter("Tag." + (i + 1) + ".Value" , tags.get(i).getValue()); putQueryParameter("Tag." + (i + 1) + ".Key" , tags.get(i).getKey()); } } } public Long getAppId() { return this.appId; } public void setAppId(Long appId) { this.appId = appId; putQueryParameter("AppId", appId); } public String getAppName() { return appName; } public void setAppName(String appName) { this.appName = appName; putQueryParameter("AppName", appName); } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; putQueryParameter("PageNumber", pageNumber); } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; putQueryParameter("PageSize", pageSize); } public Boolean getEnableTagAuth() { return enableTagAuth; } public void setEnableTagAuth(Boolean enableTagAuth) { this.enableTagAuth = enableTagAuth; putQueryParameter("EnableTagAuth", enableTagAuth); } @Override public Class<DescribeAppAttributesResponse> getResponseClass() { return DescribeAppAttributesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeAppAttributesResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeAppAttributesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeAppAttributesResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<AppAttribute> apps; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<AppAttribute> getApps() { return this.apps; } public void setApps(List<AppAttribute> apps) { this.apps = apps; } public static class AppAttribute { private Long appId; private String appName; private String description; private String createdTime; private String modifiedTime; public Long getAppId() { return this.appId; } public void setAppId(Long appId) { this.appId = appId; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getCreatedTime() { return this.createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public String getModifiedTime() { return this.modifiedTime; } public void setModifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; } } @Override public DescribeAppAttributesResponse getInstance(UnmarshallerContext context) { return DescribeAppAttributesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeAppSecurityRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import java.util.List; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeAppSecurityRequest extends RpcAcsRequest<DescribeAppSecurityResponse> { public DescribeAppSecurityRequest() { super("CloudAPI", "2016-07-14", "DescribeAppSecurity", "apigateway"); } private Long appId; private List<Tag> tags; public Long getAppId() { return this.appId; } public void setAppId(Long appId) { this.appId = appId; putQueryParameter("AppId", appId); } public List<Tag> getTags() { return tags; } public void setTags(List<Tag> tags) { this.tags = tags; if (tags != null) { for (int i = 0; i < tags.size(); i++) { putQueryParameter("Tag." + (i + 1) + ".Value" , tags.get(i).getValue()); putQueryParameter("Tag." + (i + 1) + ".Key" , tags.get(i).getKey()); } } } @Override public Class<DescribeAppSecurityResponse> getResponseClass() { return DescribeAppSecurityResponse.class; } public static class Tag { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeAppSecurityResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeAppSecurityResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * */ public class DescribeAppSecurityResponse extends AcsResponse { private String requestId; private String appKey; private String appSecret; private String appCode; private String createdTime; private String modifiedTime; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getAppKey() { return this.appKey; } public void setAppKey(String appKey) { this.appKey = appKey; } public String getAppSecret() { return this.appSecret; } public void setAppSecret(String appSecret) { this.appSecret = appSecret; } public String getCreatedTime() { return this.createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public String getModifiedTime() { return this.modifiedTime; } public void setModifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; } public String getAppCode() { return appCode; } public void setAppCode(String appCode) { this.appCode = appCode; } @Override public DescribeAppSecurityResponse getInstance(UnmarshallerContext context) { return DescribeAppSecurityResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeAppsRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeAppsRequest extends RpcAcsRequest<DescribeAppsResponse> { public DescribeAppsRequest() { super("CloudAPI", "2016-07-14", "DescribeApps", "apigateway"); } private Long appId; private String appOwner; private Integer pageNumber; private Integer pageSize; public Long getAppId() { return this.appId; } public void setAppId(Long appId) { this.appId = appId; putQueryParameter("AppId", appId); } public String getAppOwner() { return this.appOwner; } public void setAppOwner(String appOwner) { this.appOwner = appOwner; putQueryParameter("AppOwner", appOwner); } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; putQueryParameter("PageNumber", pageNumber); } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; putQueryParameter("PageSize", pageSize); } @Override public Class<DescribeAppsResponse> getResponseClass() { return DescribeAppsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeAppsResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeAppsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeAppsResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<AppItem> apps; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<AppItem> getApps() { return this.apps; } public void setApps(List<AppItem> apps) { this.apps = apps; } public static class AppItem { private Long appId; private String appName; private String description; public Long getAppId() { return this.appId; } public void setAppId(Long appId) { this.appId = appId; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } } @Override public DescribeAppsResponse getInstance(UnmarshallerContext context) { return DescribeAppsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeAuthorizedApisRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create */ public class DescribeAuthorizedApisRequest extends RpcAcsRequest<DescribeAuthorizedApisResponse> { public DescribeAuthorizedApisRequest() { super("CloudAPI", "2016-07-14", "DescribeAuthorizedApis", "apigateway"); } private Long appId; private Integer pageNumber; private Integer pageSize; public Long getAppId() { return this.appId; } public void setAppId(Long appId) { this.appId = appId; putQueryParameter("AppId", appId); } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; putQueryParameter("PageNumber", pageNumber); } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; putQueryParameter("PageSize", pageSize); } @Override public Class<DescribeAuthorizedApisResponse> getResponseClass() { return DescribeAuthorizedApisResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeAuthorizedApisResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeAuthorizedApisResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeAuthorizedApisResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<AuthorizedApi> authorizedApis; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<AuthorizedApi> getAuthorizedApis() { return this.authorizedApis; } public void setAuthorizedApis(List<AuthorizedApi> authorizedApis) { this.authorizedApis = authorizedApis; } public static class AuthorizedApi { private String regionId; private String groupId; private String groupName; private String stageName; private String operator; private String apiId; private String apiName; private String authorizationSource; private String description; private String authorizedTime; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; } public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; } public String getAuthorizationSource() { return this.authorizationSource; } public void setAuthorizationSource(String authorizationSource) { this.authorizationSource = authorizationSource; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getAuthorizedTime() { return this.authorizedTime; } public void setAuthorizedTime(String authorizedTime) { this.authorizedTime = authorizedTime; } } @Override public DescribeAuthorizedApisResponse getInstance(UnmarshallerContext context) { return DescribeAuthorizedApisResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeAuthorizedAppsRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeAuthorizedAppsRequest extends RpcAcsRequest<DescribeAuthorizedAppsResponse> { public DescribeAuthorizedAppsRequest() { super("CloudAPI", "2016-07-14", "DescribeAuthorizedApps", "apigateway"); } private String groupId; private String stageName; private String apiId; private Integer pageNumber; private Integer pageSize; public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; putQueryParameter("StageName", stageName); } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; putQueryParameter("ApiId", apiId); } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; putQueryParameter("PageNumber", pageNumber); } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; putQueryParameter("PageSize", pageSize); } @Override public Class<DescribeAuthorizedAppsResponse> getResponseClass() { return DescribeAuthorizedAppsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeAuthorizedAppsResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeAuthorizedAppsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeAuthorizedAppsResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<AuthorizedApp> authorizedApps; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<AuthorizedApp> getAuthorizedApps() { return this.authorizedApps; } public void setAuthorizedApps(List<AuthorizedApp> authorizedApps) { this.authorizedApps = authorizedApps; } public static class AuthorizedApp { private String stageName; private Long appId; private String appName; private String operator; private String authorizationSource; private String description; private String authorizedTime; public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; } public Long getAppId() { return this.appId; } public void setAppId(Long appId) { this.appId = appId; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } public String getAuthorizationSource() { return this.authorizationSource; } public void setAuthorizationSource(String authorizationSource) { this.authorizationSource = authorizationSource; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getAuthorizedTime() { return this.authorizedTime; } public void setAuthorizedTime(String authorizedTime) { this.authorizedTime = authorizedTime; } } @Override public DescribeAuthorizedAppsResponse getInstance(UnmarshallerContext context) { return DescribeAuthorizedAppsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeCatalogRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeCatalogRequest extends RpcAcsRequest<DescribeCatalogResponse> { public DescribeCatalogRequest() { super("CloudAPI", "2016-07-14", "DescribeCatalog", "apigateway"); } private String catalogId; public String getCatalogId() { return this.catalogId; } public void setCatalogId(String catalogId) { this.catalogId = catalogId; putQueryParameter("CatalogId", catalogId); } @Override public Class<DescribeCatalogResponse> getResponseClass() { return DescribeCatalogResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeCatalogResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeCatalogResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeCatalogResponse extends AcsResponse { private String requestId; private String catalogId; private String catalogName; private String description; private String parentId; private String createdTime; private String modifiedTime; private String regionId; private List<String> apiIds; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getCatalogId() { return this.catalogId; } public void setCatalogId(String catalogId) { this.catalogId = catalogId; } public String getCatalogName() { return this.catalogName; } public void setCatalogName(String catalogName) { this.catalogName = catalogName; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getParentId() { return this.parentId; } public void setParentId(String parentId) { this.parentId = parentId; } public String getCreatedTime() { return this.createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public String getModifiedTime() { return this.modifiedTime; } public void setModifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public List<String> getApiIds() { return this.apiIds; } public void setApiIds(List<String> apiIds) { this.apiIds = apiIds; } @Override public DescribeCatalogResponse getInstance(UnmarshallerContext context) { return DescribeCatalogResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeCatalogsRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeCatalogsRequest extends RpcAcsRequest<DescribeCatalogsResponse> { public DescribeCatalogsRequest() { super("CloudAPI", "2016-07-14", "DescribeCatalogs", "apigateway"); } @Override public Class<DescribeCatalogsResponse> getResponseClass() { return DescribeCatalogsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeCatalogsResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeCatalogsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeCatalogsResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<CatalogAttribute> catalogAttributes; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<CatalogAttribute> getCatalogAttributes() { return this.catalogAttributes; } public void setCatalogAttributes(List<CatalogAttribute> catalogAttributes) { this.catalogAttributes = catalogAttributes; } public static class CatalogAttribute { private String catalogId; private String catalogName; private String description; private String parentId; private String createdTime; private String modifiedTime; private String regionId; public String getCatalogId() { return this.catalogId; } public void setCatalogId(String catalogId) { this.catalogId = catalogId; } public String getCatalogName() { return this.catalogName; } public void setCatalogName(String catalogName) { this.catalogName = catalogName; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getParentId() { return this.parentId; } public void setParentId(String parentId) { this.parentId = parentId; } public String getCreatedTime() { return this.createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public String getModifiedTime() { return this.modifiedTime; } public void setModifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } } @Override public DescribeCatalogsResponse getInstance(UnmarshallerContext context) { return DescribeCatalogsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeDeployedApiRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeDeployedApiRequest extends RpcAcsRequest<DescribeDeployedApiResponse> { public DescribeDeployedApiRequest() { super("CloudAPI", "2016-07-14", "DescribeDeployedApi", "apigateway"); } private String groupId; private String apiId; private String stageName; public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; putQueryParameter("ApiId", apiId); } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; putQueryParameter("StageName", stageName); } @Override public Class<DescribeDeployedApiResponse> getResponseClass() { return DescribeDeployedApiResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeDeployedApiResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.model.v20160714.DescribeApiResponse.*; import com.aliyuncs.cloudapi.transform.v20160714.DescribeDeployedApiResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeDeployedApiResponse extends AcsResponse { private String requestId; private String regionId; private String groupId; private String groupName; private String stageName; private String apiId; private String apiName; private String description; private String visibility; private String authType; private Boolean forceNonceCheck; private Boolean disableInternet; private String resultType; private String resultSample; private String failResultSample; private String deployedTime; private String allowSignatureMethod; private String resultBodyModel; private List<ErrorCodeSample> errorCodeSamples; private List<SystemParameter> systemParameters; private List<SystemParameter> customSystemParameters; private List<ConstantParameter> constantParameters; private List<RequestParameter> requestParameters; private List<ServiceParameter> serviceParameters; private List<ServiceParameterMap> serviceParametersMap; private RequestConfig requestConfig; private ServiceConfig serviceConfig; private OpenIdConnectConfig openIdConnectConfig; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getVisibility() { return this.visibility; } public void setVisibility(String visibility) { this.visibility = visibility; } public String getAuthType() { return this.authType; } public void setAuthType(String authType) { this.authType = authType; } public String getResultType() { return this.resultType; } public void setResultType(String resultType) { this.resultType = resultType; } public String getResultSample() { return this.resultSample; } public void setResultSample(String resultSample) { this.resultSample = resultSample; } public String getDeployedTime() { return this.deployedTime; } public void setDeployedTime(String deployedTime) { this.deployedTime = deployedTime; } public String getAllowSignatureMethod() { return allowSignatureMethod; } public String getResultBodyModel() { return resultBodyModel; } public void setResultBodyModel(String resultBodyModel) { this.resultBodyModel = resultBodyModel; } public void setAllowSignatureMethod(String allowSignatureMethod) { this.allowSignatureMethod = allowSignatureMethod; } public List<SystemParameter> getSystemParameters() { return this.systemParameters; } public void setSystemParameters(List<SystemParameter> systemParameters) { this.systemParameters = systemParameters; } public List<ConstantParameter> getConstantParameters() { return this.constantParameters; } public void setConstantParameters(List<ConstantParameter> constantParameters) { this.constantParameters = constantParameters; } public List<RequestParameter> getRequestParameters() { return this.requestParameters; } public void setRequestParameters(List<RequestParameter> requestParameters) { this.requestParameters = requestParameters; } public List<ServiceParameter> getServiceParameters() { return this.serviceParameters; } public void setServiceParameters(List<ServiceParameter> serviceParameters) { this.serviceParameters = serviceParameters; } public List<ServiceParameterMap> getServiceParametersMap() { return this.serviceParametersMap; } public void setServiceParametersMap(List<ServiceParameterMap> serviceParametersMap) { this.serviceParametersMap = serviceParametersMap; } public RequestConfig getRequestConfig() { return this.requestConfig; } public void setRequestConfig(RequestConfig requestConfig) { this.requestConfig = requestConfig; } public ServiceConfig getServiceConfig() { return this.serviceConfig; } public void setServiceConfig(ServiceConfig serviceConfig) { this.serviceConfig = serviceConfig; } public String getFailResultSample() { return failResultSample; } public void setFailResultSample(String failResultSample) { this.failResultSample = failResultSample; } public List<ErrorCodeSample> getErrorCodeSamples() { return errorCodeSamples; } public void setErrorCodeSamples(List<ErrorCodeSample> errorCodeSamples) { this.errorCodeSamples = errorCodeSamples; } public List<SystemParameter> getCustomSystemParameters() { return customSystemParameters; } public void setCustomSystemParameters(List<SystemParameter> customSystemParameters) { this.customSystemParameters = customSystemParameters; } public OpenIdConnectConfig getOpenIdConnectConfig() { return openIdConnectConfig; } public void setOpenIdConnectConfig(OpenIdConnectConfig openIdConnectConfig) { this.openIdConnectConfig = openIdConnectConfig; } public Boolean getForceNonceCheck() { return forceNonceCheck; } public void setForceNonceCheck(Boolean forceNonceCheck) { this.forceNonceCheck = forceNonceCheck; } public Boolean getDisableInternet() { return disableInternet; } public void setDisableInternet(Boolean disableInternet) { this.disableInternet = disableInternet; } @Override public DescribeDeployedApiResponse getInstance(UnmarshallerContext context) { return DescribeDeployedApiResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeDeployedApisRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import java.util.List; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.cloudapi.openapi.sdk.entity.Tag; /** * @author auto create * */ public class DescribeDeployedApisRequest extends RpcAcsRequest<DescribeDeployedApisResponse> { public DescribeDeployedApisRequest() { super("CloudAPI", "2016-07-14", "DescribeDeployedApis", "apigateway"); } private String groupId; private String stageName; private String apiId; private String apiName; private Integer pageNumber; private Integer pageSize; private Boolean enableTagAuth; private List<Tag> tags; public List<Tag> getTags() { return tags; } public void setTags(List<Tag> tags) { this.tags = tags; if (tags != null) { for (int i = 0; i < tags.size(); i++) { putQueryParameter("Tag." + (i + 1) + ".Value" , tags.get(i).getValue()); putQueryParameter("Tag." + (i + 1) + ".Key" , tags.get(i).getKey()); } } } public Boolean getEnableTagAuth() { return enableTagAuth; } public void setEnableTagAuth(Boolean enableTagAuth) { this.enableTagAuth = enableTagAuth; putQueryParameter("EnableTagAuth", enableTagAuth); } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; putQueryParameter("StageName", stageName); } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; putQueryParameter("ApiId", apiId); } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; putQueryParameter("ApiName", apiName); } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; putQueryParameter("PageNumber", pageNumber); } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; putQueryParameter("PageSize", pageSize); } @Override public Class<DescribeDeployedApisResponse> getResponseClass() { return DescribeDeployedApisResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeDeployedApisResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeDeployedApisResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create */ public class DescribeDeployedApisResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<DeployedApiItem> deployedApis; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<DeployedApiItem> getDeployedApis() { return this.deployedApis; } public void setDeployedApis(List<DeployedApiItem> deployedApis) { this.deployedApis = deployedApis; } public static class DeployedApiItem { private String regionId; private String apiId; private String apiName; private String groupId; private String groupName; private String stageName; private String visibility; private String description; private String deployedTime; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; } public String getVisibility() { return this.visibility; } public void setVisibility(String visibility) { this.visibility = visibility; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getDeployedTime() { return this.deployedTime; } public void setDeployedTime(String deployedTime) { this.deployedTime = deployedTime; } } @Override public DescribeDeployedApisResponse getInstance(UnmarshallerContext context) { return DescribeDeployedApisResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeDomainRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeDomainRequest extends RpcAcsRequest<DescribeDomainResponse> { public DescribeDomainRequest() { super("CloudAPI", "2016-07-14", "DescribeDomain", "apigateway"); } private String groupId; private String domainName; public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; putQueryParameter("DomainName", domainName); } @Override public Class<DescribeDomainResponse> getResponseClass() { return DescribeDomainResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeDomainResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeDomainResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * */ public class DescribeDomainResponse extends AcsResponse { private String requestId; private String groupId; private String domainName; private String subDomain; private String certificateId; private String certificateName; private String certificateBody; private String certificatePrivateKey; private String domainBindingStatus; private String domainCNAMEStatus; private String domainLegalStatus; private String domainRemark; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public String getSubDomain() { return this.subDomain; } public void setSubDomain(String subDomain) { this.subDomain = subDomain; } public String getCertificateId() { return this.certificateId; } public void setCertificateId(String certificateId) { this.certificateId = certificateId; } public String getCertificateName() { return this.certificateName; } public void setCertificateName(String certificateName) { this.certificateName = certificateName; } public String getCertificateBody() { return this.certificateBody; } public void setCertificateBody(String certificateBody) { this.certificateBody = certificateBody; } public String getCertificatePrivateKey() { return this.certificatePrivateKey; } public void setCertificatePrivateKey(String certificatePrivateKey) { this.certificatePrivateKey = certificatePrivateKey; } public String getDomainBindingStatus() { return this.domainBindingStatus; } public void setDomainBindingStatus(String domainBindingStatus) { this.domainBindingStatus = domainBindingStatus; } public String getDomainCNAMEStatus() { return this.domainCNAMEStatus; } public void setDomainCNAMEStatus(String domainCNAMEStatus) { this.domainCNAMEStatus = domainCNAMEStatus; } public String getDomainRemark() { return domainRemark; } public void setDomainRemark(String domainRemark) { this.domainRemark = domainRemark; } public String getDomainLegalStatus() { return domainLegalStatus; } public void setDomainLegalStatus(String domainLegalStatus) { this.domainLegalStatus = domainLegalStatus; } @Override public DescribeDomainResponse getInstance(UnmarshallerContext context) { return DescribeDomainResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeDomainsResolutionRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeDomainsResolutionRequest extends RpcAcsRequest<DescribeDomainsResolutionResponse> { public DescribeDomainsResolutionRequest() { super("CloudAPI", "2016-07-14", "DescribeDomainsResolution", "apigateway"); } private String groupId; private String domainNames; public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public String getDomainNames() { return this.domainNames; } public void setDomainNames(String domainNames) { this.domainNames = domainNames; putQueryParameter("DomainNames", domainNames); } @Override public Class<DescribeDomainsResolutionResponse> getResponseClass() { return DescribeDomainsResolutionResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeDomainsResolutionResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeDomainsResolutionResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeDomainsResolutionResponse extends AcsResponse { private String requestId; private String groupId; private List<DomainResolution> domainResolutions; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public List<DomainResolution> getDomainResolutions() { return this.domainResolutions; } public void setDomainResolutions(List<DomainResolution> domainResolutions) { this.domainResolutions = domainResolutions; } public static class DomainResolution { private String domainName; private String domainResolutionStatus; public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public String getDomainResolutionStatus() { return this.domainResolutionStatus; } public void setDomainResolutionStatus(String domainResolutionStatus) { this.domainResolutionStatus = domainResolutionStatus; } } @Override public DescribeDomainsResolutionResponse getInstance(UnmarshallerContext context) { return DescribeDomainsResolutionResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeHistoryApisRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeHistoryApisRequest extends RpcAcsRequest<DescribeHistoryApisResponse> { public DescribeHistoryApisRequest() { super("CloudAPI", "2016-07-14", "DescribeHistoryApis", "apigateway"); } private String groupId; private String stageName; private String apiId; private String apiName; private String pageSize; private String pageNumber; public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; putQueryParameter("StageName", stageName); } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; putQueryParameter("ApiId", apiId); } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; putQueryParameter("ApiName", apiName); } public String getPageSize() { return this.pageSize; } public void setPageSize(String pageSize) { this.pageSize = pageSize; putQueryParameter("PageSize", pageSize); } public String getPageNumber() { return this.pageNumber; } public void setPageNumber(String pageNumber) { this.pageNumber = pageNumber; putQueryParameter("PageNumber", pageNumber); } @Override public Class<DescribeHistoryApisResponse> getResponseClass() { return DescribeHistoryApisResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeHistoryApisResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeHistoryApisResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeHistoryApisResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<ApiHisItem> apiHisItems; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<ApiHisItem> getApiHisItems() { return this.apiHisItems; } public void setApiHisItems(List<ApiHisItem> apiHisItems) { this.apiHisItems = apiHisItems; } public static class ApiHisItem { private String regionId; private String apiId; private String apiName; private String groupId; private String groupName; private String stageName; private String historyVersion; private Status status; private String description; private String deployedTime; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; } public String getHistoryVersion() { return this.historyVersion; } public void setHistoryVersion(String historyVersion) { this.historyVersion = historyVersion; } public Status getStatus() { return this.status; } public void setStatus(Status status) { this.status = status; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getDeployedTime() { return this.deployedTime; } public void setDeployedTime(String deployedTime) { this.deployedTime = deployedTime; } public enum Status { OFFLINE("OFFLINE"), ONLINE("ONLINE"); private String stringValue; Status(String stringValue) { setStringValue(stringValue); } public String getStringValue() { return stringValue; } public void setStringValue(String stringValue) { this.stringValue = stringValue; } public static Status getEnum(String stringValue){ if(null == stringValue){ return null; } for (Status status : Status.values()) { if(status.getStringValue().equals(stringValue)){ return status; } } return null; } } } @Override public DescribeHistoryApisResponse getInstance(UnmarshallerContext context) { return DescribeHistoryApisResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeInstancesRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeInstancesRequest extends RpcAcsRequest<DescribeInstancesResponse> { public DescribeInstancesRequest() { super("CloudAPI", "2016-07-14", "DescribeInstances", "apigateway"); } private String instanceId; private String language; public String getInstanceId() { return instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; putQueryParameter("InstanceId", instanceId); } public String getLanguage() { return language; } public void setLanguage(String language) { this.language = language; putQueryParameter("Language", language); } @Override public Class<DescribeInstancesResponse> getResponseClass() { return DescribeInstancesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeInstancesResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeHistoryApisResponseUnmarshaller; import com.aliyuncs.cloudapi.transform.v20160714.DescribeInstancesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create */ public class DescribeInstancesResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<InstanceAttribute> instances; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<InstanceAttribute> getInstances() { return instances; } public void setInstances( List<InstanceAttribute> instances) { this.instances = instances; } public static class InstanceAttribute { private String instanceId; private String instanceType; private String instanceSpec; private String instanceName; private String status; private String createdTime; private String internetEgressAddress; private String vpcEgressAddress; private String classicEgressAddress; private String expiredTime; private String httpsPolicy; public String getInstanceId() { return instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getInstanceType() { return instanceType; } public void setInstanceType(String instanceType) { this.instanceType = instanceType; } public String getInstanceSpec() { return instanceSpec; } public void setInstanceSpec(String instanceSpec) { this.instanceSpec = instanceSpec; } public String getInstanceName() { return instanceName; } public void setInstanceName(String instanceName) { this.instanceName = instanceName; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public String getCreatedTime() { return createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public String getInternetEgressAddress() { return internetEgressAddress; } public void setInternetEgressAddress(String internetEgressAddress) { this.internetEgressAddress = internetEgressAddress; } public String getVpcEgressAddress() { return vpcEgressAddress; } public void setVpcEgressAddress(String vpcEgressAddress) { this.vpcEgressAddress = vpcEgressAddress; } public String getClassicEgressAddress() { return classicEgressAddress; } public void setClassicEgressAddress(String classicEgressAddress) { this.classicEgressAddress = classicEgressAddress; } public String getExpiredTime() { return expiredTime; } public void setExpiredTime(String expiredTime) { this.expiredTime = expiredTime; } public String getHttpsPolicy() { return httpsPolicy; } public void setHttpsPolicy(String httpsPolicy) { this.httpsPolicy = httpsPolicy; } } @Override public DescribeInstancesResponse getInstance(UnmarshallerContext context) { return DescribeInstancesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeIpControlPolicyItemsRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeIpControlPolicyItemsRequest extends RpcAcsRequest<DescribeIpControlPolicyItemsResponse> { public DescribeIpControlPolicyItemsRequest() { super("CloudAPI", "2016-07-14", "DescribeIpControlPolicyItems", "apigateway"); } private String ipControlId; private String policyItemId; private Integer pageSize; private Integer pageNumber; public String getIpControlId() { return this.ipControlId; } public void setIpControlId(String ipControlId) { this.ipControlId = ipControlId; if(ipControlId != null){ putQueryParameter("IpControlId", ipControlId); } } public String getPolicyItemId() { return this.policyItemId; } public void setPolicyItemId(String policyItemId) { this.policyItemId = policyItemId; if(policyItemId != null){ putQueryParameter("PolicyItemId", policyItemId); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } @Override public Class<DescribeIpControlPolicyItemsResponse> getResponseClass() { return DescribeIpControlPolicyItemsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeIpControlPolicyItemsResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeIpControlPolicyItemsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeIpControlPolicyItemsResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<IpControlPolicyItem> ipControlPolicyItems; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<IpControlPolicyItem> getIpControlPolicyItems() { return this.ipControlPolicyItems; } public void setIpControlPolicyItems(List<IpControlPolicyItem> ipControlPolicyItems) { this.ipControlPolicyItems = ipControlPolicyItems; } public static class IpControlPolicyItem { private String appId; private String cidrIp; private String policyItemId; private String createTime; private String modifiedTime; public String getAppId() { return this.appId; } public void setAppId(String appId) { this.appId = appId; } public String getCidrIp() { return this.cidrIp; } public void setCidrIp(String cidrIp) { this.cidrIp = cidrIp; } public String getPolicyItemId() { return this.policyItemId; } public void setPolicyItemId(String policyItemId) { this.policyItemId = policyItemId; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getModifiedTime() { return this.modifiedTime; } public void setModifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; } } @Override public DescribeIpControlPolicyItemsResponse getInstance(UnmarshallerContext context) { return DescribeIpControlPolicyItemsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeIpControlsRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create */ public class DescribeIpControlsRequest extends RpcAcsRequest<DescribeIpControlsResponse> { public DescribeIpControlsRequest() { super("CloudAPI", "2016-07-14", "DescribeIpControls", "apigateway"); } private String ipControlId; private String ipControlName; private String ipControlType; private Integer pageSize; private Integer pageNumber; public String getIpControlId() { return this.ipControlId; } public void setIpControlId(String ipControlId) { this.ipControlId = ipControlId; if(ipControlId != null){ putQueryParameter("IpControlId", ipControlId); } } public String getIpControlName() { return this.ipControlName; } public void setIpControlName(String ipControlName) { this.ipControlName = ipControlName; if(ipControlName != null){ putQueryParameter("IpControlName", ipControlName); } } public String getIpControlType() { return this.ipControlType; } public void setIpControlType(String ipControlType) { this.ipControlType = ipControlType; if(ipControlType != null){ putQueryParameter("IpControlType", ipControlType); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } @Override public Class<DescribeIpControlsResponse> getResponseClass() { return DescribeIpControlsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeIpControlsResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeIpControlsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeIpControlsResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<IpControlInfo> ipControlInfos; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<IpControlInfo> getIpControlInfos() { return this.ipControlInfos; } public void setIpControlInfos(List<IpControlInfo> ipControlInfos) { this.ipControlInfos = ipControlInfos; } public static class IpControlInfo { private String ipControlId; private String ipControlName; private String ipControlType; private String description; private String createTime; private String modifiedTime; private String regionId; public String getIpControlId() { return this.ipControlId; } public void setIpControlId(String ipControlId) { this.ipControlId = ipControlId; } public String getIpControlName() { return this.ipControlName; } public void setIpControlName(String ipControlName) { this.ipControlName = ipControlName; } public String getIpControlType() { return this.ipControlType; } public void setIpControlType(String ipControlType) { this.ipControlType = ipControlType; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getModifiedTime() { return this.modifiedTime; } public void setModifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } } @Override public DescribeIpControlsResponse getInstance(UnmarshallerContext context) { return DescribeIpControlsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeLogConfigRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeLogConfigRequest extends RpcAcsRequest<DescribeLogConfigResponse> { public DescribeLogConfigRequest() { super("CloudAPI", "2016-07-14", "DescribeLogConfig", "apigateway"); } private String logType; public String getLogType() { return this.logType; } public void setLogType(String logType) { this.logType = logType; if(logType != null){ putQueryParameter("LogType", logType); } } @Override public Class<DescribeLogConfigResponse> getResponseClass() { return DescribeLogConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeLogConfigResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeLogConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeLogConfigResponse extends AcsResponse { private String requestId; private List<LogInfo> logInfos; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<LogInfo> getLogInfos() { return this.logInfos; } public void setLogInfos(List<LogInfo> logInfos) { this.logInfos = logInfos; } public static class LogInfo { private String regionId; private String slsProject; private String slsLogStore; private String logType; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getSlsProject() { return this.slsProject; } public void setSlsProject(String slsProject) { this.slsProject = slsProject; } public String getSlsLogStore() { return this.slsLogStore; } public void setSlsLogStore(String slsLogStore) { this.slsLogStore = slsLogStore; } public String getLogType() { return this.logType; } public void setLogType(String logType) { this.logType = logType; } } @Override public DescribeLogConfigResponse getInstance(UnmarshallerContext context) { return DescribeLogConfigResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeModelsRequest.java
package com.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; public class DescribeModelsRequest extends RpcAcsRequest<DescribeModelsResponse> { public DescribeModelsRequest() { super("CloudAPI", "2016-07-14", "DescribeModels", "apigateway"); } private String groupId; private String modelName; private String modelId; private Integer pageNumber; private Integer pageSize; public String getGroupId() { return groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId",groupId); } public String getModelName() { return modelName; } public void setModelName(String modelName) { this.modelName = modelName; putQueryParameter("ModelName",modelName); } public String getModelId() { return modelId; } public void setModelId(String modelId) { this.modelId = modelId; putQueryParameter("ModelId",modelId); } public Integer getPageNumber() { return pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; putQueryParameter("PageNumber",pageNumber); } public Integer getPageSize() { return pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; putQueryParameter("PageSize",pageSize); } @Override public Class<DescribeModelsResponse> getResponseClass() { return DescribeModelsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeModelsResponse.java
package com.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeModelsResponseUnmarshaller; import com.aliyuncs.exceptions.ClientException; import com.aliyuncs.exceptions.ServerException; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; public class DescribeModelsResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<ModelDetail> modelDetails; public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<ModelDetail> getModelDetails() { return modelDetails; } public void setModelDetails(List<ModelDetail> modelDetails) { this.modelDetails = modelDetails; } public static class ModelDetail { private String groupId; private String modelId; private String modelName; private String schema; private String description; private String createdTime; private String modifiedTime; private String modelRef; public String getGroupId() { return groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getModelId() { return modelId; } public void setModelId(String modelId) { this.modelId = modelId; } public String getModelName() { return modelName; } public void setModelName(String modelName) { this.modelName = modelName; } public String getSchema() { return schema; } public void setSchema(String schema) { this.schema = schema; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getCreatedTime() { return createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public String getModifiedTime() { return modifiedTime; } public void setModifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; } public String getModelRef() { return modelRef; } public void setModelRef(String modelRef) { this.modelRef = modelRef; } } @Override public AcsResponse getInstance(UnmarshallerContext context) throws ClientException, ServerException { return DescribeModelsResponseUnmarshaller.unmarshall(this,context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribePluginApisRequest.java
package com.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create */ public class DescribePluginApisRequest extends RpcAcsRequest<DescribePluginApisResponse> { public DescribePluginApisRequest() { super("CloudAPI", "2016-07-14", "DescribePluginApis", "apigateway"); } private String pluginId; private Integer pageSize; private Integer pageNumber; public String getPluginId() { return pluginId; } public void setPluginId(String pluginId) { this.pluginId = pluginId; putQueryParameter("PluginId",pluginId); } public Integer getPageSize() { return pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; putQueryParameter("PageSize", pageSize); } public Integer getPageNumber() { return pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; putQueryParameter("PageNumber", pageNumber); } @Override public Class<DescribePluginApisResponse> getResponseClass() { return DescribePluginApisResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribePluginApisResponse.java
package com.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.CreatePluginResponseUnmarshaller; import com.aliyuncs.cloudapi.transform.v20160714.DescribePluginApisResponseUnmarshaller; import com.aliyuncs.exceptions.ClientException; import com.aliyuncs.exceptions.ServerException; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribePluginApisResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<ApiPluginSummary> apiPluginSummaries; public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<ApiPluginSummary> getApiPluginSummaries() { return apiPluginSummaries; } public void setApiPluginSummaries( List<ApiPluginSummary> apiPluginSummaries) { this.apiPluginSummaries = apiPluginSummaries; } public static class ApiPluginSummary{ private String regionId; private String groupId; private String groupName; private String stageName; private String apiId; private String apiName; private String description; private String path; private String method; public String getRegionId() { return regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getGroupId() { return groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getStageName() { return stageName; } public void setStageName(String stageName) { this.stageName = stageName; } public String getApiId() { return apiId; } public void setApiId(String apiId) { this.apiId = apiId; } public String getApiName() { return apiName; } public void setApiName(String apiName) { this.apiName = apiName; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } public String getMethod() { return method; } public void setMethod(String method) { this.method = method; } } @Override public AcsResponse getInstance(UnmarshallerContext unmarshallerContext) throws ClientException, ServerException { return DescribePluginApisResponseUnmarshaller.unmarshall(this,unmarshallerContext); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribePluginsByApiRequest.java
package com.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribePluginsByApiRequest extends RpcAcsRequest<DescribePluginsByApiResponse> { public DescribePluginsByApiRequest() { super("CloudAPI", "2016-07-14", "DescribePluginsByApi", "apigateway"); } private String groupId; private String stageName; private String apiId; public String getGroupId() { return groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId",groupId); } public String getStageName() { return stageName; } public void setStageName(String stageName) { this.stageName = stageName; putQueryParameter("StageName",stageName); } public String getApiId() { return apiId; } public void setApiId(String apiId) { this.apiId = apiId; putQueryParameter("ApiId",apiId); } @Override public Class<DescribePluginsByApiResponse> getResponseClass() { return DescribePluginsByApiResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribePluginsByApiResponse.java
package com.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribePluginApisResponseUnmarshaller; import com.aliyuncs.cloudapi.transform.v20160714.DescribePluginsByApiResponseUnmarshaller; import com.aliyuncs.exceptions.ClientException; import com.aliyuncs.exceptions.ServerException; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribePluginsByApiResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<DescribePluginsResponse.PluginAttribute> plugins; public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<DescribePluginsResponse.PluginAttribute> getPlugins() { return plugins; } public void setPlugins(List<DescribePluginsResponse.PluginAttribute> plugins) { this.plugins = plugins; } @Override public AcsResponse getInstance(UnmarshallerContext unmarshallerContext) throws ClientException, ServerException { return DescribePluginsByApiResponseUnmarshaller.unmarshall(this,unmarshallerContext); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribePluginsRequest.java
package com.aliyuncs.cloudapi.model.v20160714; import java.util.List; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.cloudapi.openapi.sdk.entity.Tag; /** * @author auto create */ public class DescribePluginsRequest extends RpcAcsRequest<DescribePluginsResponse> { public DescribePluginsRequest() { super("CloudAPI", "2016-07-14", "DescribePlugins", "apigateway"); } private String pluginId; private String pluginType; private String pluginName; private Integer pageNumber; private Integer pageSize; private List<Tag> tags; public List<Tag> getTags() { return tags; } public void setTags(List<Tag> tags) { this.tags = tags; if (tags != null) { for (int i = 0; i < tags.size(); i++) { putQueryParameter("Tag." + (i + 1) + ".Value" , tags.get(i).getValue()); putQueryParameter("Tag." + (i + 1) + ".Key" , tags.get(i).getKey()); } } } public String getPluginId() { return pluginId; } public void setPluginId(String pluginId) { this.pluginId = pluginId; putQueryParameter("PluginId",pluginId); } public String getPluginType() { return pluginType; } public void setPluginType(String pluginType) { this.pluginType = pluginType; putQueryParameter("PluginType",pluginType); } public String getPluginName() { return pluginName; } public void setPluginName(String pluginName) { this.pluginName = pluginName; putQueryParameter("PluginName",pluginName); } public Integer getPageNumber() { return pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; putQueryParameter("PageNumber",pageNumber); } public Integer getPageSize() { return pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; putQueryParameter("PageSize",pageSize); } @Override public Class<DescribePluginsResponse> getResponseClass() { return DescribePluginsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribePluginsResponse.java
package com.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribePluginApisResponseUnmarshaller; import com.aliyuncs.cloudapi.transform.v20160714.DescribePluginsResponseUnmarshaller; import com.aliyuncs.exceptions.ClientException; import com.aliyuncs.exceptions.ServerException; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribePluginsResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<PluginAttribute> plugins; public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<PluginAttribute> getPlugins() { return plugins; } public void setPlugins(List<PluginAttribute> plugins) { this.plugins = plugins; } public static class PluginAttribute{ private String pluginId; private String pluginType; private String pluginName; private String pluginData; private String regionId; private String description; private String createdTime; private String modifiedTime; public String getPluginId() { return pluginId; } public void setPluginId(String pluginId) { this.pluginId = pluginId; } public String getPluginType() { return pluginType; } public void setPluginType(String pluginType) { this.pluginType = pluginType; } public String getPluginName() { return pluginName; } public void setPluginName(String pluginName) { this.pluginName = pluginName; } public String getPluginData() { return pluginData; } public void setPluginData(String pluginData) { this.pluginData = pluginData; } public String getRegionId() { return regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getCreatedTime() { return createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public String getModifiedTime() { return modifiedTime; } public void setModifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; } } @Override public AcsResponse getInstance(UnmarshallerContext unmarshallerContext) throws ClientException, ServerException { return DescribePluginsResponseUnmarshaller.unmarshall(this,unmarshallerContext); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribePurchasedApiGroupRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribePurchasedApiGroupRequest extends RpcAcsRequest<DescribePurchasedApiGroupResponse> { public DescribePurchasedApiGroupRequest() { super("CloudAPI", "2016-07-14", "DescribePurchasedApiGroup", "apigateway"); } private String groupId; public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId); } } @Override public Class<DescribePurchasedApiGroupResponse> getResponseClass() { return DescribePurchasedApiGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribePurchasedApiGroupResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribePurchasedApiGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * */ public class DescribePurchasedApiGroupResponse extends AcsResponse { private String requestId; private String groupId; private String groupName; private String description; private String purchasedTime; private String regionId; private String status; private List<DomainItem> domains; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getPurchasedTime() { return this.purchasedTime; } public void setPurchasedTime(String purchasedTime) { this.purchasedTime = purchasedTime; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public List<DomainItem> getDomains() { return this.domains; } public void setDomains(List<DomainItem> domains) { this.domains = domains; } public static class DomainItem { private String domainName; public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } } @Override public DescribePurchasedApiGroupResponse getInstance(UnmarshallerContext context) { return DescribePurchasedApiGroupResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribePurchasedApiGroupsRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribePurchasedApiGroupsRequest extends RpcAcsRequest<DescribePurchasedApiGroupsResponse> { public DescribePurchasedApiGroupsRequest() { super("CloudAPI", "2016-07-14", "DescribePurchasedApiGroups", "apigateway"); } private Integer pageSize; private Integer pageNumber; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } @Override public Class<DescribePurchasedApiGroupsResponse> getResponseClass() { return DescribePurchasedApiGroupsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribePurchasedApiGroupsResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribePurchasedApiGroupsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * */ public class DescribePurchasedApiGroupsResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<PurchasedApiGroupAttribute> purchasedApiGroupAttributes; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<PurchasedApiGroupAttribute> getPurchasedApiGroupAttributes() { return this.purchasedApiGroupAttributes; } public void setPurchasedApiGroupAttributes(List<PurchasedApiGroupAttribute> purchasedApiGroupAttributes) { this.purchasedApiGroupAttributes = purchasedApiGroupAttributes; } public static class PurchasedApiGroupAttribute { private String groupId; private String groupName; private String description; private String purchasedTime; private String expireTime; private String regionId; private String billingType; private Long invokeTimesMax; private Long invokeTimesNow; public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getPurchasedTime() { return this.purchasedTime; } public void setPurchasedTime(String purchasedTime) { this.purchasedTime = purchasedTime; } public String getExpireTime() { return this.expireTime; } public void setExpireTime(String expireTime) { this.expireTime = expireTime; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getBillingType() { return this.billingType; } public void setBillingType(String billingType) { this.billingType = billingType; } public Long getInvokeTimesMax() { return this.invokeTimesMax; } public void setInvokeTimesMax(Long invokeTimesMax) { this.invokeTimesMax = invokeTimesMax; } public Long getInvokeTimesNow() { return this.invokeTimesNow; } public void setInvokeTimesNow(Long invokeTimesNow) { this.invokeTimesNow = invokeTimesNow; } } @Override public DescribePurchasedApiGroupsResponse getInstance(UnmarshallerContext context) { return DescribePurchasedApiGroupsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribePurchasedApisRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribePurchasedApisRequest extends RpcAcsRequest<DescribePurchasedApisResponse> { public DescribePurchasedApisRequest() { super("CloudAPI", "2016-07-14", "DescribePurchasedApis", "apigateway"); } private String stageName; private String apiName; private String visibility; private String groupId; private Integer pageSize; private String apiId; private Integer pageNumber; public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; if(stageName != null){ putQueryParameter("StageName", stageName); } } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; if(apiName != null){ putQueryParameter("ApiName", apiName); } } public String getVisibility() { return this.visibility; } public void setVisibility(String visibility) { this.visibility = visibility; if(visibility != null){ putQueryParameter("Visibility", visibility); } } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; if(apiId != null){ putQueryParameter("ApiId", apiId); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } @Override public Class<DescribePurchasedApisResponse> getResponseClass() { return DescribePurchasedApisResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribePurchasedApisResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribePurchasedApisResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * */ public class DescribePurchasedApisResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<PurchasedApi> purchasedApis; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<PurchasedApi> getPurchasedApis() { return this.purchasedApis; } public void setPurchasedApis(List<PurchasedApi> purchasedApis) { this.purchasedApis = purchasedApis; } public static class PurchasedApi { private String regionId; private String groupId; private String groupName; private String apiId; private String apiName; private String stageName; private String description; private String purchasedTime; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; } public String getApiName() { return this.apiName; } public void setApiName(String apiName) { this.apiName = apiName; } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getPurchasedTime() { return this.purchasedTime; } public void setPurchasedTime(String purchasedTime) { this.purchasedTime = purchasedTime; } } @Override public DescribePurchasedApisResponse getInstance(UnmarshallerContext context) { return DescribePurchasedApisResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeRegionsRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeRegionsRequest extends RpcAcsRequest<DescribeRegionsResponse> { public DescribeRegionsRequest() { super("CloudAPI", "2016-07-14", "DescribeRegions", "apigateway"); } @Override public Class<DescribeRegionsResponse> getResponseClass() { return DescribeRegionsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeRegionsResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeRegionsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeRegionsResponse extends AcsResponse { private String requestId; private List<Region> regions; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<Region> getRegions() { return this.regions; } public void setRegions(List<Region> regions) { this.regions = regions; } public static class Region { private String regionId; private String localName; private String endPoint; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getLocalName() { return this.localName; } public void setLocalName(String localName) { this.localName = localName; } public String getEndPoint() { return this.endPoint; } public void setEndPoint(String endPoint) { this.endPoint = endPoint; } } @Override public DescribeRegionsResponse getInstance(UnmarshallerContext context) { return DescribeRegionsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeSignaturesByApiRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeSignaturesByApiRequest extends RpcAcsRequest<DescribeSignaturesByApiResponse> { public DescribeSignaturesByApiRequest() { super("CloudAPI", "2016-07-14", "DescribeSignaturesByApi", "apigateway"); } private String groupId; private String apiId; private String stageName; public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; putQueryParameter("ApiId", apiId); } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; putQueryParameter("StageName", stageName); } @Override public Class<DescribeSignaturesByApiResponse> getResponseClass() { return DescribeSignaturesByApiResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeSignaturesByApiResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeSignaturesByApiResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeSignaturesByApiResponse extends AcsResponse { private String requestId; private List<SignatureItem> signatures; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<SignatureItem> getSignatures() { return this.signatures; } public void setSignatures(List<SignatureItem> signatures) { this.signatures = signatures; } public static class SignatureItem { private String signatureId; private String signatureName; private String boundTime; public String getSignatureId() { return this.signatureId; } public void setSignatureId(String signatureId) { this.signatureId = signatureId; } public String getSignatureName() { return this.signatureName; } public void setSignatureName(String signatureName) { this.signatureName = signatureName; } public String getBoundTime() { return this.boundTime; } public void setBoundTime(String boundTime) { this.boundTime = boundTime; } } @Override public DescribeSignaturesByApiResponse getInstance(UnmarshallerContext context) { return DescribeSignaturesByApiResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeSignaturesRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeSignaturesRequest extends RpcAcsRequest<DescribeSignaturesResponse> { public DescribeSignaturesRequest() { super("CloudAPI", "2016-07-14", "DescribeSignatures", "apigateway"); } private String signatureId; private String signatureName; private Integer pageNumber; private Integer pageSize; public String getSignatureId() { return this.signatureId; } public void setSignatureId(String signatureId) { this.signatureId = signatureId; putQueryParameter("SignatureId", signatureId); } public String getSignatureName() { return this.signatureName; } public void setSignatureName(String signatureName) { this.signatureName = signatureName; putQueryParameter("SignatureName", signatureName); } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; putQueryParameter("PageNumber", pageNumber); } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; putQueryParameter("PageSize", pageSize); } @Override public Class<DescribeSignaturesResponse> getResponseClass() { return DescribeSignaturesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeSignaturesResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeSignaturesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeSignaturesResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<SignatureInfo> signatureInfos; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<SignatureInfo> getSignatureInfos() { return this.signatureInfos; } public void setSignatureInfos(List<SignatureInfo> signatureInfos) { this.signatureInfos = signatureInfos; } public static class SignatureInfo { private String regionId; private String signatureId; private String signatureName; private String signatureKey; private String signatureSecret; private String createdTime; private String modifiedTime; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getSignatureId() { return this.signatureId; } public void setSignatureId(String signatureId) { this.signatureId = signatureId; } public String getSignatureName() { return this.signatureName; } public void setSignatureName(String signatureName) { this.signatureName = signatureName; } public String getSignatureKey() { return this.signatureKey; } public void setSignatureKey(String signatureKey) { this.signatureKey = signatureKey; } public String getSignatureSecret() { return this.signatureSecret; } public void setSignatureSecret(String signatureSecret) { this.signatureSecret = signatureSecret; } public String getCreatedTime() { return this.createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public String getModifiedTime() { return this.modifiedTime; } public void setModifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; } } @Override public DescribeSignaturesResponse getInstance(UnmarshallerContext context) { return DescribeSignaturesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeSystemParametersRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeSystemParametersRequest extends RpcAcsRequest<DescribeSystemParametersResponse> { public DescribeSystemParametersRequest() { super("CloudAPI", "2016-07-14", "DescribeSystemParameters", "apigateway"); } @Override public Class<DescribeSystemParametersResponse> getResponseClass() { return DescribeSystemParametersResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeSystemParametersResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeSystemParametersResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeSystemParametersResponse extends AcsResponse { private String requestId; private List<SystemParamItem> systemParams; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<SystemParamItem> getSystemParams() { return this.systemParams; } public void setSystemParams(List<SystemParamItem> systemParams) { this.systemParams = systemParams; } public static class SystemParamItem { private String paramName; private String paramType; private String demoValue; private String description; public String getParamName() { return this.paramName; } public void setParamName(String paramName) { this.paramName = paramName; } public String getParamType() { return this.paramType; } public void setParamType(String paramType) { this.paramType = paramType; } public String getDemoValue() { return this.demoValue; } public void setDemoValue(String demoValue) { this.demoValue = demoValue; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } } @Override public DescribeSystemParametersResponse getInstance(UnmarshallerContext context) { return DescribeSystemParametersResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeTrafficControlsByApiRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeTrafficControlsByApiRequest extends RpcAcsRequest<DescribeTrafficControlsByApiResponse> { public DescribeTrafficControlsByApiRequest() { super("CloudAPI", "2016-07-14", "DescribeTrafficControlsByApi", "apigateway"); } private String groupId; private String apiId; private String stageName; public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; putQueryParameter("ApiId", apiId); } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; putQueryParameter("StageName", stageName); } @Override public Class<DescribeTrafficControlsByApiResponse> getResponseClass() { return DescribeTrafficControlsByApiResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeTrafficControlsByApiResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeTrafficControlsByApiResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeTrafficControlsByApiResponse extends AcsResponse { private String requestId; private List<TrafficControlItem> trafficControlItems; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<TrafficControlItem> getTrafficControlItems() { return this.trafficControlItems; } public void setTrafficControlItems(List<TrafficControlItem> trafficControlItems) { this.trafficControlItems = trafficControlItems; } public static class TrafficControlItem { private String trafficControlItemId; private String trafficControlItemName; private String boundTime; public String getTrafficControlItemId() { return this.trafficControlItemId; } public void setTrafficControlItemId(String trafficControlItemId) { this.trafficControlItemId = trafficControlItemId; } public String getTrafficControlItemName() { return this.trafficControlItemName; } public void setTrafficControlItemName(String trafficControlItemName) { this.trafficControlItemName = trafficControlItemName; } public String getBoundTime() { return this.boundTime; } public void setBoundTime(String boundTime) { this.boundTime = boundTime; } } @Override public DescribeTrafficControlsByApiResponse getInstance(UnmarshallerContext context) { return DescribeTrafficControlsByApiResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeTrafficControlsRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeTrafficControlsRequest extends RpcAcsRequest<DescribeTrafficControlsResponse> { public DescribeTrafficControlsRequest() { super("CloudAPI", "2016-07-14", "DescribeTrafficControls", "apigateway"); } private String trafficControlId; private String groupId; private String apiId; private String stageName; private String trafficControlName; private Integer pageNumber; private Integer pageSize; public String getTrafficControlId() { return this.trafficControlId; } public void setTrafficControlId(String trafficControlId) { this.trafficControlId = trafficControlId; putQueryParameter("TrafficControlId", trafficControlId); } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public String getApiId() { return this.apiId; } public void setApiId(String apiId) { this.apiId = apiId; putQueryParameter("ApiId", apiId); } public String getStageName() { return this.stageName; } public void setStageName(String stageName) { this.stageName = stageName; putQueryParameter("StageName", stageName); } public String getTrafficControlName() { return this.trafficControlName; } public void setTrafficControlName(String trafficControlName) { this.trafficControlName = trafficControlName; putQueryParameter("TrafficControlName", trafficControlName); } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; putQueryParameter("PageNumber", pageNumber); } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; putQueryParameter("PageSize", pageSize); } @Override public Class<DescribeTrafficControlsResponse> getResponseClass() { return DescribeTrafficControlsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeTrafficControlsResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeTrafficControlsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeTrafficControlsResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<TrafficControl> trafficControls; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<TrafficControl> getTrafficControls() { return this.trafficControls; } public void setTrafficControls(List<TrafficControl> trafficControls) { this.trafficControls = trafficControls; } public static class TrafficControl { private String trafficControlId; private String trafficControlName; private String description; private String trafficControlUnit; private Integer apiDefault; private Integer userDefault; private Integer appDefault; private String createdTime; private String modifiedTime; private List<SpecialPolicy> specialPolicies; public String getTrafficControlId() { return this.trafficControlId; } public void setTrafficControlId(String trafficControlId) { this.trafficControlId = trafficControlId; } public String getTrafficControlName() { return this.trafficControlName; } public void setTrafficControlName(String trafficControlName) { this.trafficControlName = trafficControlName; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getTrafficControlUnit() { return this.trafficControlUnit; } public void setTrafficControlUnit(String trafficControlUnit) { this.trafficControlUnit = trafficControlUnit; } public Integer getApiDefault() { return this.apiDefault; } public void setApiDefault(Integer apiDefault) { this.apiDefault = apiDefault; } public Integer getUserDefault() { return this.userDefault; } public void setUserDefault(Integer userDefault) { this.userDefault = userDefault; } public Integer getAppDefault() { return this.appDefault; } public void setAppDefault(Integer appDefault) { this.appDefault = appDefault; } public String getCreatedTime() { return this.createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public String getModifiedTime() { return this.modifiedTime; } public void setModifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; } public List<SpecialPolicy> getSpecialPolicies() { return this.specialPolicies; } public void setSpecialPolicies(List<SpecialPolicy> specialPolicies) { this.specialPolicies = specialPolicies; } public static class SpecialPolicy { private String specialType; private List<Special> specials; public String getSpecialType() { return this.specialType; } public void setSpecialType(String specialType) { this.specialType = specialType; } public List<Special> getSpecials() { return this.specials; } public void setSpecials(List<Special> specials) { this.specials = specials; } public static class Special { private String specialKey; private Integer trafficValue; public String getSpecialKey() { return this.specialKey; } public void setSpecialKey(String specialKey) { this.specialKey = specialKey; } public Integer getTrafficValue() { return this.trafficValue; } public void setTrafficValue(Integer trafficValue) { this.trafficValue = trafficValue; } } } } @Override public DescribeTrafficControlsResponse getInstance(UnmarshallerContext context) { return DescribeTrafficControlsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeVpcAccessesRequest.java
/* * Copyright 2017 Aliyun.com All right reserved. This software is the * confidential and proprietary information of Aliyun.com ("Confidential * Information"). You shall not disclose such Confidential Information and shall * use it only in accordance with the terms of the license agreement you entered * into with Aliyun.com . */ package com.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; public class DescribeVpcAccessesRequest extends RpcAcsRequest<DescribeVpcAccessesResponse> { public DescribeVpcAccessesRequest() { super("CloudAPI", "2016-07-14", "DescribeVpcAccesses", "apigateway"); } @Override public Class<DescribeVpcAccessesResponse> getResponseClass() { return DescribeVpcAccessesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeVpcAccessesResponse.java
/* * Copyright 2017 Aliyun.com All right reserved. This software is the * confidential and proprietary information of Aliyun.com ("Confidential * Information"). You shall not disclose such Confidential Information and shall * use it only in accordance with the terms of the license agreement you entered * into with Aliyun.com . */ package com.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeVpcAccessesResponseUnmarshaller; import com.aliyuncs.exceptions.ClientException; import com.aliyuncs.exceptions.ServerException; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; public class DescribeVpcAccessesResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer pageSize; private Integer pageNumber; private List<VpcAccessAttribute> vpcAccessAttributes; public static class VpcAccessAttribute { private String vpcId; private String instanceId; private Integer port; private String name; private String createdTime; public String getVpcId() { return vpcId; } public void setVpcId(String vpcId) { this.vpcId = vpcId; } public String getInstanceId() { return instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getCreatedTime() { return createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public Integer getPort() { return port; } public void setPort(Integer port) { this.port = port; } } public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public List<VpcAccessAttribute> getVpcAccessAttributes() { return vpcAccessAttributes; } public void setVpcAccessAttributes(List<VpcAccessAttribute> vpcAccessAttributes) { this.vpcAccessAttributes = vpcAccessAttributes; } @Override public AcsResponse getInstance(UnmarshallerContext context) throws ClientException, ServerException { return DescribeVpcAccessesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeZonesRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DescribeZonesRequest extends RpcAcsRequest<DescribeZonesResponse> { public DescribeZonesRequest() { super("CloudAPI", "2016-07-14", "DescribeZones", "apigateway"); } private String language; public String getLanguage() { return language; } public void setLanguage(String language) { this.language = language; putQueryParameter("Language", language); } @Override public Class<DescribeZonesResponse> getResponseClass() { return DescribeZonesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DescribeZonesResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.DescribeZonesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class DescribeZonesResponse extends AcsResponse { private String requestId; private List<Zone> zones; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<Zone> getZones() { return zones; } public void setZones(List<Zone> zones) { this.zones = zones; } public static class Zone { private String zoneId; private String localName; public String getZoneId() { return zoneId; } public void setZoneId(String zoneId) { this.zoneId = zoneId; } public String getLocalName() { return localName; } public void setLocalName(String localName) { this.localName = localName; } } @Override public DescribeZonesResponse getInstance(UnmarshallerContext context) { return DescribeZonesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DetachPluginRequest.java
package com.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class DetachPluginRequest extends RpcAcsRequest<DetachPluginResponse> { public DetachPluginRequest() { super("CloudAPI", "2016-07-14", "DetachPlugin", "apigateway"); } private String pluginId; private String apiId; private String stageName; public String getPluginId() { return pluginId; } public void setPluginId(String pluginId) { this.pluginId = pluginId; putQueryParameter("PluginId",pluginId); } public String getApiId() { return apiId; } public void setApiId(String apiId) { this.apiId = apiId; putQueryParameter("ApiId", apiId); } public String getStageName() { return stageName; } public void setStageName(String stageName) { this.stageName = stageName; putQueryParameter("StageName",stageName); } @Override public Class<DetachPluginResponse> getResponseClass() { return DetachPluginResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/DetachPluginResponse.java
package com.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.AttachPluginResponseUnmarshaller; import com.aliyuncs.cloudapi.transform.v20160714.DetachPluginResponseUnmarshaller; import com.aliyuncs.exceptions.ClientException; import com.aliyuncs.exceptions.ServerException; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * */ public class DetachPluginResponse extends AcsResponse { private String requestId; public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public AcsResponse getInstance(UnmarshallerContext unmarshallerContext) throws ClientException, ServerException { return DetachPluginResponseUnmarshaller.unmarshall(this,unmarshallerContext); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/ImportSwaggerRequest.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * */ public class ImportSwaggerRequest extends RpcAcsRequest<ImportSwaggerResponse> { public ImportSwaggerRequest() { super("CloudAPI", "2016-07-14", "ImportSwagger", "apigateway"); } private Boolean bOverwrite; private String dataFormat; private String data; private String groupId; private String globalCondition; public String getGlobalCondition() { return globalCondition; } public void setGlobalCondition(String globalCondition) { this.globalCondition = globalCondition; putQueryParameter("GlobalCondition", globalCondition); } public String getGroupId() { return groupId; } public void setGroupId(String groupId) { this.groupId = groupId; putQueryParameter("GroupId", groupId); } public Boolean getbOverwrite() { return bOverwrite; } public void setbOverwrite(Boolean bOverwrite) { this.bOverwrite = bOverwrite; putQueryParameter("Overwrite", bOverwrite); } public String getDataFormat() { return dataFormat; } public void setDataFormat(String dataFormat) { this.dataFormat = dataFormat; putQueryParameter("DataFormat", dataFormat); } public String getData() { return data; } public void setData(String data) { this.data = data; putQueryParameter("Data", data); } @Override public Class<ImportSwaggerResponse> getResponseClass() { return ImportSwaggerResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model
java-sources/com/aliyun/aliyun-java-sdk-cloudapi/4.10.0/com/aliyuncs/cloudapi/model/v20160714/ImportSwaggerResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.aliyuncs.cloudapi.model.v20160714; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudapi.transform.v20160714.ImportSwaggerResponseUnmarshaller; import com.aliyuncs.exceptions.ClientException; import com.aliyuncs.exceptions.ServerException; import com.aliyuncs.transform.UnmarshallerContext; import java.util.List; /** * @author auto create * */ public class ImportSwaggerResponse extends AcsResponse { private String requestId; private List<ApiImportSwaggerSuccess> Success; private List<ApiImportSwaggerFailed> Failed; public static class ApiImportSwaggerSuccess { private String path; private String httpMethod; private String apiUid; private String apiOperation; public String getPath() { return path; } public void setPath(String path) { this.path = path; } public String getHttpMethod() { return httpMethod; } public void setHttpMethod(String httpMethod) { this.httpMethod = httpMethod; } public String getApiUid() { return apiUid; } public void setApiUid(String apiUid) { this.apiUid = apiUid; } public String getApiOperation() { return apiOperation; } public void setApiOperation(String apiOperation) { this.apiOperation = apiOperation; } } public static class ApiImportSwaggerFailed { private String path; private String httpMethod; private String errorMsg; public String getPath() { return path; } public void setPath(String path) { this.path = path; } public String getHttpMethod() { return httpMethod; } public void setHttpMethod(String httpMethod) { this.httpMethod = httpMethod; } public String getErrorMsg() { return errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } } public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<ApiImportSwaggerSuccess> getSuccess() { return Success; } public void setSuccess( List<ApiImportSwaggerSuccess> success) { Success = success; } public List<ApiImportSwaggerFailed> getFailed() { return Failed; } public void setFailed( List<ApiImportSwaggerFailed> failed) { Failed = failed; } @Override public AcsResponse getInstance(UnmarshallerContext context) throws ClientException, ServerException { return ImportSwaggerResponseUnmarshaller.unmarshall(this, context); } }