index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetMultiAccountsCheckReportRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetMultiAccountsCheckReportRequest extends RpcAcsRequest<GetMultiAccountsCheckReportResponse> { private String timeZone; private String filterValue; private String language; private String filterType; private String token; private String region; public GetMultiAccountsCheckReportRequest() { super("Advisor-Share", "2018-06-08", "GetMultiAccountsCheckReport", "advisor"); setMethod(MethodType.POST); } public String getTimeZone() { return this.timeZone; } public void setTimeZone(String timeZone) { this.timeZone = timeZone; if(timeZone != null){ putQueryParameter("TimeZone", timeZone); } } public String getFilterValue() { return this.filterValue; } public void setFilterValue(String filterValue) { this.filterValue = filterValue; if(filterValue != null){ putQueryParameter("FilterValue", filterValue); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public String getFilterType() { return this.filterType; } public void setFilterType(String filterType) { this.filterType = filterType; if(filterType != null){ putQueryParameter("FilterType", filterType); } } public String getToken() { return this.token; } public void setToken(String token) { this.token = token; if(token != null){ putQueryParameter("Token", token); } } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("Region", region); } } @Override public Class<GetMultiAccountsCheckReportResponse> getResponseClass() { return GetMultiAccountsCheckReportResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetMultiAccountsCheckReportResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.GetMultiAccountsCheckReportResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetMultiAccountsCheckReportResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Boolean reportExist; private String excelReportUrl; private String reportGenerateTime; private String pdfReportUrl; public Boolean getReportExist() { return this.reportExist; } public void setReportExist(Boolean reportExist) { this.reportExist = reportExist; } public String getExcelReportUrl() { return this.excelReportUrl; } public void setExcelReportUrl(String excelReportUrl) { this.excelReportUrl = excelReportUrl; } public String getReportGenerateTime() { return this.reportGenerateTime; } public void setReportGenerateTime(String reportGenerateTime) { this.reportGenerateTime = reportGenerateTime; } public String getPdfReportUrl() { return this.pdfReportUrl; } public void setPdfReportUrl(String pdfReportUrl) { this.pdfReportUrl = pdfReportUrl; } } @Override public GetMultiAccountsCheckReportResponse getInstance(UnmarshallerContext context) { return GetMultiAccountsCheckReportResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetProductRiskCountRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetProductRiskCountRequest extends RpcAcsRequest<GetProductRiskCountResponse> { private Long adviceId; private Long excludeAdviceId; private String reason; private String data; private String timeZone; private String filterValue; private String language; private String filterType; private Integer duration; private Boolean isExpired; private String details; private String gmtCreated; private String checkId; private String severity; private String resourceId; private String product; private Long clientUid; private String token; private String region; public GetProductRiskCountRequest() { super("Advisor-Share", "2018-06-08", "GetProductRiskCount", "advisor"); setMethod(MethodType.POST); } public Long getAdviceId() { return this.adviceId; } public void setAdviceId(Long adviceId) { this.adviceId = adviceId; if(adviceId != null){ putQueryParameter("AdviceId", adviceId.toString()); } } public Long getExcludeAdviceId() { return this.excludeAdviceId; } public void setExcludeAdviceId(Long excludeAdviceId) { this.excludeAdviceId = excludeAdviceId; if(excludeAdviceId != null){ putQueryParameter("ExcludeAdviceId", excludeAdviceId.toString()); } } public String getReason() { return this.reason; } public void setReason(String reason) { this.reason = reason; if(reason != null){ putQueryParameter("Reason", reason); } } public String getData() { return this.data; } public void setData(String data) { this.data = data; if(data != null){ putQueryParameter("Data", data); } } public String getTimeZone() { return this.timeZone; } public void setTimeZone(String timeZone) { this.timeZone = timeZone; if(timeZone != null){ putQueryParameter("TimeZone", timeZone); } } public String getFilterValue() { return this.filterValue; } public void setFilterValue(String filterValue) { this.filterValue = filterValue; if(filterValue != null){ putQueryParameter("FilterValue", filterValue); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public String getFilterType() { return this.filterType; } public void setFilterType(String filterType) { this.filterType = filterType; if(filterType != null){ putQueryParameter("FilterType", filterType); } } public Integer getDuration() { return this.duration; } public void setDuration(Integer duration) { this.duration = duration; if(duration != null){ putQueryParameter("Duration", duration.toString()); } } public Boolean getIsExpired() { return this.isExpired; } public void setIsExpired(Boolean isExpired) { this.isExpired = isExpired; if(isExpired != null){ putQueryParameter("IsExpired", isExpired.toString()); } } public String getDetails() { return this.details; } public void setDetails(String details) { this.details = details; if(details != null){ putQueryParameter("Details", details); } } public String getGmtCreated() { return this.gmtCreated; } public void setGmtCreated(String gmtCreated) { this.gmtCreated = gmtCreated; if(gmtCreated != null){ putQueryParameter("GmtCreated", gmtCreated); } } public String getCheckId() { return this.checkId; } public void setCheckId(String checkId) { this.checkId = checkId; if(checkId != null){ putQueryParameter("CheckId", checkId); } } public String getSeverity() { return this.severity; } public void setSeverity(String severity) { this.severity = severity; if(severity != null){ putQueryParameter("Severity", severity); } } public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; if(resourceId != null){ putQueryParameter("ResourceId", resourceId); } } public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; if(product != null){ putQueryParameter("Product", product); } } public Long getClientUid() { return this.clientUid; } public void setClientUid(Long clientUid) { this.clientUid = clientUid; if(clientUid != null){ putQueryParameter("ClientUid", clientUid.toString()); } } public String getToken() { return this.token; } public void setToken(String token) { this.token = token; if(token != null){ putQueryParameter("Token", token); } } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("Region", region); } } @Override public Class<GetProductRiskCountResponse> getResponseClass() { return GetProductRiskCountResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetProductRiskCountResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.GetProductRiskCountResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetProductRiskCountResponse extends AcsResponse { private String requestId; private List<ProductRisksCountDTO> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<ProductRisksCountDTO> getData() { return this.data; } public void setData(List<ProductRisksCountDTO> data) { this.data = data; } public static class ProductRisksCountDTO { private Long riskTotal; private List<ProductCountDTO> productCountDTOList; public Long getRiskTotal() { return this.riskTotal; } public void setRiskTotal(Long riskTotal) { this.riskTotal = riskTotal; } public List<ProductCountDTO> getProductCountDTOList() { return this.productCountDTOList; } public void setProductCountDTOList(List<ProductCountDTO> productCountDTOList) { this.productCountDTOList = productCountDTOList; } public static class ProductCountDTO { private String product; private Long riskNumber; public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; } public Long getRiskNumber() { return this.riskNumber; } public void setRiskNumber(Long riskNumber) { this.riskNumber = riskNumber; } } } @Override public GetProductRiskCountResponse getInstance(UnmarshallerContext context) { return GetProductRiskCountResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetProductRiskTrendRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetProductRiskTrendRequest extends RpcAcsRequest<GetProductRiskTrendResponse> { private Long adviceId; private Long excludeAdviceId; private String reason; private String data; private String filterValue; private String language; private String filterType; private Integer duration; private Boolean isExpired; private String details; private String gmtCreated; private String checkId; private String severity; private String resourceId; private String product; private Long clientUid; private String token; private String region; public GetProductRiskTrendRequest() { super("Advisor-Share", "2018-06-08", "GetProductRiskTrend", "advisor"); setMethod(MethodType.POST); } public Long getAdviceId() { return this.adviceId; } public void setAdviceId(Long adviceId) { this.adviceId = adviceId; if(adviceId != null){ putQueryParameter("AdviceId", adviceId.toString()); } } public Long getExcludeAdviceId() { return this.excludeAdviceId; } public void setExcludeAdviceId(Long excludeAdviceId) { this.excludeAdviceId = excludeAdviceId; if(excludeAdviceId != null){ putQueryParameter("ExcludeAdviceId", excludeAdviceId.toString()); } } public String getReason() { return this.reason; } public void setReason(String reason) { this.reason = reason; if(reason != null){ putQueryParameter("Reason", reason); } } public String getData() { return this.data; } public void setData(String data) { this.data = data; if(data != null){ putQueryParameter("Data", data); } } public String getFilterValue() { return this.filterValue; } public void setFilterValue(String filterValue) { this.filterValue = filterValue; if(filterValue != null){ putQueryParameter("FilterValue", filterValue); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public String getFilterType() { return this.filterType; } public void setFilterType(String filterType) { this.filterType = filterType; if(filterType != null){ putQueryParameter("FilterType", filterType); } } public Integer getDuration() { return this.duration; } public void setDuration(Integer duration) { this.duration = duration; if(duration != null){ putQueryParameter("Duration", duration.toString()); } } public Boolean getIsExpired() { return this.isExpired; } public void setIsExpired(Boolean isExpired) { this.isExpired = isExpired; if(isExpired != null){ putQueryParameter("IsExpired", isExpired.toString()); } } public String getDetails() { return this.details; } public void setDetails(String details) { this.details = details; if(details != null){ putQueryParameter("Details", details); } } public String getGmtCreated() { return this.gmtCreated; } public void setGmtCreated(String gmtCreated) { this.gmtCreated = gmtCreated; if(gmtCreated != null){ putQueryParameter("GmtCreated", gmtCreated); } } public String getCheckId() { return this.checkId; } public void setCheckId(String checkId) { this.checkId = checkId; if(checkId != null){ putQueryParameter("CheckId", checkId); } } public String getSeverity() { return this.severity; } public void setSeverity(String severity) { this.severity = severity; if(severity != null){ putQueryParameter("Severity", severity); } } public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; if(resourceId != null){ putQueryParameter("ResourceId", resourceId); } } public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; if(product != null){ putQueryParameter("Product", product); } } public Long getClientUid() { return this.clientUid; } public void setClientUid(Long clientUid) { this.clientUid = clientUid; if(clientUid != null){ putQueryParameter("ClientUid", clientUid.toString()); } } public String getToken() { return this.token; } public void setToken(String token) { this.token = token; if(token != null){ putQueryParameter("Token", token); } } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("Region", region); } } @Override public Class<GetProductRiskTrendResponse> getResponseClass() { return GetProductRiskTrendResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetProductRiskTrendResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.GetProductRiskTrendResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetProductRiskTrendResponse extends AcsResponse { private String requestId; private List<ProductRisksDateDTO> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<ProductRisksDateDTO> getData() { return this.data; } public void setData(List<ProductRisksDateDTO> data) { this.data = data; } public static class ProductRisksDateDTO { private String date; private List<ProductCountDTO> productCountDTOList; public String getDate() { return this.date; } public void setDate(String date) { this.date = date; } public List<ProductCountDTO> getProductCountDTOList() { return this.productCountDTOList; } public void setProductCountDTOList(List<ProductCountDTO> productCountDTOList) { this.productCountDTOList = productCountDTOList; } public static class ProductCountDTO { private String product; private Long riskNumber; public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; } public Long getRiskNumber() { return this.riskNumber; } public void setRiskNumber(Long riskNumber) { this.riskNumber = riskNumber; } } } @Override public GetProductRiskTrendResponse getInstance(UnmarshallerContext context) { return GetProductRiskTrendResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetProductTaskStatusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetProductTaskStatusRequest extends RpcAcsRequest<GetProductTaskStatusResponse> { private String traceId; private Long associateUid; private String product; private String resourceId; private String token; private String checkId; public GetProductTaskStatusRequest() { super("Advisor-Share", "2018-06-08", "GetProductTaskStatus", "advisor"); setMethod(MethodType.GET); } public String getTraceId() { return this.traceId; } public void setTraceId(String traceId) { this.traceId = traceId; if(traceId != null){ putQueryParameter("TraceId", traceId); } } public Long getAssociateUid() { return this.associateUid; } public void setAssociateUid(Long associateUid) { this.associateUid = associateUid; if(associateUid != null){ putQueryParameter("AssociateUid", associateUid.toString()); } } public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; if(product != null){ putQueryParameter("Product", product); } } public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; if(resourceId != null){ putQueryParameter("ResourceId", resourceId); } } public String getToken() { return this.token; } public void setToken(String token) { this.token = token; if(token != null){ putQueryParameter("Token", token); } } public String getCheckId() { return this.checkId; } public void setCheckId(String checkId) { this.checkId = checkId; if(checkId != null){ putQueryParameter("CheckId", checkId); } } @Override public Class<GetProductTaskStatusResponse> getResponseClass() { return GetProductTaskStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetProductTaskStatusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.GetProductTaskStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetProductTaskStatusResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String checkTaskStatus; private Long checkTaskDoneCount; private String product; public String getCheckTaskStatus() { return this.checkTaskStatus; } public void setCheckTaskStatus(String checkTaskStatus) { this.checkTaskStatus = checkTaskStatus; } public Long getCheckTaskDoneCount() { return this.checkTaskDoneCount; } public void setCheckTaskDoneCount(Long checkTaskDoneCount) { this.checkTaskDoneCount = checkTaskDoneCount; } public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; } } @Override public GetProductTaskStatusResponse getInstance(UnmarshallerContext context) { return GetProductTaskStatusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetResourceDistributionRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetResourceDistributionRequest extends RpcAcsRequest<GetResourceDistributionResponse> { private String language; private Integer pageNumber; private Integer pageSize; public GetResourceDistributionRequest() { super("Advisor-Share", "2018-06-08", "GetResourceDistribution", "advisor"); setMethod(MethodType.POST); } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<GetResourceDistributionResponse> getResponseClass() { return GetResourceDistributionResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetResourceDistributionResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.GetResourceDistributionResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetResourceDistributionResponse extends AcsResponse { private String requestId; private List<ProductDistributionDTO> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<ProductDistributionDTO> getData() { return this.data; } public void setData(List<ProductDistributionDTO> data) { this.data = data; } public static class ProductDistributionDTO { private String product; private List<ResourceDistributionDTO> regionDistribution; public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; } public List<ResourceDistributionDTO> getRegionDistribution() { return this.regionDistribution; } public void setRegionDistribution(List<ResourceDistributionDTO> regionDistribution) { this.regionDistribution = regionDistribution; } public static class ResourceDistributionDTO { private String regionId; private Integer resourceCount; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public Integer getResourceCount() { return this.resourceCount; } public void setResourceCount(Integer resourceCount) { this.resourceCount = resourceCount; } } } @Override public GetResourceDistributionResponse getInstance(UnmarshallerContext context) { return GetResourceDistributionResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetResourceListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetResourceListRequest extends RpcAcsRequest<GetResourceListResponse> { private String product; private String resource; public GetResourceListRequest() { super("Advisor-Share", "2018-06-08", "GetResourceList", "advisor"); setMethod(MethodType.POST); } public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; if(product != null){ putQueryParameter("Product", product); } } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; if(resource != null){ putQueryParameter("Resource", resource); } } @Override public Class<GetResourceListResponse> getResponseClass() { return GetResourceListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetResourceListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.GetResourceListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetResourceListResponse extends AcsResponse { private String requestId; private String message; private String success; private List<DataItem> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String regionId; private String resourceId; private String resourceName; private Boolean isFlag; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; } public String getResourceName() { return this.resourceName; } public void setResourceName(String resourceName) { this.resourceName = resourceName; } public Boolean getIsFlag() { return this.isFlag; } public void setIsFlag(Boolean isFlag) { this.isFlag = isFlag; } } @Override public GetResourceListResponse getInstance(UnmarshallerContext context) { return GetResourceListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetResourceTopologyRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetResourceTopologyRequest extends RpcAcsRequest<GetResourceTopologyResponse> { private String domain; public GetResourceTopologyRequest() { super("Advisor-Share", "2018-06-08", "GetResourceTopology", "advisor"); setMethod(MethodType.POST); } public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; if(domain != null){ putQueryParameter("Domain", domain); } } @Override public Class<GetResourceTopologyResponse> getResponseClass() { return GetResourceTopologyResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetResourceTopologyResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.GetResourceTopologyResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetResourceTopologyResponse extends AcsResponse { private String data; private String requestId; public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public GetResourceTopologyResponse getInstance(UnmarshallerContext context) { return GetResourceTopologyResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetResourcesTrendRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetResourcesTrendRequest extends RpcAcsRequest<GetResourcesTrendResponse> { private String product; private String timeDimension; private String endTime; private String language; private String startTime; private Integer pageNumber; private Integer pageSize; public GetResourcesTrendRequest() { super("Advisor-Share", "2018-06-08", "GetResourcesTrend", "advisor"); setMethod(MethodType.POST); } public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; if(product != null){ putQueryParameter("Product", product); } } public String getTimeDimension() { return this.timeDimension; } public void setTimeDimension(String timeDimension) { this.timeDimension = timeDimension; if(timeDimension != null){ putQueryParameter("TimeDimension", timeDimension); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("EndTime", endTime); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<GetResourcesTrendResponse> getResponseClass() { return GetResourcesTrendResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetResourcesTrendResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.GetResourcesTrendResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetResourcesTrendResponse extends AcsResponse { private String requestId; private List<ResourceCountDTO> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<ResourceCountDTO> getData() { return this.data; } public void setData(List<ResourceCountDTO> data) { this.data = data; } public static class ResourceCountDTO { private String product; private List<DataPoint> dataPoints; public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; } public List<DataPoint> getDataPoints() { return this.dataPoints; } public void setDataPoints(List<DataPoint> dataPoints) { this.dataPoints = dataPoints; } public static class DataPoint { private String time; private Integer count; public String getTime() { return this.time; } public void setTime(String time) { this.time = time; } public Integer getCount() { return this.count; } public void setCount(Integer count) { this.count = count; } } } @Override public GetResourcesTrendResponse getInstance(UnmarshallerContext context) { return GetResourcesTrendResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetSubDomainListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetSubDomainListRequest extends RpcAcsRequest<GetSubDomainListResponse> { private String domain; private String keyword; public GetSubDomainListRequest() { super("Advisor-Share", "2018-06-08", "GetSubDomainList", "advisor"); setMethod(MethodType.POST); } public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; if(domain != null){ putQueryParameter("Domain", domain); } } public String getKeyword() { return this.keyword; } public void setKeyword(String keyword) { this.keyword = keyword; if(keyword != null){ putQueryParameter("Keyword", keyword); } } @Override public Class<GetSubDomainListResponse> getResponseClass() { return GetSubDomainListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetSubDomainListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.GetSubDomainListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetSubDomainListResponse extends AcsResponse { private String requestId; private List<SubDomains> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<SubDomains> getData() { return this.data; } public void setData(List<SubDomains> data) { this.data = data; } public static class SubDomains { private String status; private String domain; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; } } @Override public GetSubDomainListResponse getInstance(UnmarshallerContext context) { return GetSubDomainListResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetTamServiceStatusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetTamServiceStatusRequest extends RpcAcsRequest<GetTamServiceStatusResponse> { private Long clientUid; private String language; public GetTamServiceStatusRequest() { super("Advisor-Share", "2018-06-08", "GetTamServiceStatus", "advisor"); setMethod(MethodType.POST); } public Long getClientUid() { return this.clientUid; } public void setClientUid(Long clientUid) { this.clientUid = clientUid; if(clientUid != null){ putQueryParameter("ClientUid", clientUid.toString()); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } @Override public Class<GetTamServiceStatusResponse> getResponseClass() { return GetTamServiceStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetTamServiceStatusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.GetTamServiceStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetTamServiceStatusResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String serviceStatus; private Boolean workingFlag; public String getServiceStatus() { return this.serviceStatus; } public void setServiceStatus(String serviceStatus) { this.serviceStatus = serviceStatus; } public Boolean getWorkingFlag() { return this.workingFlag; } public void setWorkingFlag(Boolean workingFlag) { this.workingFlag = workingFlag; } } @Override public GetTamServiceStatusResponse getInstance(UnmarshallerContext context) { return GetTamServiceStatusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetTaskStatusByIdRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetTaskStatusByIdRequest extends RpcAcsRequest<GetTaskStatusByIdResponse> { private String taskId; public GetTaskStatusByIdRequest() { super("Advisor-Share", "2018-06-08", "GetTaskStatusById", "advisor"); setMethod(MethodType.GET); } public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; if(taskId != null){ putQueryParameter("taskId", taskId); } } @Override public Class<GetTaskStatusByIdResponse> getResponseClass() { return GetTaskStatusByIdResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetTaskStatusByIdResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.GetTaskStatusByIdResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetTaskStatusByIdResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long taskId; private Integer taskStatus; private String taskType; public Long getTaskId() { return this.taskId; } public void setTaskId(Long taskId) { this.taskId = taskId; } public Integer getTaskStatus() { return this.taskStatus; } public void setTaskStatus(Integer taskStatus) { this.taskStatus = taskStatus; } public String getTaskType() { return this.taskType; } public void setTaskType(String taskType) { this.taskType = taskType; } } @Override public GetTaskStatusByIdResponse getInstance(UnmarshallerContext context) { return GetTaskStatusByIdResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetTaskStatusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetTaskStatusRequest extends RpcAcsRequest<GetTaskStatusResponse> { private String resourceId; private String product; private Long associateUid; private String language; private String token; private String checkId; public GetTaskStatusRequest() { super("Advisor-Share", "2018-06-08", "GetTaskStatus", "advisor"); setMethod(MethodType.POST); } public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; if(resourceId != null){ putQueryParameter("ResourceId", resourceId); } } public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; if(product != null){ putQueryParameter("Product", product); } } public Long getAssociateUid() { return this.associateUid; } public void setAssociateUid(Long associateUid) { this.associateUid = associateUid; if(associateUid != null){ putQueryParameter("AssociateUid", associateUid.toString()); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public String getToken() { return this.token; } public void setToken(String token) { this.token = token; if(token != null){ putQueryParameter("Token", token); } } public String getCheckId() { return this.checkId; } public void setCheckId(String checkId) { this.checkId = checkId; if(checkId != null){ putQueryParameter("CheckId", checkId); } } @Override public Class<GetTaskStatusResponse> getResponseClass() { return GetTaskStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetTaskStatusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.GetTaskStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetTaskStatusResponse extends AcsResponse { private String requestId; private List<ProductTaskStatus> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<ProductTaskStatus> getData() { return this.data; } public void setData(List<ProductTaskStatus> data) { this.data = data; } public static class ProductTaskStatus { private String product; private String checkTaskStatus; private Integer checkTaskDoingCount; private Integer checkTaskFailedCount; private Integer checkTaskDoneCount; private String resourceSyncTaskStatus; public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; } public String getCheckTaskStatus() { return this.checkTaskStatus; } public void setCheckTaskStatus(String checkTaskStatus) { this.checkTaskStatus = checkTaskStatus; } public Integer getCheckTaskDoingCount() { return this.checkTaskDoingCount; } public void setCheckTaskDoingCount(Integer checkTaskDoingCount) { this.checkTaskDoingCount = checkTaskDoingCount; } public Integer getCheckTaskFailedCount() { return this.checkTaskFailedCount; } public void setCheckTaskFailedCount(Integer checkTaskFailedCount) { this.checkTaskFailedCount = checkTaskFailedCount; } public Integer getCheckTaskDoneCount() { return this.checkTaskDoneCount; } public void setCheckTaskDoneCount(Integer checkTaskDoneCount) { this.checkTaskDoneCount = checkTaskDoneCount; } public String getResourceSyncTaskStatus() { return this.resourceSyncTaskStatus; } public void setResourceSyncTaskStatus(String resourceSyncTaskStatus) { this.resourceSyncTaskStatus = resourceSyncTaskStatus; } } @Override public GetTaskStatusResponse getInstance(UnmarshallerContext context) { return GetTaskStatusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetUserCheckReportRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetUserCheckReportRequest extends RpcAcsRequest<GetUserCheckReportResponse> { private String timeZone; private String filterValue; private String language; private String filterType; private String token; private String region; public GetUserCheckReportRequest() { super("Advisor-Share", "2018-06-08", "GetUserCheckReport", "advisor"); setMethod(MethodType.POST); } public String getTimeZone() { return this.timeZone; } public void setTimeZone(String timeZone) { this.timeZone = timeZone; if(timeZone != null){ putQueryParameter("TimeZone", timeZone); } } public String getFilterValue() { return this.filterValue; } public void setFilterValue(String filterValue) { this.filterValue = filterValue; if(filterValue != null){ putQueryParameter("FilterValue", filterValue); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public String getFilterType() { return this.filterType; } public void setFilterType(String filterType) { this.filterType = filterType; if(filterType != null){ putQueryParameter("FilterType", filterType); } } public String getToken() { return this.token; } public void setToken(String token) { this.token = token; if(token != null){ putQueryParameter("Token", token); } } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("Region", region); } } @Override public Class<GetUserCheckReportResponse> getResponseClass() { return GetUserCheckReportResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetUserCheckReportResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.GetUserCheckReportResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetUserCheckReportResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Boolean reportExist; private String excelReportUrl; private String reportGenerateTime; private String pdfReportUrl; private String weeklyReportUrl; private String weeklyGenerateTime; public Boolean getReportExist() { return this.reportExist; } public void setReportExist(Boolean reportExist) { this.reportExist = reportExist; } public String getExcelReportUrl() { return this.excelReportUrl; } public void setExcelReportUrl(String excelReportUrl) { this.excelReportUrl = excelReportUrl; } public String getReportGenerateTime() { return this.reportGenerateTime; } public void setReportGenerateTime(String reportGenerateTime) { this.reportGenerateTime = reportGenerateTime; } public String getPdfReportUrl() { return this.pdfReportUrl; } public void setPdfReportUrl(String pdfReportUrl) { this.pdfReportUrl = pdfReportUrl; } public String getWeeklyReportUrl() { return this.weeklyReportUrl; } public void setWeeklyReportUrl(String weeklyReportUrl) { this.weeklyReportUrl = weeklyReportUrl; } public String getWeeklyGenerateTime() { return this.weeklyGenerateTime; } public void setWeeklyGenerateTime(String weeklyGenerateTime) { this.weeklyGenerateTime = weeklyGenerateTime; } } @Override public GetUserCheckReportResponse getInstance(UnmarshallerContext context) { return GetUserCheckReportResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetUserEmailReportRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetUserEmailReportRequest extends RpcAcsRequest<GetUserEmailReportResponse> { private String timeZone; private String filterValue; private String language; private String filterType; private String token; private String region; public GetUserEmailReportRequest() { super("Advisor-Share", "2018-06-08", "GetUserEmailReport", "advisor"); setMethod(MethodType.POST); } public String getTimeZone() { return this.timeZone; } public void setTimeZone(String timeZone) { this.timeZone = timeZone; if(timeZone != null){ putQueryParameter("TimeZone", timeZone); } } public String getFilterValue() { return this.filterValue; } public void setFilterValue(String filterValue) { this.filterValue = filterValue; if(filterValue != null){ putQueryParameter("FilterValue", filterValue); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public String getFilterType() { return this.filterType; } public void setFilterType(String filterType) { this.filterType = filterType; if(filterType != null){ putQueryParameter("FilterType", filterType); } } public String getToken() { return this.token; } public void setToken(String token) { this.token = token; if(token != null){ putQueryParameter("Token", token); } } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("Region", region); } } @Override public Class<GetUserEmailReportResponse> getResponseClass() { return GetUserEmailReportResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetUserEmailReportResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.GetUserEmailReportResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetUserEmailReportResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Boolean reportExist; private String excelReportUrl; private String reportGenerateTime; private String pdfReportUrl; private String weeklyReportUrl; private String weeklyGenerateTime; public Boolean getReportExist() { return this.reportExist; } public void setReportExist(Boolean reportExist) { this.reportExist = reportExist; } public String getExcelReportUrl() { return this.excelReportUrl; } public void setExcelReportUrl(String excelReportUrl) { this.excelReportUrl = excelReportUrl; } public String getReportGenerateTime() { return this.reportGenerateTime; } public void setReportGenerateTime(String reportGenerateTime) { this.reportGenerateTime = reportGenerateTime; } public String getPdfReportUrl() { return this.pdfReportUrl; } public void setPdfReportUrl(String pdfReportUrl) { this.pdfReportUrl = pdfReportUrl; } public String getWeeklyReportUrl() { return this.weeklyReportUrl; } public void setWeeklyReportUrl(String weeklyReportUrl) { this.weeklyReportUrl = weeklyReportUrl; } public String getWeeklyGenerateTime() { return this.weeklyGenerateTime; } public void setWeeklyGenerateTime(String weeklyGenerateTime) { this.weeklyGenerateTime = weeklyGenerateTime; } } @Override public GetUserEmailReportResponse getInstance(UnmarshallerContext context) { return GetUserEmailReportResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetUserListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetUserListRequest extends RpcAcsRequest<GetUserListResponse> { private Integer pageSize; private Integer pageNumber; public GetUserListRequest() { super("Advisor-Share", "2018-06-08", "GetUserList", "advisor"); setMethod(MethodType.GET); } 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<GetUserListResponse> getResponseClass() { return GetUserListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetUserListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.GetUserListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetUserListResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNo; private Integer pageSize; private Integer total; private List<String> result; public Integer getPageNo() { return this.pageNo; } public void setPageNo(Integer pageNo) { this.pageNo = pageNo; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public List<String> getResult() { return this.result; } public void setResult(List<String> result) { this.result = result; } } @Override public GetUserListResponse getInstance(UnmarshallerContext context) { return GetUserListResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetUserReportRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetUserReportRequest extends RpcAcsRequest<GetUserReportResponse> { private String reportType; private String timeZone; private String filterValue; private String language; private String filterType; private String category; private String region; private String checkId; public GetUserReportRequest() { super("Advisor-Share", "2018-06-08", "GetUserReport", "advisor"); setMethod(MethodType.POST); } public String getReportType() { return this.reportType; } public void setReportType(String reportType) { this.reportType = reportType; if(reportType != null){ putQueryParameter("ReportType", reportType); } } public String getTimeZone() { return this.timeZone; } public void setTimeZone(String timeZone) { this.timeZone = timeZone; if(timeZone != null){ putQueryParameter("TimeZone", timeZone); } } public String getFilterValue() { return this.filterValue; } public void setFilterValue(String filterValue) { this.filterValue = filterValue; if(filterValue != null){ putQueryParameter("FilterValue", filterValue); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public String getFilterType() { return this.filterType; } public void setFilterType(String filterType) { this.filterType = filterType; if(filterType != null){ putQueryParameter("FilterType", filterType); } } public String getCategory() { return this.category; } public void setCategory(String category) { this.category = category; if(category != null){ putQueryParameter("Category", category); } } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("Region", region); } } public String getCheckId() { return this.checkId; } public void setCheckId(String checkId) { this.checkId = checkId; if(checkId != null){ putQueryParameter("CheckId", checkId); } } @Override public Class<GetUserReportResponse> getResponseClass() { return GetUserReportResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetUserReportResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.GetUserReportResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetUserReportResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String reportUrl; public String getReportUrl() { return this.reportUrl; } public void setReportUrl(String reportUrl) { this.reportUrl = reportUrl; } } @Override public GetUserReportResponse getInstance(UnmarshallerContext context) { return GetUserReportResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetUserReportSubscriptionInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetUserReportSubscriptionInfoRequest extends RpcAcsRequest<GetUserReportSubscriptionInfoResponse> { public GetUserReportSubscriptionInfoRequest() { super("Advisor-Share", "2018-06-08", "GetUserReportSubscriptionInfo", "advisor"); setMethod(MethodType.POST); } @Override public Class<GetUserReportSubscriptionInfoResponse> getResponseClass() { return GetUserReportSubscriptionInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetUserReportSubscriptionInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.GetUserReportSubscriptionInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetUserReportSubscriptionInfoResponse extends AcsResponse { private Boolean success; private String requestId; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Boolean reportSubscribe; private String timeZone; private String dailySendTime; private Boolean weeklySubscribe; private String weeklySendTime; private String reportSendTime; private Boolean dailySubscribe; private String weeklySendFrequency; private String reportSendFrequency; private String language; private List<EmailsItem> emails; public Boolean getReportSubscribe() { return this.reportSubscribe; } public void setReportSubscribe(Boolean reportSubscribe) { this.reportSubscribe = reportSubscribe; } public String getTimeZone() { return this.timeZone; } public void setTimeZone(String timeZone) { this.timeZone = timeZone; } public String getDailySendTime() { return this.dailySendTime; } public void setDailySendTime(String dailySendTime) { this.dailySendTime = dailySendTime; } public Boolean getWeeklySubscribe() { return this.weeklySubscribe; } public void setWeeklySubscribe(Boolean weeklySubscribe) { this.weeklySubscribe = weeklySubscribe; } public String getWeeklySendTime() { return this.weeklySendTime; } public void setWeeklySendTime(String weeklySendTime) { this.weeklySendTime = weeklySendTime; } public String getReportSendTime() { return this.reportSendTime; } public void setReportSendTime(String reportSendTime) { this.reportSendTime = reportSendTime; } public Boolean getDailySubscribe() { return this.dailySubscribe; } public void setDailySubscribe(Boolean dailySubscribe) { this.dailySubscribe = dailySubscribe; } public String getWeeklySendFrequency() { return this.weeklySendFrequency; } public void setWeeklySendFrequency(String weeklySendFrequency) { this.weeklySendFrequency = weeklySendFrequency; } public String getReportSendFrequency() { return this.reportSendFrequency; } public void setReportSendFrequency(String reportSendFrequency) { this.reportSendFrequency = reportSendFrequency; } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; } public List<EmailsItem> getEmails() { return this.emails; } public void setEmails(List<EmailsItem> emails) { this.emails = emails; } public static class EmailsItem { private Boolean _default; private String email; private Boolean subscribe; public Boolean get_Default() { return this._default; } public void set_Default(Boolean _default) { this._default = _default; } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; } public Boolean getSubscribe() { return this.subscribe; } public void setSubscribe(Boolean subscribe) { this.subscribe = subscribe; } } } @Override public GetUserReportSubscriptionInfoResponse getInstance(UnmarshallerContext context) { return GetUserReportSubscriptionInfoResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetUserReportSubscriptionRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetUserReportSubscriptionRequest extends RpcAcsRequest<GetUserReportSubscriptionResponse> { public GetUserReportSubscriptionRequest() { super("Advisor-Share", "2018-06-08", "GetUserReportSubscription", "advisor"); setMethod(MethodType.POST); } @Override public Class<GetUserReportSubscriptionResponse> getResponseClass() { return GetUserReportSubscriptionResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetUserReportSubscriptionResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.GetUserReportSubscriptionResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetUserReportSubscriptionResponse extends AcsResponse { private Boolean success; private String requestId; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String timeZone; private String mobile; private String sendEmailFrequency; private String language; private Boolean subscribe; private List<EmailsItem> emails; public String getTimeZone() { return this.timeZone; } public void setTimeZone(String timeZone) { this.timeZone = timeZone; } public String getMobile() { return this.mobile; } public void setMobile(String mobile) { this.mobile = mobile; } public String getSendEmailFrequency() { return this.sendEmailFrequency; } public void setSendEmailFrequency(String sendEmailFrequency) { this.sendEmailFrequency = sendEmailFrequency; } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; } public Boolean getSubscribe() { return this.subscribe; } public void setSubscribe(Boolean subscribe) { this.subscribe = subscribe; } public List<EmailsItem> getEmails() { return this.emails; } public void setEmails(List<EmailsItem> emails) { this.emails = emails; } public static class EmailsItem { private Boolean _default; private String email; private Boolean subscribe; public Boolean get_Default() { return this._default; } public void set_Default(Boolean _default) { this._default = _default; } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; } public Boolean getSubscribe() { return this.subscribe; } public void setSubscribe(Boolean subscribe) { this.subscribe = subscribe; } } } @Override public GetUserReportSubscriptionResponse getInstance(UnmarshallerContext context) { return GetUserReportSubscriptionResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetViewMessageRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetViewMessageRequest extends RpcAcsRequest<GetViewMessageResponse> { private String key; public GetViewMessageRequest() { super("Advisor-Share", "2018-06-08", "GetViewMessage", "advisor"); setMethod(MethodType.POST); } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; if(key != null){ putQueryParameter("Key", key); } } @Override public Class<GetViewMessageResponse> getResponseClass() { return GetViewMessageResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/GetViewMessageResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.GetViewMessageResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetViewMessageResponse extends AcsResponse { private String message; private String data; private String requestId; private Boolean success; public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } @Override public GetViewMessageResponse getInstance(UnmarshallerContext context) { return GetViewMessageResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/InviteAccountAssociationRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class InviteAccountAssociationRequest extends RpcAcsRequest<InviteAccountAssociationResponse> { private String targetAliyunId; private String language; public InviteAccountAssociationRequest() { super("Advisor-Share", "2018-06-08", "InviteAccountAssociation", "advisor"); setMethod(MethodType.POST); } public String getTargetAliyunId() { return this.targetAliyunId; } public void setTargetAliyunId(String targetAliyunId) { this.targetAliyunId = targetAliyunId; if(targetAliyunId != null){ putQueryParameter("TargetAliyunId", targetAliyunId); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } @Override public Class<InviteAccountAssociationResponse> getResponseClass() { return InviteAccountAssociationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/InviteAccountAssociationResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.InviteAccountAssociationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class InviteAccountAssociationResponse extends AcsResponse { private String requestId; private Boolean success; private String data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } @Override public InviteAccountAssociationResponse getInstance(UnmarshallerContext context) { return InviteAccountAssociationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListAllAppInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListAllAppInfoRequest extends RpcAcsRequest<ListAllAppInfoResponse> { private Long pageNumber; private Long pageSize; public ListAllAppInfoRequest() { super("Advisor-Share", "2018-06-08", "ListAllAppInfo", "advisor"); setMethod(MethodType.POST); } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<ListAllAppInfoResponse> getResponseClass() { return ListAllAppInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListAllAppInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.ListAllAppInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListAllAppInfoResponse extends AcsResponse { private Boolean success; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long pageNumber; private Long pageSize; private Long total; private List<Result> dataList; public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public List<Result> getDataList() { return this.dataList; } public void setDataList(List<Result> dataList) { this.dataList = dataList; } public static class Result { private String appId; private String appName; public String getAppId() { return this.appId; } public void setAppId(String appId) { this.appId = appId; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } } } @Override public ListAllAppInfoResponse getInstance(UnmarshallerContext context) { return ListAllAppInfoResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListAppInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListAppInfoRequest extends RpcAcsRequest<ListAppInfoResponse> { private Long departmentId; private String language; private Integer pageNumber; private String appName; private Integer pageSize; public ListAppInfoRequest() { super("Advisor-Share", "2018-06-08", "ListAppInfo", "advisor"); setMethod(MethodType.POST); } public Long getDepartmentId() { return this.departmentId; } public void setDepartmentId(Long departmentId) { this.departmentId = departmentId; if(departmentId != null){ putQueryParameter("DepartmentId", departmentId.toString()); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<ListAppInfoResponse> getResponseClass() { return ListAppInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListAppInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.ListAppInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListAppInfoResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNo; private Integer pageSize; private Integer total; private List<Resource> result; public Integer getPageNo() { return this.pageNo; } public void setPageNo(Integer pageNo) { this.pageNo = pageNo; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public List<Resource> getResult() { return this.result; } public void setResult(List<Resource> result) { this.result = result; } public static class Resource { private Long appId; private String appName; private Integer resourceCount; private String contactName; private String contactMobile; 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 Integer getResourceCount() { return this.resourceCount; } public void setResourceCount(Integer resourceCount) { this.resourceCount = resourceCount; } public String getContactName() { return this.contactName; } public void setContactName(String contactName) { this.contactName = contactName; } public String getContactMobile() { return this.contactMobile; } public void setContactMobile(String contactMobile) { this.contactMobile = contactMobile; } } } @Override public ListAppInfoResponse getInstance(UnmarshallerContext context) { return ListAppInfoResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListAppResourcesInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListAppResourcesInfoRequest extends RpcAcsRequest<ListAppResourcesInfoResponse> { private String resourceId; private String language; private Integer pageNumber; private String productType; private Long appId; private Integer pageSize; private String resourceName; private String resourceRegionInfo; public ListAppResourcesInfoRequest() { super("Advisor-Share", "2018-06-08", "ListAppResourcesInfo", "advisor"); setMethod(MethodType.POST); } public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; if(resourceId != null){ putQueryParameter("ResourceId", resourceId); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; if(productType != null){ putQueryParameter("ProductType", productType); } } 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 String getResourceName() { return this.resourceName; } public void setResourceName(String resourceName) { this.resourceName = resourceName; if(resourceName != null){ putQueryParameter("ResourceName", resourceName); } } public String getResourceRegionInfo() { return this.resourceRegionInfo; } public void setResourceRegionInfo(String resourceRegionInfo) { this.resourceRegionInfo = resourceRegionInfo; if(resourceRegionInfo != null){ putQueryParameter("ResourceRegionInfo", resourceRegionInfo); } } @Override public Class<ListAppResourcesInfoResponse> getResponseClass() { return ListAppResourcesInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListAppResourcesInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.ListAppResourcesInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListAppResourcesInfoResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNo; private Integer pageSize; private Integer total; private List<Resource> result; public Integer getPageNo() { return this.pageNo; } public void setPageNo(Integer pageNo) { this.pageNo = pageNo; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public List<Resource> getResult() { return this.result; } public void setResult(List<Resource> result) { this.result = result; } public static class Resource { private String resourceId; private String resourceName; private String resourceUrl; private String productGroup; private String product; private String regionId; private String app; private String extension; private List<String> tags; public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; } public String getResourceName() { return this.resourceName; } public void setResourceName(String resourceName) { this.resourceName = resourceName; } public String getResourceUrl() { return this.resourceUrl; } public void setResourceUrl(String resourceUrl) { this.resourceUrl = resourceUrl; } public String getProductGroup() { return this.productGroup; } public void setProductGroup(String productGroup) { this.productGroup = productGroup; } public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getApp() { return this.app; } public void setApp(String app) { this.app = app; } public String getExtension() { return this.extension; } public void setExtension(String extension) { this.extension = extension; } public List<String> getTags() { return this.tags; } public void setTags(List<String> tags) { this.tags = tags; } } } @Override public ListAppResourcesInfoResponse getInstance(UnmarshallerContext context) { return ListAppResourcesInfoResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListCostDetailsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListCostDetailsRequest extends RpcAcsRequest<ListCostDetailsResponse> { private String productCode; private String ruleType; private String departmentId; private Long pageNumber; private String instanceName; private String instanceId; private String appId; private String sorting; private Long pageSize; private String chargeType; private String sortField; public ListCostDetailsRequest() { super("Advisor-Share", "2018-06-08", "ListCostDetails", "advisor"); setMethod(MethodType.POST); } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public String getRuleType() { return this.ruleType; } public void setRuleType(String ruleType) { this.ruleType = ruleType; if(ruleType != null){ putQueryParameter("RuleType", ruleType); } } public String getDepartmentId() { return this.departmentId; } public void setDepartmentId(String departmentId) { this.departmentId = departmentId; if(departmentId != null){ putQueryParameter("DepartmentId", departmentId); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getInstanceName() { return this.instanceName; } public void setInstanceName(String instanceName) { this.instanceName = instanceName; if(instanceName != null){ putQueryParameter("InstanceName", instanceName); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getAppId() { return this.appId; } public void setAppId(String appId) { this.appId = appId; if(appId != null){ putQueryParameter("AppId", appId); } } public String getSorting() { return this.sorting; } public void setSorting(String sorting) { this.sorting = sorting; if(sorting != null){ putQueryParameter("Sorting", sorting); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getChargeType() { return this.chargeType; } public void setChargeType(String chargeType) { this.chargeType = chargeType; if(chargeType != null){ putQueryParameter("ChargeType", chargeType); } } public String getSortField() { return this.sortField; } public void setSortField(String sortField) { this.sortField = sortField; if(sortField != null){ putQueryParameter("SortField", sortField); } } @Override public Class<ListCostDetailsResponse> getResponseClass() { return ListCostDetailsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListCostDetailsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.ListCostDetailsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListCostDetailsResponse extends AcsResponse { private Boolean success; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long pageNumber; private Long pageSize; private Long total; private List<DataListItem> dataList; public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public List<DataListItem> getDataList() { return this.dataList; } public void setDataList(List<DataListItem> dataList) { this.dataList = dataList; } public static class DataListItem { private String appName; private String chargeType; private Double costAfter; private Double costBefore; private Double costSavings; private String departmentName; private String instanceId; private String instanceName; private String productCode; private String instanceClass; public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public String getChargeType() { return this.chargeType; } public void setChargeType(String chargeType) { this.chargeType = chargeType; } public Double getCostAfter() { return this.costAfter; } public void setCostAfter(Double costAfter) { this.costAfter = costAfter; } public Double getCostBefore() { return this.costBefore; } public void setCostBefore(Double costBefore) { this.costBefore = costBefore; } public Double getCostSavings() { return this.costSavings; } public void setCostSavings(Double costSavings) { this.costSavings = costSavings; } public String getDepartmentName() { return this.departmentName; } public void setDepartmentName(String departmentName) { this.departmentName = departmentName; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getInstanceName() { return this.instanceName; } public void setInstanceName(String instanceName) { this.instanceName = instanceName; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } public String getInstanceClass() { return this.instanceClass; } public void setInstanceClass(String instanceClass) { this.instanceClass = instanceClass; } } } @Override public ListCostDetailsResponse getInstance(UnmarshallerContext context) { return ListCostDetailsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListCostProblemRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListCostProblemRequest extends RpcAcsRequest<ListCostProblemResponse> { private String queryGroupType; private Long pageNumber; private String sorting; private Long pageSize; private String sortField; private String queryGroupId; public ListCostProblemRequest() { super("Advisor-Share", "2018-06-08", "ListCostProblem", "advisor"); setMethod(MethodType.POST); } public String getQueryGroupType() { return this.queryGroupType; } public void setQueryGroupType(String queryGroupType) { this.queryGroupType = queryGroupType; if(queryGroupType != null){ putQueryParameter("QueryGroupType", queryGroupType); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getSorting() { return this.sorting; } public void setSorting(String sorting) { this.sorting = sorting; if(sorting != null){ putQueryParameter("Sorting", sorting); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getSortField() { return this.sortField; } public void setSortField(String sortField) { this.sortField = sortField; if(sortField != null){ putQueryParameter("SortField", sortField); } } public String getQueryGroupId() { return this.queryGroupId; } public void setQueryGroupId(String queryGroupId) { this.queryGroupId = queryGroupId; if(queryGroupId != null){ putQueryParameter("QueryGroupId", queryGroupId); } } @Override public Class<ListCostProblemResponse> getResponseClass() { return ListCostProblemResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListCostProblemResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.ListCostProblemResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListCostProblemResponse extends AcsResponse { private Boolean success; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long pageNumber; private Long pageSize; private Long total; private ResultData resultData; public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public ResultData getResultData() { return this.resultData; } public void setResultData(ResultData resultData) { this.resultData = resultData; } public static class ResultData { private Double totalCostSavings; private Long totalOptimizeNum; private String inspectDate; private Long taskId; private List<DataListItem> dataList; public Double getTotalCostSavings() { return this.totalCostSavings; } public void setTotalCostSavings(Double totalCostSavings) { this.totalCostSavings = totalCostSavings; } public Long getTotalOptimizeNum() { return this.totalOptimizeNum; } public void setTotalOptimizeNum(Long totalOptimizeNum) { this.totalOptimizeNum = totalOptimizeNum; } public String getInspectDate() { return this.inspectDate; } public void setInspectDate(String inspectDate) { this.inspectDate = inspectDate; } public Long getTaskId() { return this.taskId; } public void setTaskId(Long taskId) { this.taskId = taskId; } public List<DataListItem> getDataList() { return this.dataList; } public void setDataList(List<DataListItem> dataList) { this.dataList = dataList; } public static class DataListItem { private Long appNum; private Double costSavings; private Long instanceNum; private Long optimizeNum; private Long productNum; private String queryGroupId; private String queryGroupName; public Long getAppNum() { return this.appNum; } public void setAppNum(Long appNum) { this.appNum = appNum; } public Double getCostSavings() { return this.costSavings; } public void setCostSavings(Double costSavings) { this.costSavings = costSavings; } public Long getInstanceNum() { return this.instanceNum; } public void setInstanceNum(Long instanceNum) { this.instanceNum = instanceNum; } public Long getOptimizeNum() { return this.optimizeNum; } public void setOptimizeNum(Long optimizeNum) { this.optimizeNum = optimizeNum; } public Long getProductNum() { return this.productNum; } public void setProductNum(Long productNum) { this.productNum = productNum; } public String getQueryGroupId() { return this.queryGroupId; } public void setQueryGroupId(String queryGroupId) { this.queryGroupId = queryGroupId; } public String getQueryGroupName() { return this.queryGroupName; } public void setQueryGroupName(String queryGroupName) { this.queryGroupName = queryGroupName; } } } } @Override public ListCostProblemResponse getInstance(UnmarshallerContext context) { return ListCostProblemResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListCostTrendRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListCostTrendRequest extends RpcAcsRequest<ListCostTrendResponse> { private String queryGroupType; private String queryGroupId; public ListCostTrendRequest() { super("Advisor-Share", "2018-06-08", "ListCostTrend", "advisor"); setMethod(MethodType.POST); } public String getQueryGroupType() { return this.queryGroupType; } public void setQueryGroupType(String queryGroupType) { this.queryGroupType = queryGroupType; if(queryGroupType != null){ putQueryParameter("QueryGroupType", queryGroupType); } } public String getQueryGroupId() { return this.queryGroupId; } public void setQueryGroupId(String queryGroupId) { this.queryGroupId = queryGroupId; if(queryGroupId != null){ putQueryParameter("QueryGroupId", queryGroupId); } } @Override public Class<ListCostTrendResponse> getResponseClass() { return ListCostTrendResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListCostTrendResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.ListCostTrendResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListCostTrendResponse extends AcsResponse { private Boolean success; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String graphName; private String xUnit; private String yUnit; private List<LineVOListItem> lineVOList; public String getGraphName() { return this.graphName; } public void setGraphName(String graphName) { this.graphName = graphName; } public String getXUnit() { return this.xUnit; } public void setXUnit(String xUnit) { this.xUnit = xUnit; } public String getYUnit() { return this.yUnit; } public void setYUnit(String yUnit) { this.yUnit = yUnit; } public List<LineVOListItem> getLineVOList() { return this.lineVOList; } public void setLineVOList(List<LineVOListItem> lineVOList) { this.lineVOList = lineVOList; } public static class LineVOListItem { private String name; private List<PointVOListItem> pointVOList; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public List<PointVOListItem> getPointVOList() { return this.pointVOList; } public void setPointVOList(List<PointVOListItem> pointVOList) { this.pointVOList = pointVOList; } public static class PointVOListItem { private String x; private String y; public String getX() { return this.x; } public void setX(String x) { this.x = x; } public String getY() { return this.y; } public void setY(String y) { this.y = y; } } } } @Override public ListCostTrendResponse getInstance(UnmarshallerContext context) { return ListCostTrendResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListDepartmentRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListDepartmentRequest extends RpcAcsRequest<ListDepartmentResponse> { private Long pageNumber; private Long pageSize; public ListDepartmentRequest() { super("Advisor-Share", "2018-06-08", "ListDepartment", "advisor"); setMethod(MethodType.POST); } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<ListDepartmentResponse> getResponseClass() { return ListDepartmentResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListDepartmentResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.ListDepartmentResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListDepartmentResponse extends AcsResponse { private Boolean success; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long total; private Long pageNumber; private Long pageSize; private List<DataListItem> dataList; public Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public List<DataListItem> getDataList() { return this.dataList; } public void setDataList(List<DataListItem> dataList) { this.dataList = dataList; } public static class DataListItem { private String departmentName; private String departmentId; public String getDepartmentName() { return this.departmentName; } public void setDepartmentName(String departmentName) { this.departmentName = departmentName; } public String getDepartmentId() { return this.departmentId; } public void setDepartmentId(String departmentId) { this.departmentId = departmentId; } } } @Override public ListDepartmentResponse getInstance(UnmarshallerContext context) { return ListDepartmentResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListPrimaryAccountsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListPrimaryAccountsRequest extends RpcAcsRequest<ListPrimaryAccountsResponse> { private String language; private Integer pageNumber; private Integer pageSize; public ListPrimaryAccountsRequest() { super("Advisor-Share", "2018-06-08", "ListPrimaryAccounts", "advisor"); setMethod(MethodType.POST); } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<ListPrimaryAccountsResponse> getResponseClass() { return ListPrimaryAccountsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListPrimaryAccountsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.ListPrimaryAccountsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListPrimaryAccountsResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNo; private Integer pageSize; private Integer total; private List<Resource> result; public Integer getPageNo() { return this.pageNo; } public void setPageNo(Integer pageNo) { this.pageNo = pageNo; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public List<Resource> getResult() { return this.result; } public void setResult(List<Resource> result) { this.result = result; } public static class Resource { private Long id; private Long primaryAliyunId; private String primaryUserName; private Long subAliyunId; private String subUserName; private Integer status; private String gmtModified; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public Long getPrimaryAliyunId() { return this.primaryAliyunId; } public void setPrimaryAliyunId(Long primaryAliyunId) { this.primaryAliyunId = primaryAliyunId; } public String getPrimaryUserName() { return this.primaryUserName; } public void setPrimaryUserName(String primaryUserName) { this.primaryUserName = primaryUserName; } public Long getSubAliyunId() { return this.subAliyunId; } public void setSubAliyunId(Long subAliyunId) { this.subAliyunId = subAliyunId; } public String getSubUserName() { return this.subUserName; } public void setSubUserName(String subUserName) { this.subUserName = subUserName; } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } } } @Override public ListPrimaryAccountsResponse getInstance(UnmarshallerContext context) { return ListPrimaryAccountsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListProductRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListProductRequest extends RpcAcsRequest<ListProductResponse> { private Long pageNumber; private Long pageSize; public ListProductRequest() { super("Advisor-Share", "2018-06-08", "ListProduct", "advisor"); setMethod(MethodType.POST); } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<ListProductResponse> getResponseClass() { return ListProductResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListProductResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.ListProductResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListProductResponse extends AcsResponse { private Boolean success; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long pageNumber; private Long pageSize; private Long total; private List<DataListItem> dataList; public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public List<DataListItem> getDataList() { return this.dataList; } public void setDataList(List<DataListItem> dataList) { this.dataList = dataList; } public static class DataListItem { private String code; private String id; private String name; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } } @Override public ListProductResponse getInstance(UnmarshallerContext context) { return ListProductResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListResourceInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListResourceInfoRequest extends RpcAcsRequest<ListResourceInfoResponse> { private String product; private String resourceId; private String language; private Integer pageNumber; private Integer pageSize; private String productGroup; private String resourceName; private String tag; private String resourceRegionInfo; public ListResourceInfoRequest() { super("Advisor-Share", "2018-06-08", "ListResourceInfo", "advisor"); setMethod(MethodType.POST); } public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; if(product != null){ putQueryParameter("Product", product); } } public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; if(resourceId != null){ putQueryParameter("ResourceId", resourceId); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getProductGroup() { return this.productGroup; } public void setProductGroup(String productGroup) { this.productGroup = productGroup; if(productGroup != null){ putQueryParameter("ProductGroup", productGroup); } } public String getResourceName() { return this.resourceName; } public void setResourceName(String resourceName) { this.resourceName = resourceName; if(resourceName != null){ putQueryParameter("ResourceName", resourceName); } } public String getTag() { return this.tag; } public void setTag(String tag) { this.tag = tag; if(tag != null){ putQueryParameter("Tag", tag); } } public String getResourceRegionInfo() { return this.resourceRegionInfo; } public void setResourceRegionInfo(String resourceRegionInfo) { this.resourceRegionInfo = resourceRegionInfo; if(resourceRegionInfo != null){ putQueryParameter("ResourceRegionInfo", resourceRegionInfo); } } @Override public Class<ListResourceInfoResponse> getResponseClass() { return ListResourceInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListResourceInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.ListResourceInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListResourceInfoResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNo; private Integer pageSize; private Integer total; private List<Resource> result; public Integer getPageNo() { return this.pageNo; } public void setPageNo(Integer pageNo) { this.pageNo = pageNo; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public List<Resource> getResult() { return this.result; } public void setResult(List<Resource> result) { this.result = result; } public static class Resource { private String resourceId; private String resourceName; private String resourceUrl; private String productGroup; private String product; private String regionId; private String app; private String extension; private List<String> tags; public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; } public String getResourceName() { return this.resourceName; } public void setResourceName(String resourceName) { this.resourceName = resourceName; } public String getResourceUrl() { return this.resourceUrl; } public void setResourceUrl(String resourceUrl) { this.resourceUrl = resourceUrl; } public String getProductGroup() { return this.productGroup; } public void setProductGroup(String productGroup) { this.productGroup = productGroup; } public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getApp() { return this.app; } public void setApp(String app) { this.app = app; } public String getExtension() { return this.extension; } public void setExtension(String extension) { this.extension = extension; } public List<String> getTags() { return this.tags; } public void setTags(List<String> tags) { this.tags = tags; } } } @Override public ListResourceInfoResponse getInstance(UnmarshallerContext context) { return ListResourceInfoResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListRuleTemplateRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListRuleTemplateRequest extends RpcAcsRequest<ListRuleTemplateResponse> { private String keywords; private Long pageNumber; private Long pageSize; public ListRuleTemplateRequest() { super("Advisor-Share", "2018-06-08", "ListRuleTemplate", "advisor"); setMethod(MethodType.POST); } public String getKeywords() { return this.keywords; } public void setKeywords(String keywords) { this.keywords = keywords; if(keywords != null){ putQueryParameter("Keywords", keywords); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<ListRuleTemplateResponse> getResponseClass() { return ListRuleTemplateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListRuleTemplateResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.ListRuleTemplateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListRuleTemplateResponse extends AcsResponse { private Boolean success; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long pageNumber; private Long pageSize; private Long total; private List<DataListItem> dataList; public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public List<DataListItem> getDataList() { return this.dataList; } public void setDataList(List<DataListItem> dataList) { this.dataList = dataList; } public static class DataListItem { private String gmtCreate; private String gmtModified; private Long id; private String name; private String namespace; private String ownerId; private String type; public String getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public String getOwnerId() { return this.ownerId; } public void setOwnerId(String ownerId) { this.ownerId = ownerId; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } } } @Override public ListRuleTemplateResponse getInstance(UnmarshallerContext context) { return ListRuleTemplateResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListSubAccountsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListSubAccountsRequest extends RpcAcsRequest<ListSubAccountsResponse> { private String language; private Integer pageNumber; private Integer pageSize; public ListSubAccountsRequest() { super("Advisor-Share", "2018-06-08", "ListSubAccounts", "advisor"); setMethod(MethodType.POST); } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<ListSubAccountsResponse> getResponseClass() { return ListSubAccountsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListSubAccountsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.ListSubAccountsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListSubAccountsResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNo; private Integer pageSize; private Integer total; private List<Resource> result; public Integer getPageNo() { return this.pageNo; } public void setPageNo(Integer pageNo) { this.pageNo = pageNo; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public List<Resource> getResult() { return this.result; } public void setResult(List<Resource> result) { this.result = result; } public static class Resource { private Long id; private Long primaryAliyunId; private String primaryUserName; private Long subAliyunId; private String subUserName; private Integer status; private String gmtModified; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public Long getPrimaryAliyunId() { return this.primaryAliyunId; } public void setPrimaryAliyunId(Long primaryAliyunId) { this.primaryAliyunId = primaryAliyunId; } public String getPrimaryUserName() { return this.primaryUserName; } public void setPrimaryUserName(String primaryUserName) { this.primaryUserName = primaryUserName; } public Long getSubAliyunId() { return this.subAliyunId; } public void setSubAliyunId(Long subAliyunId) { this.subAliyunId = subAliyunId; } public String getSubUserName() { return this.subUserName; } public void setSubUserName(String subUserName) { this.subUserName = subUserName; } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } } } @Override public ListSubAccountsResponse getInstance(UnmarshallerContext context) { return ListSubAccountsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListTagInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListTagInfoRequest extends RpcAcsRequest<ListTagInfoResponse> { private String tagValue; private Long tagId; private String language; private String tagRegionInfo; private Integer pageNumber; private Integer pageSize; private String tagKey; public ListTagInfoRequest() { super("Advisor-Share", "2018-06-08", "ListTagInfo", "advisor"); setMethod(MethodType.POST); } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; if(tagValue != null){ putQueryParameter("TagValue", tagValue); } } public Long getTagId() { return this.tagId; } public void setTagId(Long tagId) { this.tagId = tagId; if(tagId != null){ putQueryParameter("TagId", tagId.toString()); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public String getTagRegionInfo() { return this.tagRegionInfo; } public void setTagRegionInfo(String tagRegionInfo) { this.tagRegionInfo = tagRegionInfo; if(tagRegionInfo != null){ putQueryParameter("TagRegionInfo", tagRegionInfo); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getTagKey() { return this.tagKey; } public void setTagKey(String tagKey) { this.tagKey = tagKey; if(tagKey != null){ putQueryParameter("TagKey", tagKey); } } @Override public Class<ListTagInfoResponse> getResponseClass() { return ListTagInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListTagInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.ListTagInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListTagInfoResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNo; private Integer pageSize; private Integer total; private List<Resource> result; public Integer getPageNo() { return this.pageNo; } public void setPageNo(Integer pageNo) { this.pageNo = pageNo; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public List<Resource> getResult() { return this.result; } public void setResult(List<Resource> result) { this.result = result; } public static class Resource { private Long tagId; private String tagKey; private String tagValue; private String regionId; private Integer resourceCount; public Long getTagId() { return this.tagId; } public void setTagId(Long tagId) { this.tagId = tagId; } public String getTagKey() { return this.tagKey; } public void setTagKey(String tagKey) { this.tagKey = tagKey; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public Integer getResourceCount() { return this.resourceCount; } public void setResourceCount(Integer resourceCount) { this.resourceCount = resourceCount; } } } @Override public ListTagInfoResponse getInstance(UnmarshallerContext context) { return ListTagInfoResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListTagResourcesInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListTagResourcesInfoRequest extends RpcAcsRequest<ListTagResourcesInfoResponse> { private String resourceId; private Long tagId; private String language; private Integer pageNumber; private String productType; private Integer pageSize; public ListTagResourcesInfoRequest() { super("Advisor-Share", "2018-06-08", "ListTagResourcesInfo", "advisor"); setMethod(MethodType.POST); } public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; if(resourceId != null){ putQueryParameter("ResourceId", resourceId); } } public Long getTagId() { return this.tagId; } public void setTagId(Long tagId) { this.tagId = tagId; if(tagId != null){ putQueryParameter("TagId", tagId.toString()); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getProductType() { return this.productType; } public void setProductType(String productType) { this.productType = productType; if(productType != null){ putQueryParameter("ProductType", productType); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<ListTagResourcesInfoResponse> getResponseClass() { return ListTagResourcesInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListTagResourcesInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.ListTagResourcesInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListTagResourcesInfoResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNo; private Integer pageSize; private Integer total; private List<Resource> result; public Integer getPageNo() { return this.pageNo; } public void setPageNo(Integer pageNo) { this.pageNo = pageNo; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public List<Resource> getResult() { return this.result; } public void setResult(List<Resource> result) { this.result = result; } public static class Resource { private String resourceId; private String resourceName; private String resourceUrl; private String regionId; private String productGroup; private String product; private String app; private String extension; private List<String> tags; public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; } public String getResourceName() { return this.resourceName; } public void setResourceName(String resourceName) { this.resourceName = resourceName; } public String getResourceUrl() { return this.resourceUrl; } public void setResourceUrl(String resourceUrl) { this.resourceUrl = resourceUrl; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getProductGroup() { return this.productGroup; } public void setProductGroup(String productGroup) { this.productGroup = productGroup; } public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; } public String getApp() { return this.app; } public void setApp(String app) { this.app = app; } public String getExtension() { return this.extension; } public void setExtension(String extension) { this.extension = extension; } public List<String> getTags() { return this.tags; } public void setTags(List<String> tags) { this.tags = tags; } } } @Override public ListTagResourcesInfoResponse getInstance(UnmarshallerContext context) { return ListTagResourcesInfoResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListTaskRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListTaskRequest extends RpcAcsRequest<ListTaskResponse> { private String keywords; private Long pageNumber; private Long pageSize; public ListTaskRequest() { super("Advisor-Share", "2018-06-08", "ListTask", "advisor"); setMethod(MethodType.POST); } public String getKeywords() { return this.keywords; } public void setKeywords(String keywords) { this.keywords = keywords; if(keywords != null){ putQueryParameter("Keywords", keywords); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<ListTaskResponse> getResponseClass() { return ListTaskResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListTaskResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.ListTaskResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListTaskResponse extends AcsResponse { private Boolean success; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long pageNumber; private Long pageSize; private Long total; private List<DataListItem> dataList; public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public List<DataListItem> getDataList() { return this.dataList; } public void setDataList(List<DataListItem> dataList) { this.dataList = dataList; } public static class DataListItem { private String endDate; private String gmtCreate; private String gmtModified; private Long id; private String name; private String startDate; private List<String> userIds; public String getEndDate() { return this.endDate; } public void setEndDate(String endDate) { this.endDate = endDate; } public String getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getStartDate() { return this.startDate; } public void setStartDate(String startDate) { this.startDate = startDate; } public List<String> getUserIds() { return this.userIds; } public void setUserIds(List<String> userIds) { this.userIds = userIds; } } } @Override public ListTaskResponse getInstance(UnmarshallerContext context) { return ListTaskResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListWaitingAccountsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListWaitingAccountsRequest extends RpcAcsRequest<ListWaitingAccountsResponse> { private String language; private Integer pageNumber; private Integer pageSize; public ListWaitingAccountsRequest() { super("Advisor-Share", "2018-06-08", "ListWaitingAccounts", "advisor"); setMethod(MethodType.POST); } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<ListWaitingAccountsResponse> getResponseClass() { return ListWaitingAccountsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ListWaitingAccountsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.ListWaitingAccountsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListWaitingAccountsResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer pageNo; private Integer pageSize; private Integer total; private List<Resource> result; public Integer getPageNo() { return this.pageNo; } public void setPageNo(Integer pageNo) { this.pageNo = pageNo; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public List<Resource> getResult() { return this.result; } public void setResult(List<Resource> result) { this.result = result; } public static class Resource { private Long id; private Long primaryAliyunId; private String primaryUserName; private Long subAliyunId; private String subUserName; private Integer status; private String gmtModified; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public Long getPrimaryAliyunId() { return this.primaryAliyunId; } public void setPrimaryAliyunId(Long primaryAliyunId) { this.primaryAliyunId = primaryAliyunId; } public String getPrimaryUserName() { return this.primaryUserName; } public void setPrimaryUserName(String primaryUserName) { this.primaryUserName = primaryUserName; } public Long getSubAliyunId() { return this.subAliyunId; } public void setSubAliyunId(Long subAliyunId) { this.subAliyunId = subAliyunId; } public String getSubUserName() { return this.subUserName; } public void setSubUserName(String subUserName) { this.subUserName = subUserName; } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } } } @Override public ListWaitingAccountsResponse getInstance(UnmarshallerContext context) { return ListWaitingAccountsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ModifyTranferMessageRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ModifyTranferMessageRequest extends RpcAcsRequest<ModifyTranferMessageResponse> { private String key; public ModifyTranferMessageRequest() { super("Advisor-Share", "2018-06-08", "ModifyTranferMessage", "advisor"); setMethod(MethodType.POST); } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; if(key != null){ putQueryParameter("Key", key); } } @Override public Class<ModifyTranferMessageResponse> getResponseClass() { return ModifyTranferMessageResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/ModifyTranferMessageResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.ModifyTranferMessageResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ModifyTranferMessageResponse extends AcsResponse { private String message; private Boolean data; private String requestId; private Boolean success; public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getData() { return this.data; } public void setData(Boolean data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } @Override public ModifyTranferMessageResponse getInstance(UnmarshallerContext context) { return ModifyTranferMessageResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/OfflineAdviceConfProjectRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class OfflineAdviceConfProjectRequest extends RpcAcsRequest<OfflineAdviceConfProjectResponse> { private String projectId; public OfflineAdviceConfProjectRequest() { super("Advisor-Share", "2018-06-08", "OfflineAdviceConfProject", "advisor"); setMethod(MethodType.POST); } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; if(projectId != null){ putBodyParameter("ProjectId", projectId); } } @Override public Class<OfflineAdviceConfProjectResponse> getResponseClass() { return OfflineAdviceConfProjectResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/OfflineAdviceConfProjectResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.OfflineAdviceConfProjectResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class OfflineAdviceConfProjectResponse extends AcsResponse { private String message; private String requestId; private Boolean success; public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } @Override public OfflineAdviceConfProjectResponse getInstance(UnmarshallerContext context) { return OfflineAdviceConfProjectResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryAccountRoleInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class QueryAccountRoleInfoRequest extends RpcAcsRequest<QueryAccountRoleInfoResponse> { private String language; public QueryAccountRoleInfoRequest() { super("Advisor-Share", "2018-06-08", "QueryAccountRoleInfo", "advisor"); setMethod(MethodType.POST); } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } @Override public Class<QueryAccountRoleInfoResponse> getResponseClass() { return QueryAccountRoleInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryAccountRoleInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.QueryAccountRoleInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryAccountRoleInfoResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long aliyunId; private Integer accountRole; public Long getAliyunId() { return this.aliyunId; } public void setAliyunId(Long aliyunId) { this.aliyunId = aliyunId; } public Integer getAccountRole() { return this.accountRole; } public void setAccountRole(Integer accountRole) { this.accountRole = accountRole; } } @Override public QueryAccountRoleInfoResponse getInstance(UnmarshallerContext context) { return QueryAccountRoleInfoResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryAdviceEffectsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class QueryAdviceEffectsRequest extends RpcAcsRequest<QueryAdviceEffectsResponse> { private String endDate; private String startDate; public QueryAdviceEffectsRequest() { super("Advisor-Share", "2018-06-08", "QueryAdviceEffects", "advisor"); setMethod(MethodType.POST); } public String getEndDate() { return this.endDate; } public void setEndDate(String endDate) { this.endDate = endDate; if(endDate != null){ putQueryParameter("EndDate", endDate); } } public String getStartDate() { return this.startDate; } public void setStartDate(String startDate) { this.startDate = startDate; if(startDate != null){ putQueryParameter("StartDate", startDate); } } @Override public Class<QueryAdviceEffectsResponse> getResponseClass() { return QueryAdviceEffectsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryAdviceEffectsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.QueryAdviceEffectsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryAdviceEffectsResponse extends AcsResponse { private String requestId; private List<Item> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<Item> getData() { return this.data; } public void setData(List<Item> data) { this.data = data; } public static class Item { private Long value; private Float percent; private String name; public Long getValue() { return this.value; } public void setValue(Long value) { this.value = value; } public Float getPercent() { return this.percent; } public void setPercent(Float percent) { this.percent = percent; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } @Override public QueryAdviceEffectsResponse getInstance(UnmarshallerContext context) { return QueryAdviceEffectsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryCheckItemCategoryStatRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class QueryCheckItemCategoryStatRequest extends RpcAcsRequest<QueryCheckItemCategoryStatResponse> { public QueryCheckItemCategoryStatRequest() { super("Advisor-Share", "2018-06-08", "QueryCheckItemCategoryStat", "advisor"); setMethod(MethodType.POST); } @Override public Class<QueryCheckItemCategoryStatResponse> getResponseClass() { return QueryCheckItemCategoryStatResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryCheckItemCategoryStatResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.QueryCheckItemCategoryStatResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryCheckItemCategoryStatResponse extends AcsResponse { private String requestId; private List<Item> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<Item> getData() { return this.data; } public void setData(List<Item> data) { this.data = data; } public static class Item { private Long value; private Float percent; private String name; public Long getValue() { return this.value; } public void setValue(Long value) { this.value = value; } public Float getPercent() { return this.percent; } public void setPercent(Float percent) { this.percent = percent; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } @Override public QueryCheckItemCategoryStatResponse getInstance(UnmarshallerContext context) { return QueryCheckItemCategoryStatResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryCheckItemProductStatRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class QueryCheckItemProductStatRequest extends RpcAcsRequest<QueryCheckItemProductStatResponse> { public QueryCheckItemProductStatRequest() { super("Advisor-Share", "2018-06-08", "QueryCheckItemProductStat", "advisor"); setMethod(MethodType.POST); } @Override public Class<QueryCheckItemProductStatResponse> getResponseClass() { return QueryCheckItemProductStatResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryCheckItemProductStatResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.QueryCheckItemProductStatResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryCheckItemProductStatResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<SeriesItem> series; private List<String> categories; public List<SeriesItem> getSeries() { return this.series; } public void setSeries(List<SeriesItem> series) { this.series = series; } public List<String> getCategories() { return this.categories; } public void setCategories(List<String> categories) { this.categories = categories; } public static class SeriesItem { private String name; private String unit; private List<String> data1; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getUnit() { return this.unit; } public void setUnit(String unit) { this.unit = unit; } public List<String> getData1() { return this.data1; } public void setData1(List<String> data1) { this.data1 = data1; } } } @Override public QueryCheckItemProductStatResponse getInstance(UnmarshallerContext context) { return QueryCheckItemProductStatResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryCheckItemSummariesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class QueryCheckItemSummariesRequest extends RpcAcsRequest<QueryCheckItemSummariesResponse> { private String endDate; private String startDate; public QueryCheckItemSummariesRequest() { super("Advisor-Share", "2018-06-08", "QueryCheckItemSummaries", "advisor"); setMethod(MethodType.POST); } public String getEndDate() { return this.endDate; } public void setEndDate(String endDate) { this.endDate = endDate; if(endDate != null){ putQueryParameter("EndDate", endDate); } } public String getStartDate() { return this.startDate; } public void setStartDate(String startDate) { this.startDate = startDate; if(startDate != null){ putQueryParameter("StartDate", startDate); } } @Override public Class<QueryCheckItemSummariesResponse> getResponseClass() { return QueryCheckItemSummariesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryCheckItemSummariesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.QueryCheckItemSummariesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryCheckItemSummariesResponse extends AcsResponse { private String requestId; private List<CheckItemSummary> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<CheckItemSummary> getData() { return this.data; } public void setData(List<CheckItemSummary> data) { this.data = data; } public static class CheckItemSummary { private Long impressionCount; private Long adviceCount; private Float conversionRate; private String product; private String checkId; private Long detailViewCount; private String category; private Long acceptedCount; public Long getImpressionCount() { return this.impressionCount; } public void setImpressionCount(Long impressionCount) { this.impressionCount = impressionCount; } public Long getAdviceCount() { return this.adviceCount; } public void setAdviceCount(Long adviceCount) { this.adviceCount = adviceCount; } public Float getConversionRate() { return this.conversionRate; } public void setConversionRate(Float conversionRate) { this.conversionRate = conversionRate; } public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; } public String getCheckId() { return this.checkId; } public void setCheckId(String checkId) { this.checkId = checkId; } public Long getDetailViewCount() { return this.detailViewCount; } public void setDetailViewCount(Long detailViewCount) { this.detailViewCount = detailViewCount; } public String getCategory() { return this.category; } public void setCategory(String category) { this.category = category; } public Long getAcceptedCount() { return this.acceptedCount; } public void setAcceptedCount(Long acceptedCount) { this.acceptedCount = acceptedCount; } } @Override public QueryCheckItemSummariesResponse getInstance(UnmarshallerContext context) { return QueryCheckItemSummariesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryDepartmentTreeRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class QueryDepartmentTreeRequest extends RpcAcsRequest<QueryDepartmentTreeResponse> { private String language; private Integer pageNumber; private Integer pageSize; public QueryDepartmentTreeRequest() { super("Advisor-Share", "2018-06-08", "QueryDepartmentTree", "advisor"); setMethod(MethodType.POST); } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<QueryDepartmentTreeResponse> getResponseClass() { return QueryDepartmentTreeResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryDepartmentTreeResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.QueryDepartmentTreeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryDepartmentTreeResponse extends AcsResponse { private String requestId; private List<DepartmentNodeInfoDTO> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DepartmentNodeInfoDTO> getData() { return this.data; } public void setData(List<DepartmentNodeInfoDTO> data) { this.data = data; } public static class DepartmentNodeInfoDTO { private Long departmentId; private String departmentName; private String contactName; private String contactMobile; private Long parentId; private List<String> children; public Long getDepartmentId() { return this.departmentId; } public void setDepartmentId(Long departmentId) { this.departmentId = departmentId; } public String getDepartmentName() { return this.departmentName; } public void setDepartmentName(String departmentName) { this.departmentName = departmentName; } public String getContactName() { return this.contactName; } public void setContactName(String contactName) { this.contactName = contactName; } public String getContactMobile() { return this.contactMobile; } public void setContactMobile(String contactMobile) { this.contactMobile = contactMobile; } public Long getParentId() { return this.parentId; } public void setParentId(Long parentId) { this.parentId = parentId; } public List<String> getChildren() { return this.children; } public void setChildren(List<String> children) { this.children = children; } } @Override public QueryDepartmentTreeResponse getInstance(UnmarshallerContext context) { return QueryDepartmentTreeResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryInspectStrategyWhiteRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class QueryInspectStrategyWhiteRequest extends RpcAcsRequest<QueryInspectStrategyWhiteResponse> { private String product; public QueryInspectStrategyWhiteRequest() { super("Advisor-Share", "2018-06-08", "QueryInspectStrategyWhite", "advisor"); setMethod(MethodType.POST); } public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; if(product != null){ putBodyParameter("Product", product); } } @Override public Class<QueryInspectStrategyWhiteResponse> getResponseClass() { return QueryInspectStrategyWhiteResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryInspectStrategyWhiteResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.QueryInspectStrategyWhiteResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryInspectStrategyWhiteResponse extends AcsResponse { private String requestId; private List<DataItem> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private Long id; private String regionId; private String resourceId; private String resourceName; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; } public String getResourceName() { return this.resourceName; } public void setResourceName(String resourceName) { this.resourceName = resourceName; } } @Override public QueryInspectStrategyWhiteResponse getInstance(UnmarshallerContext context) { return QueryInspectStrategyWhiteResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryInstanceDetailsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class QueryInstanceDetailsRequest extends RpcAcsRequest<QueryInstanceDetailsResponse> { private String instanceId; public QueryInstanceDetailsRequest() { super("Advisor-Share", "2018-06-08", "QueryInstanceDetails", "advisor"); setMethod(MethodType.POST); } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } @Override public Class<QueryInstanceDetailsResponse> getResponseClass() { return QueryInstanceDetailsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryInstanceDetailsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.QueryInstanceDetailsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryInstanceDetailsResponse extends AcsResponse { private Boolean success; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String chargeType; private String instanceId; private Double payOfCurrentMonth; private String resourceSpec; private String departmentName; private String appName; private String userId; private List<AdviceItemsItem> adviceItems; public String getChargeType() { return this.chargeType; } public void setChargeType(String chargeType) { this.chargeType = chargeType; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public Double getPayOfCurrentMonth() { return this.payOfCurrentMonth; } public void setPayOfCurrentMonth(Double payOfCurrentMonth) { this.payOfCurrentMonth = payOfCurrentMonth; } public String getResourceSpec() { return this.resourceSpec; } public void setResourceSpec(String resourceSpec) { this.resourceSpec = resourceSpec; } public String getDepartmentName() { return this.departmentName; } public void setDepartmentName(String departmentName) { this.departmentName = departmentName; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public List<AdviceItemsItem> getAdviceItems() { return this.adviceItems; } public void setAdviceItems(List<AdviceItemsItem> adviceItems) { this.adviceItems = adviceItems; } public static class AdviceItemsItem { private String advice; private String ruleType; public String getAdvice() { return this.advice; } public void setAdvice(String advice) { this.advice = advice; } public String getRuleType() { return this.ruleType; } public void setRuleType(String ruleType) { this.ruleType = ruleType; } } } @Override public QueryInstanceDetailsResponse getInstance(UnmarshallerContext context) { return QueryInstanceDetailsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryInstanceMetricsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class QueryInstanceMetricsRequest extends RpcAcsRequest<QueryInstanceMetricsResponse> { private String ruleType; private String instanceId; public QueryInstanceMetricsRequest() { super("Advisor-Share", "2018-06-08", "QueryInstanceMetrics", "advisor"); setMethod(MethodType.POST); } public String getRuleType() { return this.ruleType; } public void setRuleType(String ruleType) { this.ruleType = ruleType; if(ruleType != null){ putQueryParameter("RuleType", ruleType); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } @Override public Class<QueryInstanceMetricsResponse> getResponseClass() { return QueryInstanceMetricsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryInstanceMetricsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.QueryInstanceMetricsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryInstanceMetricsResponse extends AcsResponse { private Boolean success; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<MetricsItem> metrics; public List<MetricsItem> getMetrics() { return this.metrics; } public void setMetrics(List<MetricsItem> metrics) { this.metrics = metrics; } public static class MetricsItem { private String metricName; private List<MetricItemsItem> metricItems; public String getMetricName() { return this.metricName; } public void setMetricName(String metricName) { this.metricName = metricName; } public List<MetricItemsItem> getMetricItems() { return this.metricItems; } public void setMetricItems(List<MetricItemsItem> metricItems) { this.metricItems = metricItems; } public static class MetricItemsItem { private Double data; private String time; public Double getData() { return this.data; } public void setData(Double data) { this.data = data; } public String getTime() { return this.time; } public void setTime(String time) { this.time = time; } } } } @Override public QueryInstanceMetricsResponse getInstance(UnmarshallerContext context) { return QueryInstanceMetricsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryPagePvUvSeriesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class QueryPagePvUvSeriesRequest extends RpcAcsRequest<QueryPagePvUvSeriesResponse> { private String endDate; private String page; private String startDate; private String type; public QueryPagePvUvSeriesRequest() { super("Advisor-Share", "2018-06-08", "QueryPagePvUvSeries", "advisor"); setMethod(MethodType.POST); } public String getEndDate() { return this.endDate; } public void setEndDate(String endDate) { this.endDate = endDate; if(endDate != null){ putQueryParameter("EndDate", endDate); } } public String getPage() { return this.page; } public void setPage(String page) { this.page = page; if(page != null){ putQueryParameter("Page", page); } } public String getStartDate() { return this.startDate; } public void setStartDate(String startDate) { this.startDate = startDate; if(startDate != null){ putQueryParameter("StartDate", startDate); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } @Override public Class<QueryPagePvUvSeriesResponse> getResponseClass() { return QueryPagePvUvSeriesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryPagePvUvSeriesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.QueryPagePvUvSeriesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryPagePvUvSeriesResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<SeriesItem> series; private List<String> categories; public List<SeriesItem> getSeries() { return this.series; } public void setSeries(List<SeriesItem> series) { this.series = series; } public List<String> getCategories() { return this.categories; } public void setCategories(List<String> categories) { this.categories = categories; } public static class SeriesItem { private String name; private String unit; private List<String> data1; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getUnit() { return this.unit; } public void setUnit(String unit) { this.unit = unit; } public List<String> getData1() { return this.data1; } public void setData1(List<String> data1) { this.data1 = data1; } } } @Override public QueryPagePvUvSeriesResponse getInstance(UnmarshallerContext context) { return QueryPagePvUvSeriesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryRamAuthorizationRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class QueryRamAuthorizationRequest extends RpcAcsRequest<QueryRamAuthorizationResponse> { private Long aliyunId; public QueryRamAuthorizationRequest() { super("Advisor-Share", "2018-06-08", "QueryRamAuthorization", "advisor"); setMethod(MethodType.POST); } public Long getAliyunId() { return this.aliyunId; } public void setAliyunId(Long aliyunId) { this.aliyunId = aliyunId; if(aliyunId != null){ putQueryParameter("aliyunId", aliyunId.toString()); } } @Override public Class<QueryRamAuthorizationResponse> getResponseClass() { return QueryRamAuthorizationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryRamAuthorizationResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.QueryRamAuthorizationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryRamAuthorizationResponse extends AcsResponse { private Integer code; private String status; private String message; private Boolean ramAuthorization; public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getRamAuthorization() { return this.ramAuthorization; } public void setRamAuthorization(Boolean ramAuthorization) { this.ramAuthorization = ramAuthorization; } @Override public QueryRamAuthorizationResponse getInstance(UnmarshallerContext context) { return QueryRamAuthorizationResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryRuleTemplateRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class QueryRuleTemplateRequest extends RpcAcsRequest<QueryRuleTemplateResponse> { private Long ruleId; public QueryRuleTemplateRequest() { super("Advisor-Share", "2018-06-08", "QueryRuleTemplate", "advisor"); setMethod(MethodType.POST); } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId.toString()); } } @Override public Class<QueryRuleTemplateResponse> getResponseClass() { return QueryRuleTemplateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/model/v20180608/QueryRuleTemplateResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.advisor_share.model.v20180608; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.advisor_share.transform.v20180608.QueryRuleTemplateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryRuleTemplateResponse extends AcsResponse { private Boolean success; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long id; private String name; private List<ProductListItem> productList; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public List<ProductListItem> getProductList() { return this.productList; } public void setProductList(List<ProductListItem> productList) { this.productList = productList; } public static class ProductListItem { private Boolean enabled; private Long order; private String productCode; private String productName; private List<ClassListItem> classList; public Boolean getEnabled() { return this.enabled; } public void setEnabled(Boolean enabled) { this.enabled = enabled; } public Long getOrder() { return this.order; } public void setOrder(Long order) { this.order = order; } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } public String getProductName() { return this.productName; } public void setProductName(String productName) { this.productName = productName; } public List<ClassListItem> getClassList() { return this.classList; } public void setClassList(List<ClassListItem> classList) { this.classList = classList; } public static class ClassListItem { private Boolean enabled; private String ruleCode; private String ruleName; private List<FieldListItem> fieldList; public Boolean getEnabled() { return this.enabled; } public void setEnabled(Boolean enabled) { this.enabled = enabled; } public String getRuleCode() { return this.ruleCode; } public void setRuleCode(String ruleCode) { this.ruleCode = ruleCode; } public String getRuleName() { return this.ruleName; } public void setRuleName(String ruleName) { this.ruleName = ruleName; } public List<FieldListItem> getFieldList() { return this.fieldList; } public void setFieldList(List<FieldListItem> fieldList) { this.fieldList = fieldList; } public static class FieldListItem { private String defaultValue; private String fieldLabel; private String fieldName; private Long fieldValue; private String operator; private String valueUnit; public String getDefaultValue() { return this.defaultValue; } public void setDefaultValue(String defaultValue) { this.defaultValue = defaultValue; } public String getFieldLabel() { return this.fieldLabel; } public void setFieldLabel(String fieldLabel) { this.fieldLabel = fieldLabel; } public String getFieldName() { return this.fieldName; } public void setFieldName(String fieldName) { this.fieldName = fieldName; } public Long getFieldValue() { return this.fieldValue; } public void setFieldValue(Long fieldValue) { this.fieldValue = fieldValue; } public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } public String getValueUnit() { return this.valueUnit; } public void setValueUnit(String valueUnit) { this.valueUnit = valueUnit; } } } } } @Override public QueryRuleTemplateResponse getInstance(UnmarshallerContext context) { return QueryRuleTemplateResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }