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/QueryTaskRequest.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 QueryTaskRequest extends RpcAcsRequest<QueryTaskResponse> { private Long taskId; public QueryTaskRequest() { super("Advisor-Share", "2018-06-08", "QueryTask", "advisor"); setMethod(MethodType.POST); } public Long getTaskId() { return this.taskId; } public void setTaskId(Long taskId) { this.taskId = taskId; if(taskId != null){ putQueryParameter("TaskId", taskId.toString()); } } @Override public Class<QueryTaskResponse> getResponseClass() { return QueryTaskResponse.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/QueryTaskResponse.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.QueryTaskResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryTaskResponse 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 QueryTaskResponse getInstance(UnmarshallerContext context) { return QueryTaskResponseUnmarshaller.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/QueryUserAccumulatedCountSeriesRequest.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 QueryUserAccumulatedCountSeriesRequest extends RpcAcsRequest<QueryUserAccumulatedCountSeriesResponse> { private String endDate; private String startDate; public QueryUserAccumulatedCountSeriesRequest() { super("Advisor-Share", "2018-06-08", "QueryUserAccumulatedCountSeries", "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<QueryUserAccumulatedCountSeriesResponse> getResponseClass() { return QueryUserAccumulatedCountSeriesResponse.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/QueryUserAccumulatedCountSeriesResponse.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.QueryUserAccumulatedCountSeriesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryUserAccumulatedCountSeriesResponse 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 QueryUserAccumulatedCountSeriesResponse getInstance(UnmarshallerContext context) { return QueryUserAccumulatedCountSeriesResponseUnmarshaller.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/QueryUserGcLevelStatRequest.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 QueryUserGcLevelStatRequest extends RpcAcsRequest<QueryUserGcLevelStatResponse> { public QueryUserGcLevelStatRequest() { super("Advisor-Share", "2018-06-08", "QueryUserGcLevelStat", "advisor"); setMethod(MethodType.POST); } @Override public Class<QueryUserGcLevelStatResponse> getResponseClass() { return QueryUserGcLevelStatResponse.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/QueryUserGcLevelStatResponse.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.QueryUserGcLevelStatResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryUserGcLevelStatResponse 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 QueryUserGcLevelStatResponse getInstance(UnmarshallerContext context) { return QueryUserGcLevelStatResponseUnmarshaller.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/QueryUserSourceSummariesRequest.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 QueryUserSourceSummariesRequest extends RpcAcsRequest<QueryUserSourceSummariesResponse> { private String endDate; private String startDate; public QueryUserSourceSummariesRequest() { super("Advisor-Share", "2018-06-08", "QueryUserSourceSummaries", "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<QueryUserSourceSummariesResponse> getResponseClass() { return QueryUserSourceSummariesResponse.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/QueryUserSourceSummariesResponse.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.QueryUserSourceSummariesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryUserSourceSummariesResponse extends AcsResponse { private String requestId; private List<UserSourceSummary> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<UserSourceSummary> getData() { return this.data; } public void setData(List<UserSourceSummary> data) { this.data = data; } public static class UserSourceSummary { private String source; private Long count; private Float rate; public String getSource() { return this.source; } public void setSource(String source) { this.source = source; } public Long getCount() { return this.count; } public void setCount(Long count) { this.count = count; } public Float getRate() { return this.rate; } public void setRate(Float rate) { this.rate = rate; } } @Override public QueryUserSourceSummariesResponse getInstance(UnmarshallerContext context) { return QueryUserSourceSummariesResponseUnmarshaller.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/QueryUserSummariesRequest.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 QueryUserSummariesRequest extends RpcAcsRequest<QueryUserSummariesResponse> { private String endDate; private String startDate; public QueryUserSummariesRequest() { super("Advisor-Share", "2018-06-08", "QueryUserSummaries", "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<QueryUserSummariesResponse> getResponseClass() { return QueryUserSummariesResponse.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/QueryUserSummariesResponse.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.QueryUserSummariesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryUserSummariesResponse extends AcsResponse { private String requestId; private List<UserSummary> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<UserSummary> getData() { return this.data; } public void setData(List<UserSummary> data) { this.data = data; } public static class UserSummary { private String gcLevel; private Long adviceCount; private Float conversionRate; private Long detailViewCount; private Long aliyunId; private String userName; private Long acceptedCount; private List<OwnedResourcesItem> ownedResources; public String getGcLevel() { return this.gcLevel; } public void setGcLevel(String gcLevel) { this.gcLevel = gcLevel; } 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 Long getDetailViewCount() { return this.detailViewCount; } public void setDetailViewCount(Long detailViewCount) { this.detailViewCount = detailViewCount; } public Long getAliyunId() { return this.aliyunId; } public void setAliyunId(Long aliyunId) { this.aliyunId = aliyunId; } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public Long getAcceptedCount() { return this.acceptedCount; } public void setAcceptedCount(Long acceptedCount) { this.acceptedCount = acceptedCount; } public List<OwnedResourcesItem> getOwnedResources() { return this.ownedResources; } public void setOwnedResources(List<OwnedResourcesItem> ownedResources) { this.ownedResources = ownedResources; } public static class OwnedResourcesItem { private String value; private Float percent; private String name; public String getValue() { return this.value; } public void setValue(String 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 QueryUserSummariesResponse getInstance(UnmarshallerContext context) { return QueryUserSummariesResponseUnmarshaller.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/RefreshAdvisorCheckRequest.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 RefreshAdvisorCheckRequest extends RpcAcsRequest<RefreshAdvisorCheckResponse> { private String resourceId; private String product; private String language; private String checkId; public RefreshAdvisorCheckRequest() { super("Advisor-Share", "2018-06-08", "RefreshAdvisorCheck", "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 String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public String getCheckId() { return this.checkId; } public void setCheckId(String checkId) { this.checkId = checkId; if(checkId != null){ putQueryParameter("CheckId", checkId); } } @Override public Class<RefreshAdvisorCheckResponse> getResponseClass() { return RefreshAdvisorCheckResponse.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/RefreshAdvisorCheckResponse.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.RefreshAdvisorCheckResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RefreshAdvisorCheckResponse 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 success; private String traceId; private Long taskId; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getTraceId() { return this.traceId; } public void setTraceId(String traceId) { this.traceId = traceId; } public Long getTaskId() { return this.taskId; } public void setTaskId(Long taskId) { this.taskId = taskId; } } @Override public RefreshAdvisorCheckResponse getInstance(UnmarshallerContext context) { return RefreshAdvisorCheckResponseUnmarshaller.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/RefreshAdvisorResourceRequest.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 RefreshAdvisorResourceRequest extends RpcAcsRequest<RefreshAdvisorResourceResponse> { private String product; private String resourceId; public RefreshAdvisorResourceRequest() { super("Advisor-Share", "2018-06-08", "RefreshAdvisorResource", "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); } } @Override public Class<RefreshAdvisorResourceResponse> getResponseClass() { return RefreshAdvisorResourceResponse.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/RefreshAdvisorResourceResponse.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.RefreshAdvisorResourceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RefreshAdvisorResourceResponse extends AcsResponse { private Long data; private String requestId; public Long getData() { return this.data; } public void setData(Long data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public RefreshAdvisorResourceResponse getInstance(UnmarshallerContext context) { return RefreshAdvisorResourceResponseUnmarshaller.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/RefreshUserResourcesRequest.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 RefreshUserResourcesRequest extends RpcAcsRequest<RefreshUserResourcesResponse> { private String token; public RefreshUserResourcesRequest() { super("Advisor-Share", "2018-06-08", "RefreshUserResources", "advisor"); setMethod(MethodType.POST); } public String getToken() { return this.token; } public void setToken(String token) { this.token = token; if(token != null){ putQueryParameter("Token", token); } } @Override public Class<RefreshUserResourcesResponse> getResponseClass() { return RefreshUserResourcesResponse.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/RefreshUserResourcesResponse.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.RefreshUserResourcesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RefreshUserResourcesResponse extends AcsResponse { private Long data; private String requestId; public Long getData() { return this.data; } public void setData(Long data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public RefreshUserResourcesResponse getInstance(UnmarshallerContext context) { return RefreshUserResourcesResponseUnmarshaller.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/ReleaseAdviceConfProjectRequest.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 ReleaseAdviceConfProjectRequest extends RpcAcsRequest<ReleaseAdviceConfProjectResponse> { private String projectId; public ReleaseAdviceConfProjectRequest() { super("Advisor-Share", "2018-06-08", "ReleaseAdviceConfProject", "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<ReleaseAdviceConfProjectResponse> getResponseClass() { return ReleaseAdviceConfProjectResponse.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/ReleaseAdviceConfProjectResponse.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.ReleaseAdviceConfProjectResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ReleaseAdviceConfProjectResponse 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 ReleaseAdviceConfProjectResponse getInstance(UnmarshallerContext context) { return ReleaseAdviceConfProjectResponseUnmarshaller.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/RemoveAdviceConfProjectOwnerRequest.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 RemoveAdviceConfProjectOwnerRequest extends RpcAcsRequest<RemoveAdviceConfProjectOwnerResponse> { private String data; private Long projectId; public RemoveAdviceConfProjectOwnerRequest() { super("Advisor-Share", "2018-06-08", "RemoveAdviceConfProjectOwner", "advisor"); setMethod(MethodType.POST); } public String getData() { return this.data; } public void setData(String data) { this.data = data; if(data != null){ putBodyParameter("Data", data); } } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putBodyParameter("ProjectId", projectId.toString()); } } @Override public Class<RemoveAdviceConfProjectOwnerResponse> getResponseClass() { return RemoveAdviceConfProjectOwnerResponse.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/RemoveAdviceConfProjectOwnerResponse.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.RemoveAdviceConfProjectOwnerResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RemoveAdviceConfProjectOwnerResponse 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 RemoveAdviceConfProjectOwnerResponse getInstance(UnmarshallerContext context) { return RemoveAdviceConfProjectOwnerResponseUnmarshaller.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/RemoveAdviceConfProjectRequest.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 RemoveAdviceConfProjectRequest extends RpcAcsRequest<RemoveAdviceConfProjectResponse> { private Long projectId; public RemoveAdviceConfProjectRequest() { super("Advisor-Share", "2018-06-08", "RemoveAdviceConfProject", "advisor"); setMethod(MethodType.GET); } public Long getProjectId() { return this.projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; if(projectId != null){ putQueryParameter("ProjectId", projectId.toString()); } } @Override public Class<RemoveAdviceConfProjectResponse> getResponseClass() { return RemoveAdviceConfProjectResponse.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/RemoveAdviceConfProjectResponse.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.RemoveAdviceConfProjectResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RemoveAdviceConfProjectResponse extends AcsResponse { private String message; private String requestId; private String 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 String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } @Override public RemoveAdviceConfProjectResponse getInstance(UnmarshallerContext context) { return RemoveAdviceConfProjectResponseUnmarshaller.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/RemoveAppResourceRelationRequest.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 RemoveAppResourceRelationRequest extends RpcAcsRequest<RemoveAppResourceRelationResponse> { private String language; private Integer pageNumber; private Long appId; private Integer pageSize; private String resourceInfo; public RemoveAppResourceRelationRequest() { super("Advisor-Share", "2018-06-08", "RemoveAppResourceRelation", "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 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 getResourceInfo() { return this.resourceInfo; } public void setResourceInfo(String resourceInfo) { this.resourceInfo = resourceInfo; if(resourceInfo != null){ putQueryParameter("ResourceInfo", resourceInfo); } } @Override public Class<RemoveAppResourceRelationResponse> getResponseClass() { return RemoveAppResourceRelationResponse.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/RemoveAppResourceRelationResponse.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.RemoveAppResourceRelationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RemoveAppResourceRelationResponse extends AcsResponse { private String requestId; private Boolean data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getData() { return this.data; } public void setData(Boolean data) { this.data = data; } @Override public RemoveAppResourceRelationResponse getInstance(UnmarshallerContext context) { return RemoveAppResourceRelationResponseUnmarshaller.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/SendCallRequestRequest.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 SendCallRequestRequest extends RpcAcsRequest<SendCallRequestResponse> { private String dingId; private String callLocation; public SendCallRequestRequest() { super("Advisor-Share", "2018-06-08", "SendCallRequest", "advisor"); setMethod(MethodType.POST); } public String getDingId() { return this.dingId; } public void setDingId(String dingId) { this.dingId = dingId; if(dingId != null){ putQueryParameter("DingId", dingId); } } public String getCallLocation() { return this.callLocation; } public void setCallLocation(String callLocation) { this.callLocation = callLocation; if(callLocation != null){ putQueryParameter("CallLocation", callLocation); } } @Override public Class<SendCallRequestResponse> getResponseClass() { return SendCallRequestResponse.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/SendCallRequestResponse.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.SendCallRequestResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SendCallRequestResponse extends AcsResponse { private Boolean data; private String requestId; 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; } @Override public SendCallRequestResponse getInstance(UnmarshallerContext context) { return SendCallRequestResponseUnmarshaller.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/SetAdviceConfProjectRequest.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 SetAdviceConfProjectRequest extends RpcAcsRequest<SetAdviceConfProjectResponse> { private String data; public SetAdviceConfProjectRequest() { super("Advisor-Share", "2018-06-08", "SetAdviceConfProject", "advisor"); setMethod(MethodType.POST); } public String getData() { return this.data; } public void setData(String data) { this.data = data; if(data != null){ putBodyParameter("Data", data); } } @Override public Class<SetAdviceConfProjectResponse> getResponseClass() { return SetAdviceConfProjectResponse.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/SetAdviceConfProjectResponse.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.SetAdviceConfProjectResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SetAdviceConfProjectResponse 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 SetAdviceConfProjectResponse getInstance(UnmarshallerContext context) { return SetAdviceConfProjectResponseUnmarshaller.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/SetAdvisorAuthorizationRequest.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 SetAdvisorAuthorizationRequest extends RpcAcsRequest<SetAdvisorAuthorizationResponse> { private String userOperation; private String language; public SetAdvisorAuthorizationRequest() { super("Advisor-Share", "2018-06-08", "SetAdvisorAuthorization", "advisor"); setMethod(MethodType.POST); } public String getUserOperation() { return this.userOperation; } public void setUserOperation(String userOperation) { this.userOperation = userOperation; if(userOperation != null){ putQueryParameter("UserOperation", userOperation); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } @Override public Class<SetAdvisorAuthorizationResponse> getResponseClass() { return SetAdvisorAuthorizationResponse.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/SetAdvisorAuthorizationResponse.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.SetAdvisorAuthorizationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SetAdvisorAuthorizationResponse extends AcsResponse { private Boolean data; private String requestId; 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; } @Override public SetAdvisorAuthorizationResponse getInstance(UnmarshallerContext context) { return SetAdvisorAuthorizationResponseUnmarshaller.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/SetAdvisorCheckRequest.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 SetAdvisorCheckRequest extends RpcAcsRequest<SetAdvisorCheckResponse> { private String resourceId; private String language; private String checkId; private String operation; public SetAdvisorCheckRequest() { super("Advisor-Share", "2018-06-08", "SetAdvisorCheck", "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 String getCheckId() { return this.checkId; } public void setCheckId(String checkId) { this.checkId = checkId; if(checkId != null){ putQueryParameter("CheckId", checkId); } } public String getOperation() { return this.operation; } public void setOperation(String operation) { this.operation = operation; if(operation != null){ putQueryParameter("Operation", operation); } } @Override public Class<SetAdvisorCheckResponse> getResponseClass() { return SetAdvisorCheckResponse.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/SetAdvisorCheckResponse.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.SetAdvisorCheckResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SetAdvisorCheckResponse extends AcsResponse { private Integer data; private String requestId; private Boolean success; public Integer getData() { return this.data; } public void setData(Integer 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 SetAdvisorCheckResponse getInstance(UnmarshallerContext context) { return SetAdvisorCheckResponseUnmarshaller.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/SetUserIdRequest.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 SetUserIdRequest extends RpcAcsRequest<SetUserIdResponse> { private Long toAliyunId; public SetUserIdRequest() { super("Advisor-Share", "2018-06-08", "SetUserId", "advisor"); setMethod(MethodType.POST); } public Long getToAliyunId() { return this.toAliyunId; } public void setToAliyunId(Long toAliyunId) { this.toAliyunId = toAliyunId; if(toAliyunId != null){ putQueryParameter("ToAliyunId", toAliyunId.toString()); } } @Override public Class<SetUserIdResponse> getResponseClass() { return SetUserIdResponse.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/SetUserIdResponse.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.SetUserIdResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SetUserIdResponse extends AcsResponse { private Boolean success; private Integer data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Integer getData() { return this.data; } public void setData(Integer data) { this.data = data; } @Override public SetUserIdResponse getInstance(UnmarshallerContext context) { return SetUserIdResponseUnmarshaller.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/SetUserReportSubscriptionInfoRequest.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 SetUserReportSubscriptionInfoRequest extends RpcAcsRequest<SetUserReportSubscriptionInfoResponse> { private String weeklySendTime; private String timeZone; private String dailySendTime; private Boolean reportSubscribe; private String language; private String reportSendFrequency; private String weeklySendFrequency; private String emails; private Boolean dailySubscribe; private Boolean weeklySubscribe; private String reportSendTime; public SetUserReportSubscriptionInfoRequest() { super("Advisor-Share", "2018-06-08", "SetUserReportSubscriptionInfo", "advisor"); setMethod(MethodType.POST); } public String getWeeklySendTime() { return this.weeklySendTime; } public void setWeeklySendTime(String weeklySendTime) { this.weeklySendTime = weeklySendTime; if(weeklySendTime != null){ putQueryParameter("WeeklySendTime", weeklySendTime); } } public String getTimeZone() { return this.timeZone; } public void setTimeZone(String timeZone) { this.timeZone = timeZone; if(timeZone != null){ putQueryParameter("TimeZone", timeZone); } } public String getDailySendTime() { return this.dailySendTime; } public void setDailySendTime(String dailySendTime) { this.dailySendTime = dailySendTime; if(dailySendTime != null){ putQueryParameter("DailySendTime", dailySendTime); } } public Boolean getReportSubscribe() { return this.reportSubscribe; } public void setReportSubscribe(Boolean reportSubscribe) { this.reportSubscribe = reportSubscribe; if(reportSubscribe != null){ putQueryParameter("ReportSubscribe", reportSubscribe.toString()); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public String getReportSendFrequency() { return this.reportSendFrequency; } public void setReportSendFrequency(String reportSendFrequency) { this.reportSendFrequency = reportSendFrequency; if(reportSendFrequency != null){ putQueryParameter("ReportSendFrequency", reportSendFrequency); } } public String getWeeklySendFrequency() { return this.weeklySendFrequency; } public void setWeeklySendFrequency(String weeklySendFrequency) { this.weeklySendFrequency = weeklySendFrequency; if(weeklySendFrequency != null){ putQueryParameter("WeeklySendFrequency", weeklySendFrequency); } } public String getEmails() { return this.emails; } public void setEmails(String emails) { this.emails = emails; if(emails != null){ putQueryParameter("Emails", emails); } } public Boolean getDailySubscribe() { return this.dailySubscribe; } public void setDailySubscribe(Boolean dailySubscribe) { this.dailySubscribe = dailySubscribe; if(dailySubscribe != null){ putQueryParameter("DailySubscribe", dailySubscribe.toString()); } } public Boolean getWeeklySubscribe() { return this.weeklySubscribe; } public void setWeeklySubscribe(Boolean weeklySubscribe) { this.weeklySubscribe = weeklySubscribe; if(weeklySubscribe != null){ putQueryParameter("WeeklySubscribe", weeklySubscribe.toString()); } } public String getReportSendTime() { return this.reportSendTime; } public void setReportSendTime(String reportSendTime) { this.reportSendTime = reportSendTime; if(reportSendTime != null){ putQueryParameter("ReportSendTime", reportSendTime); } } @Override public Class<SetUserReportSubscriptionInfoResponse> getResponseClass() { return SetUserReportSubscriptionInfoResponse.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/SetUserReportSubscriptionInfoResponse.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.SetUserReportSubscriptionInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SetUserReportSubscriptionInfoResponse extends AcsResponse { private Boolean data; private String requestId; private Boolean success; 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 SetUserReportSubscriptionInfoResponse getInstance(UnmarshallerContext context) { return SetUserReportSubscriptionInfoResponseUnmarshaller.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/SetUserReportSubscriptionRequest.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 SetUserReportSubscriptionRequest extends RpcAcsRequest<SetUserReportSubscriptionResponse> { private String emails; private String timeZone; private String mobile; private String language; private String sendEmailFrequency; public SetUserReportSubscriptionRequest() { super("Advisor-Share", "2018-06-08", "SetUserReportSubscription", "advisor"); setMethod(MethodType.POST); } public String getEmails() { return this.emails; } public void setEmails(String emails) { this.emails = emails; if(emails != null){ putQueryParameter("Emails", emails); } } public String getTimeZone() { return this.timeZone; } public void setTimeZone(String timeZone) { this.timeZone = timeZone; if(timeZone != null){ putQueryParameter("TimeZone", timeZone); } } public String getMobile() { return this.mobile; } public void setMobile(String mobile) { this.mobile = mobile; if(mobile != null){ putQueryParameter("Mobile", mobile); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public String getSendEmailFrequency() { return this.sendEmailFrequency; } public void setSendEmailFrequency(String sendEmailFrequency) { this.sendEmailFrequency = sendEmailFrequency; if(sendEmailFrequency != null){ putQueryParameter("SendEmailFrequency", sendEmailFrequency); } } @Override public Class<SetUserReportSubscriptionResponse> getResponseClass() { return SetUserReportSubscriptionResponse.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/SetUserReportSubscriptionResponse.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.SetUserReportSubscriptionResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SetUserReportSubscriptionResponse extends AcsResponse { private Boolean data; private String requestId; private Boolean success; 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 SetUserReportSubscriptionResponse getInstance(UnmarshallerContext context) { return SetUserReportSubscriptionResponseUnmarshaller.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/SyncTagResourcesRequest.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 SyncTagResourcesRequest extends RpcAcsRequest<SyncTagResourcesResponse> { private String language; public SyncTagResourcesRequest() { super("Advisor-Share", "2018-06-08", "SyncTagResources", "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<SyncTagResourcesResponse> getResponseClass() { return SyncTagResourcesResponse.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/SyncTagResourcesResponse.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.SyncTagResourcesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SyncTagResourcesResponse extends AcsResponse { private String requestId; private Boolean data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getData() { return this.data; } public void setData(Boolean data) { this.data = data; } @Override public SyncTagResourcesResponse getInstance(UnmarshallerContext context) { return SyncTagResourcesResponseUnmarshaller.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/UpdateAccountAssociationRequest.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 UpdateAccountAssociationRequest extends RpcAcsRequest<UpdateAccountAssociationResponse> { private String targetId; private String language; private String operation; public UpdateAccountAssociationRequest() { super("Advisor-Share", "2018-06-08", "UpdateAccountAssociation", "advisor"); setMethod(MethodType.POST); } public String getTargetId() { return this.targetId; } public void setTargetId(String targetId) { this.targetId = targetId; if(targetId != null){ putQueryParameter("TargetId", targetId); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public String getOperation() { return this.operation; } public void setOperation(String operation) { this.operation = operation; if(operation != null){ putQueryParameter("Operation", operation); } } @Override public Class<UpdateAccountAssociationResponse> getResponseClass() { return UpdateAccountAssociationResponse.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/UpdateAccountAssociationResponse.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.UpdateAccountAssociationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateAccountAssociationResponse extends AcsResponse { private String requestId; private Boolean data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getData() { return this.data; } public void setData(Boolean data) { this.data = data; } @Override public UpdateAccountAssociationResponse getInstance(UnmarshallerContext context) { return UpdateAccountAssociationResponseUnmarshaller.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/UpdateAppInfoRequest.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 UpdateAppInfoRequest extends RpcAcsRequest<UpdateAppInfoResponse> { private String language; private Integer pageNumber; private String contactName; private String appName; private Long appId; private Integer pageSize; private String contactMobile; public UpdateAppInfoRequest() { super("Advisor-Share", "2018-06-08", "UpdateAppInfo", "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 String getContactName() { return this.contactName; } public void setContactName(String contactName) { this.contactName = contactName; if(contactName != null){ putQueryParameter("ContactName", contactName); } } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } 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 getContactMobile() { return this.contactMobile; } public void setContactMobile(String contactMobile) { this.contactMobile = contactMobile; if(contactMobile != null){ putQueryParameter("ContactMobile", contactMobile); } } @Override public Class<UpdateAppInfoResponse> getResponseClass() { return UpdateAppInfoResponse.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/UpdateAppInfoResponse.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.UpdateAppInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateAppInfoResponse extends AcsResponse { private String requestId; private Boolean data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getData() { return this.data; } public void setData(Boolean data) { this.data = data; } @Override public UpdateAppInfoResponse getInstance(UnmarshallerContext context) { return UpdateAppInfoResponseUnmarshaller.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/UpdateDepartmentInfoRequest.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 UpdateDepartmentInfoRequest extends RpcAcsRequest<UpdateDepartmentInfoResponse> { private Long departmentId; private String language; private String contactName; private String departmentName; private String contactMobile; public UpdateDepartmentInfoRequest() { super("Advisor-Share", "2018-06-08", "UpdateDepartmentInfo", "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 String getContactName() { return this.contactName; } public void setContactName(String contactName) { this.contactName = contactName; if(contactName != null){ putQueryParameter("ContactName", contactName); } } public String getDepartmentName() { return this.departmentName; } public void setDepartmentName(String departmentName) { this.departmentName = departmentName; if(departmentName != null){ putQueryParameter("DepartmentName", departmentName); } } public String getContactMobile() { return this.contactMobile; } public void setContactMobile(String contactMobile) { this.contactMobile = contactMobile; if(contactMobile != null){ putQueryParameter("ContactMobile", contactMobile); } } @Override public Class<UpdateDepartmentInfoResponse> getResponseClass() { return UpdateDepartmentInfoResponse.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/UpdateDepartmentInfoResponse.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.UpdateDepartmentInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateDepartmentInfoResponse extends AcsResponse { private String requestId; private Boolean data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getData() { return this.data; } public void setData(Boolean data) { this.data = data; } @Override public UpdateDepartmentInfoResponse getInstance(UnmarshallerContext context) { return UpdateDepartmentInfoResponseUnmarshaller.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/UpdateInspectItemThresholdParamSettingRequest.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 UpdateInspectItemThresholdParamSettingRequest extends RpcAcsRequest<UpdateInspectItemThresholdParamSettingResponse> { private Long associateUid; private String data; private String clientToken; private String token; private String inspectCode; public UpdateInspectItemThresholdParamSettingRequest() { super("Advisor-Share", "2018-06-08", "UpdateInspectItemThresholdParamSetting", "advisor"); setMethod(MethodType.POST); } public Long getAssociateUid() { return this.associateUid; } public void setAssociateUid(Long associateUid) { this.associateUid = associateUid; if(associateUid != null){ putQueryParameter("AssociateUid", associateUid.toString()); } } public String getData() { return this.data; } public void setData(String data) { this.data = data; if(data != null){ putQueryParameter("Data", data); } } public String getClientToken() { return this.clientToken; } public void setClientToken(String clientToken) { this.clientToken = clientToken; if(clientToken != null){ putQueryParameter("ClientToken", clientToken); } } public String getToken() { return this.token; } public void setToken(String token) { this.token = token; if(token != null){ putQueryParameter("Token", token); } } public String getInspectCode() { return this.inspectCode; } public void setInspectCode(String inspectCode) { this.inspectCode = inspectCode; if(inspectCode != null){ putQueryParameter("InspectCode", inspectCode); } } @Override public Class<UpdateInspectItemThresholdParamSettingResponse> getResponseClass() { return UpdateInspectItemThresholdParamSettingResponse.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/UpdateInspectItemThresholdParamSettingResponse.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.UpdateInspectItemThresholdParamSettingResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateInspectItemThresholdParamSettingResponse extends AcsResponse { private String requestId; private String data; private String inspectCode; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getInspectCode() { return this.inspectCode; } public void setInspectCode(String inspectCode) { this.inspectCode = inspectCode; } @Override public UpdateInspectItemThresholdParamSettingResponse getInstance(UnmarshallerContext context) { return UpdateInspectItemThresholdParamSettingResponseUnmarshaller.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/UpdateNickNameByAliyunIdRequest.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 UpdateNickNameByAliyunIdRequest extends RpcAcsRequest<UpdateNickNameByAliyunIdResponse> { private String nickName; private Long id; public UpdateNickNameByAliyunIdRequest() { super("Advisor-Share", "2018-06-08", "UpdateNickNameByAliyunId", "advisor"); setMethod(MethodType.POST); } public String getNickName() { return this.nickName; } public void setNickName(String nickName) { this.nickName = nickName; if(nickName != null){ putQueryParameter("NickName", nickName); } } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; if(id != null){ putQueryParameter("Id", id.toString()); } } @Override public Class<UpdateNickNameByAliyunIdResponse> getResponseClass() { return UpdateNickNameByAliyunIdResponse.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/UpdateNickNameByAliyunIdResponse.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.UpdateNickNameByAliyunIdResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateNickNameByAliyunIdResponse extends AcsResponse { private String requestId; private Boolean data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getData() { return this.data; } public void setData(Boolean data) { this.data = data; } @Override public UpdateNickNameByAliyunIdResponse getInstance(UnmarshallerContext context) { return UpdateNickNameByAliyunIdResponseUnmarshaller.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/UploadTranferPublishRequest.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 UploadTranferPublishRequest extends RpcAcsRequest<UploadTranferPublishResponse> { private String key; public UploadTranferPublishRequest() { super("Advisor-Share", "2018-06-08", "UploadTranferPublish", "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<UploadTranferPublishResponse> getResponseClass() { return UploadTranferPublishResponse.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/UploadTranferPublishResponse.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.UploadTranferPublishResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UploadTranferPublishResponse 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 UploadTranferPublishResponse getInstance(UnmarshallerContext context) { return UploadTranferPublishResponseUnmarshaller.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/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/AccountMaintenanceResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.AccountMaintenanceResponse; import com.aliyuncs.advisor_share.model.v20180608.AccountMaintenanceResponse.Data; import com.aliyuncs.advisor_share.model.v20180608.AccountMaintenanceResponse.Data.ResultItem; import com.aliyuncs.transform.UnmarshallerContext; public class AccountMaintenanceResponseUnmarshaller { public static AccountMaintenanceResponse unmarshall(AccountMaintenanceResponse accountMaintenanceResponse, UnmarshallerContext _ctx) { accountMaintenanceResponse.setRequestId(_ctx.stringValue("AccountMaintenanceResponse.RequestId")); accountMaintenanceResponse.setSuccess(_ctx.booleanValue("AccountMaintenanceResponse.Success")); Data data = new Data(); data.setPageNo(_ctx.longValue("AccountMaintenanceResponse.Data.PageNo")); data.setPageSize(_ctx.longValue("AccountMaintenanceResponse.Data.PageSize")); data.setTotal(_ctx.longValue("AccountMaintenanceResponse.Data.Total")); List<ResultItem> result = new ArrayList<ResultItem>(); for (int i = 0; i < _ctx.lengthValue("AccountMaintenanceResponse.Data.Result.Length"); i++) { ResultItem resultItem = new ResultItem(); resultItem.setAliyunId(_ctx.longValue("AccountMaintenanceResponse.Data.Result["+ i +"].AliyunId")); resultItem.setAuthorizationTime(_ctx.stringValue("AccountMaintenanceResponse.Data.Result["+ i +"].AuthorizationTime")); resultItem.setNickName(_ctx.stringValue("AccountMaintenanceResponse.Data.Result["+ i +"].NickName")); result.add(resultItem); } data.setResult(result); accountMaintenanceResponse.setData(data); return accountMaintenanceResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/ActivateAdvisorUserResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.ActivateAdvisorUserResponse; import com.aliyuncs.transform.UnmarshallerContext; public class ActivateAdvisorUserResponseUnmarshaller { public static ActivateAdvisorUserResponse unmarshall(ActivateAdvisorUserResponse activateAdvisorUserResponse, UnmarshallerContext _ctx) { activateAdvisorUserResponse.setSuccess(_ctx.booleanValue("ActivateAdvisorUserResponse.Success")); activateAdvisorUserResponse.setData(_ctx.booleanValue("ActivateAdvisorUserResponse.Data")); return activateAdvisorUserResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/AddAdviceConfProjectOwnerResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.AddAdviceConfProjectOwnerResponse; import com.aliyuncs.transform.UnmarshallerContext; public class AddAdviceConfProjectOwnerResponseUnmarshaller { public static AddAdviceConfProjectOwnerResponse unmarshall(AddAdviceConfProjectOwnerResponse addAdviceConfProjectOwnerResponse, UnmarshallerContext _ctx) { addAdviceConfProjectOwnerResponse.setRequestId(_ctx.stringValue("AddAdviceConfProjectOwnerResponse.RequestId")); addAdviceConfProjectOwnerResponse.setMessage(_ctx.stringValue("AddAdviceConfProjectOwnerResponse.Message")); addAdviceConfProjectOwnerResponse.setSuccess(_ctx.booleanValue("AddAdviceConfProjectOwnerResponse.Success")); return addAdviceConfProjectOwnerResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/AddAppResourceRelationResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.AddAppResourceRelationResponse; import com.aliyuncs.transform.UnmarshallerContext; public class AddAppResourceRelationResponseUnmarshaller { public static AddAppResourceRelationResponse unmarshall(AddAppResourceRelationResponse addAppResourceRelationResponse, UnmarshallerContext _ctx) { addAppResourceRelationResponse.setRequestId(_ctx.stringValue("AddAppResourceRelationResponse.RequestId")); addAppResourceRelationResponse.setData(_ctx.booleanValue("AddAppResourceRelationResponse.Data")); return addAppResourceRelationResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/AddInspectStrategyWhiteResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.AddInspectStrategyWhiteResponse; import com.aliyuncs.transform.UnmarshallerContext; public class AddInspectStrategyWhiteResponseUnmarshaller { public static AddInspectStrategyWhiteResponse unmarshall(AddInspectStrategyWhiteResponse addInspectStrategyWhiteResponse, UnmarshallerContext _ctx) { addInspectStrategyWhiteResponse.setSuccess(_ctx.booleanValue("AddInspectStrategyWhiteResponse.Success")); addInspectStrategyWhiteResponse.setData(_ctx.booleanValue("AddInspectStrategyWhiteResponse.Data")); return addInspectStrategyWhiteResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/BuildTopologyResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.BuildTopologyResponse; import com.aliyuncs.transform.UnmarshallerContext; public class BuildTopologyResponseUnmarshaller { public static BuildTopologyResponse unmarshall(BuildTopologyResponse buildTopologyResponse, UnmarshallerContext _ctx) { buildTopologyResponse.setRequestId(_ctx.stringValue("BuildTopologyResponse.RequestId")); buildTopologyResponse.setData(_ctx.booleanValue("BuildTopologyResponse.Data")); buildTopologyResponse.setSuccess(_ctx.booleanValue("BuildTopologyResponse.Success")); return buildTopologyResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/CheckConnectivityNetworkResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivityNetworkResponse; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivityNetworkResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class CheckConnectivityNetworkResponseUnmarshaller { public static CheckConnectivityNetworkResponse unmarshall(CheckConnectivityNetworkResponse checkConnectivityNetworkResponse, UnmarshallerContext _ctx) { checkConnectivityNetworkResponse.setRequestId(_ctx.stringValue("CheckConnectivityNetworkResponse.RequestId")); Data data = new Data(); data.setCheckId(_ctx.stringValue("CheckConnectivityNetworkResponse.Data.CheckId")); data.setSeverity(_ctx.integerValue("CheckConnectivityNetworkResponse.Data.Severity")); data.setNetworkResult(_ctx.stringValue("CheckConnectivityNetworkResponse.Data.NetworkResult")); data.setErrorCode(_ctx.stringValue("CheckConnectivityNetworkResponse.Data.ErrorCode")); checkConnectivityNetworkResponse.setData(data); return checkConnectivityNetworkResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/CheckConnectivityResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivityResponse; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivityResponse.Data; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivityResponse.Data.RdsWhiteListResult; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivityResponse.Data.ResourceNetworkResult; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivityResponse.Data.ResourceNetworkResult.DstNetwork; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivityResponse.Data.ResourceNetworkResult.SrcNetwork; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivityResponse.Data.ResourceStatusResult; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivityResponse.Data.ResourceStatusResult.DstStatus; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivityResponse.Data.ResourceStatusResult.SrcStatus; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivityResponse.Data.SecurityGroupResult; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivityResponse.Data.SecurityPunishResult; import com.aliyuncs.transform.UnmarshallerContext; public class CheckConnectivityResponseUnmarshaller { public static CheckConnectivityResponse unmarshall(CheckConnectivityResponse checkConnectivityResponse, UnmarshallerContext _ctx) { checkConnectivityResponse.setRequestId(_ctx.stringValue("CheckConnectivityResponse.RequestId")); Data data = new Data(); data.setCheckId(_ctx.stringValue("CheckConnectivityResponse.Data.CheckId")); ResourceStatusResult resourceStatusResult = new ResourceStatusResult(); resourceStatusResult.setSeverity(_ctx.integerValue("CheckConnectivityResponse.Data.ResourceStatusResult.Severity")); resourceStatusResult.setErrorCode(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceStatusResult.ErrorCode")); SrcStatus srcStatus = new SrcStatus(); srcStatus.setStatus(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceStatusResult.SrcStatus.Status")); srcStatus.setIpAddress(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceStatusResult.SrcStatus.IpAddress")); srcStatus.setResourceId(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceStatusResult.SrcStatus.ResourceId")); srcStatus.setErrorCode(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceStatusResult.SrcStatus.ErrorCode")); srcStatus.setProduct(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceStatusResult.SrcStatus.Product")); resourceStatusResult.setSrcStatus(srcStatus); DstStatus dstStatus = new DstStatus(); dstStatus.setStatus(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceStatusResult.DstStatus.Status")); dstStatus.setIpAddress(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceStatusResult.DstStatus.IpAddress")); dstStatus.setResourceId(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceStatusResult.DstStatus.ResourceId")); dstStatus.setErrorCode(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceStatusResult.DstStatus.ErrorCode")); dstStatus.setProduct(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceStatusResult.DstStatus.Product")); resourceStatusResult.setDstStatus(dstStatus); data.setResourceStatusResult(resourceStatusResult); ResourceNetworkResult resourceNetworkResult = new ResourceNetworkResult(); resourceNetworkResult.setSeverity(_ctx.integerValue("CheckConnectivityResponse.Data.ResourceNetworkResult.Severity")); resourceNetworkResult.setErrorCode(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceNetworkResult.ErrorCode")); SrcNetwork srcNetwork = new SrcNetwork(); srcNetwork.setVpcId(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceNetworkResult.SrcNetwork.VpcId")); srcNetwork.setIpType(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceNetworkResult.SrcNetwork.IpType")); srcNetwork.setIpAddress(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceNetworkResult.SrcNetwork.IpAddress")); srcNetwork.setErrorCode(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceNetworkResult.SrcNetwork.ErrorCode")); srcNetwork.setProduct(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceNetworkResult.SrcNetwork.Product")); srcNetwork.setNetworkType(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceNetworkResult.SrcNetwork.NetworkType")); srcNetwork.setResourceId(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceNetworkResult.SrcNetwork.ResourceId")); srcNetwork.setRegionId(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceNetworkResult.SrcNetwork.RegionId")); resourceNetworkResult.setSrcNetwork(srcNetwork); DstNetwork dstNetwork = new DstNetwork(); dstNetwork.setVpcId(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceNetworkResult.DstNetwork.VpcId")); dstNetwork.setIpType(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceNetworkResult.DstNetwork.IpType")); dstNetwork.setIpAddress(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceNetworkResult.DstNetwork.IpAddress")); dstNetwork.setErrorCode(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceNetworkResult.DstNetwork.ErrorCode")); dstNetwork.setProduct(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceNetworkResult.DstNetwork.Product")); dstNetwork.setNetworkType(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceNetworkResult.DstNetwork.NetworkType")); dstNetwork.setResourceId(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceNetworkResult.DstNetwork.ResourceId")); dstNetwork.setRegionId(_ctx.stringValue("CheckConnectivityResponse.Data.ResourceNetworkResult.DstNetwork.RegionId")); resourceNetworkResult.setDstNetwork(dstNetwork); data.setResourceNetworkResult(resourceNetworkResult); RdsWhiteListResult rdsWhiteListResult = new RdsWhiteListResult(); rdsWhiteListResult.setSeverity(_ctx.integerValue("CheckConnectivityResponse.Data.RdsWhiteListResult.Severity")); rdsWhiteListResult.setRdsWhiteList(_ctx.stringValue("CheckConnectivityResponse.Data.RdsWhiteListResult.RdsWhiteList")); rdsWhiteListResult.setRdsResourceId(_ctx.stringValue("CheckConnectivityResponse.Data.RdsWhiteListResult.RdsResourceId")); rdsWhiteListResult.setErrorCode(_ctx.stringValue("CheckConnectivityResponse.Data.RdsWhiteListResult.ErrorCode")); data.setRdsWhiteListResult(rdsWhiteListResult); SecurityGroupResult securityGroupResult = new SecurityGroupResult(); securityGroupResult.setDstCheckResult(_ctx.stringValue("CheckConnectivityResponse.Data.SecurityGroupResult.DstCheckResult")); securityGroupResult.setSeverity(_ctx.integerValue("CheckConnectivityResponse.Data.SecurityGroupResult.Severity")); securityGroupResult.setSrcSecurityGroupRule(_ctx.stringValue("CheckConnectivityResponse.Data.SecurityGroupResult.SrcSecurityGroupRule")); securityGroupResult.setSrcResourceId(_ctx.stringValue("CheckConnectivityResponse.Data.SecurityGroupResult.SrcResourceId")); securityGroupResult.setErrorCode(_ctx.stringValue("CheckConnectivityResponse.Data.SecurityGroupResult.ErrorCode")); securityGroupResult.setDstSecurityGroupRule(_ctx.stringValue("CheckConnectivityResponse.Data.SecurityGroupResult.DstSecurityGroupRule")); securityGroupResult.setSrcCheckResult(_ctx.stringValue("CheckConnectivityResponse.Data.SecurityGroupResult.SrcCheckResult")); securityGroupResult.setDstResourceId(_ctx.stringValue("CheckConnectivityResponse.Data.SecurityGroupResult.DstResourceId")); data.setSecurityGroupResult(securityGroupResult); SecurityPunishResult securityPunishResult = new SecurityPunishResult(); securityPunishResult.setSeverity(_ctx.integerValue("CheckConnectivityResponse.Data.SecurityPunishResult.Severity")); securityPunishResult.setSecurityPunishList(_ctx.stringValue("CheckConnectivityResponse.Data.SecurityPunishResult.SecurityPunishList")); securityPunishResult.setErrorCode(_ctx.stringValue("CheckConnectivityResponse.Data.SecurityPunishResult.ErrorCode")); data.setSecurityPunishResult(securityPunishResult); checkConnectivityResponse.setData(data); return checkConnectivityResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/CheckConnectivitySecurityGroupResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivitySecurityGroupResponse; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivitySecurityGroupResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class CheckConnectivitySecurityGroupResponseUnmarshaller { public static CheckConnectivitySecurityGroupResponse unmarshall(CheckConnectivitySecurityGroupResponse checkConnectivitySecurityGroupResponse, UnmarshallerContext _ctx) { checkConnectivitySecurityGroupResponse.setRequestId(_ctx.stringValue("CheckConnectivitySecurityGroupResponse.RequestId")); Data data = new Data(); data.setSecGroupResult(_ctx.stringValue("CheckConnectivitySecurityGroupResponse.Data.SecGroupResult")); data.setCheckId(_ctx.stringValue("CheckConnectivitySecurityGroupResponse.Data.CheckId")); data.setSeverity(_ctx.integerValue("CheckConnectivitySecurityGroupResponse.Data.Severity")); data.setErrorCode(_ctx.stringValue("CheckConnectivitySecurityGroupResponse.Data.ErrorCode")); checkConnectivitySecurityGroupResponse.setData(data); return checkConnectivitySecurityGroupResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/CheckConnectivitySecurityPunResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivitySecurityPunResponse; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivitySecurityPunResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class CheckConnectivitySecurityPunResponseUnmarshaller { public static CheckConnectivitySecurityPunResponse unmarshall(CheckConnectivitySecurityPunResponse checkConnectivitySecurityPunResponse, UnmarshallerContext _ctx) { checkConnectivitySecurityPunResponse.setRequestId(_ctx.stringValue("CheckConnectivitySecurityPunResponse.RequestId")); Data data = new Data(); data.setSecurityPunishResult(_ctx.stringValue("CheckConnectivitySecurityPunResponse.Data.SecurityPunishResult")); data.setCheckId(_ctx.stringValue("CheckConnectivitySecurityPunResponse.Data.CheckId")); data.setSeverity(_ctx.integerValue("CheckConnectivitySecurityPunResponse.Data.Severity")); data.setErrorCode(_ctx.stringValue("CheckConnectivitySecurityPunResponse.Data.ErrorCode")); checkConnectivitySecurityPunResponse.setData(data); return checkConnectivitySecurityPunResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/CheckConnectivityStatusResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivityStatusResponse; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivityStatusResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class CheckConnectivityStatusResponseUnmarshaller { public static CheckConnectivityStatusResponse unmarshall(CheckConnectivityStatusResponse checkConnectivityStatusResponse, UnmarshallerContext _ctx) { checkConnectivityStatusResponse.setRequestId(_ctx.stringValue("CheckConnectivityStatusResponse.RequestId")); Data data = new Data(); data.setDstStatus(_ctx.stringValue("CheckConnectivityStatusResponse.Data.DstStatus")); data.setSeverity(_ctx.integerValue("CheckConnectivityStatusResponse.Data.Severity")); data.setCheckId(_ctx.stringValue("CheckConnectivityStatusResponse.Data.CheckId")); data.setErrorCode(_ctx.stringValue("CheckConnectivityStatusResponse.Data.ErrorCode")); data.setSrcStatus(_ctx.stringValue("CheckConnectivityStatusResponse.Data.SrcStatus")); checkConnectivityStatusResponse.setData(data); return checkConnectivityStatusResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/CheckConnectivityWhiteListResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivityWhiteListResponse; import com.aliyuncs.advisor_share.model.v20180608.CheckConnectivityWhiteListResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class CheckConnectivityWhiteListResponseUnmarshaller { public static CheckConnectivityWhiteListResponse unmarshall(CheckConnectivityWhiteListResponse checkConnectivityWhiteListResponse, UnmarshallerContext _ctx) { checkConnectivityWhiteListResponse.setRequestId(_ctx.stringValue("CheckConnectivityWhiteListResponse.RequestId")); Data data = new Data(); data.setCheckId(_ctx.stringValue("CheckConnectivityWhiteListResponse.Data.CheckId")); data.setSeverity(_ctx.integerValue("CheckConnectivityWhiteListResponse.Data.Severity")); data.setWhiteListResult(_ctx.stringValue("CheckConnectivityWhiteListResponse.Data.WhiteListResult")); data.setErrorCode(_ctx.stringValue("CheckConnectivityWhiteListResponse.Data.ErrorCode")); checkConnectivityWhiteListResponse.setData(data); return checkConnectivityWhiteListResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/ConstructTopoResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.ConstructTopoResponse; import com.aliyuncs.transform.UnmarshallerContext; public class ConstructTopoResponseUnmarshaller { public static ConstructTopoResponse unmarshall(ConstructTopoResponse constructTopoResponse, UnmarshallerContext _ctx) { constructTopoResponse.setRequestId(_ctx.stringValue("ConstructTopoResponse.RequestId")); constructTopoResponse.setSuccess(_ctx.booleanValue("ConstructTopoResponse.Success")); return constructTopoResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/CreateAdviceResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.CreateAdviceResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateAdviceResponseUnmarshaller { public static CreateAdviceResponse unmarshall(CreateAdviceResponse createAdviceResponse, UnmarshallerContext _ctx) { createAdviceResponse.setRequestId(_ctx.stringValue("CreateAdviceResponse.RequestId")); createAdviceResponse.setSuccess(_ctx.booleanValue("CreateAdviceResponse.Success")); return createAdviceResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/CreateAppResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.CreateAppResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateAppResponseUnmarshaller { public static CreateAppResponse unmarshall(CreateAppResponse createAppResponse, UnmarshallerContext _ctx) { createAppResponse.setRequestId(_ctx.stringValue("CreateAppResponse.RequestId")); createAppResponse.setData(_ctx.booleanValue("CreateAppResponse.Data")); return createAppResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/CreateDepartmentResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.CreateDepartmentResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateDepartmentResponseUnmarshaller { public static CreateDepartmentResponse unmarshall(CreateDepartmentResponse createDepartmentResponse, UnmarshallerContext _ctx) { createDepartmentResponse.setRequestId(_ctx.stringValue("CreateDepartmentResponse.RequestId")); createDepartmentResponse.setData(_ctx.booleanValue("CreateDepartmentResponse.Data")); return createDepartmentResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/DeleteAdviceResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.DeleteAdviceResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteAdviceResponseUnmarshaller { public static DeleteAdviceResponse unmarshall(DeleteAdviceResponse deleteAdviceResponse, UnmarshallerContext _ctx) { deleteAdviceResponse.setRequestId(_ctx.stringValue("DeleteAdviceResponse.RequestId")); deleteAdviceResponse.setSuccess(_ctx.booleanValue("DeleteAdviceResponse.Success")); return deleteAdviceResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/DeleteAppResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.DeleteAppResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteAppResponseUnmarshaller { public static DeleteAppResponse unmarshall(DeleteAppResponse deleteAppResponse, UnmarshallerContext _ctx) { deleteAppResponse.setRequestId(_ctx.stringValue("DeleteAppResponse.RequestId")); deleteAppResponse.setData(_ctx.booleanValue("DeleteAppResponse.Data")); return deleteAppResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/DeleteDepartmentResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.DeleteDepartmentResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteDepartmentResponseUnmarshaller { public static DeleteDepartmentResponse unmarshall(DeleteDepartmentResponse deleteDepartmentResponse, UnmarshallerContext _ctx) { deleteDepartmentResponse.setRequestId(_ctx.stringValue("DeleteDepartmentResponse.RequestId")); deleteDepartmentResponse.setData(_ctx.booleanValue("DeleteDepartmentResponse.Data")); return deleteDepartmentResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/DeleteTranferMessageResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.DeleteTranferMessageResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteTranferMessageResponseUnmarshaller { public static DeleteTranferMessageResponse unmarshall(DeleteTranferMessageResponse deleteTranferMessageResponse, UnmarshallerContext _ctx) { deleteTranferMessageResponse.setRequestId(_ctx.stringValue("DeleteTranferMessageResponse.RequestId")); deleteTranferMessageResponse.setMessage(_ctx.stringValue("DeleteTranferMessageResponse.Message")); deleteTranferMessageResponse.setData(_ctx.booleanValue("DeleteTranferMessageResponse.Data")); deleteTranferMessageResponse.setSuccess(_ctx.booleanValue("DeleteTranferMessageResponse.Success")); return deleteTranferMessageResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/DescribeAdviceDetailsResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.DescribeAdviceDetailsResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeAdviceDetailsResponseUnmarshaller { public static DescribeAdviceDetailsResponse unmarshall(DescribeAdviceDetailsResponse describeAdviceDetailsResponse, UnmarshallerContext _ctx) { describeAdviceDetailsResponse.setRequestId(_ctx.stringValue("DescribeAdviceDetailsResponse.RequestId")); describeAdviceDetailsResponse.setData(_ctx.stringValue("DescribeAdviceDetailsResponse.Data")); return describeAdviceDetailsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/DescribeAdvicesIndexResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.DescribeAdvicesIndexResponse; import com.aliyuncs.advisor_share.model.v20180608.DescribeAdvicesIndexResponse.DataItem; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeAdvicesIndexResponseUnmarshaller { public static DescribeAdvicesIndexResponse unmarshall(DescribeAdvicesIndexResponse describeAdvicesIndexResponse, UnmarshallerContext _ctx) { describeAdvicesIndexResponse.setRequestId(_ctx.stringValue("DescribeAdvicesIndexResponse.RequestId")); describeAdvicesIndexResponse.setProductStatus(_ctx.stringValue("DescribeAdvicesIndexResponse.ProductStatus")); List<DataItem> data = new ArrayList<DataItem>(); for (int i = 0; i < _ctx.lengthValue("DescribeAdvicesIndexResponse.Data.Length"); i++) { DataItem dataItem = new DataItem(); dataItem.setCode(_ctx.stringValue("DescribeAdvicesIndexResponse.Data["+ i +"].Code")); dataItem.setHasMore(_ctx.booleanValue("DescribeAdvicesIndexResponse.Data["+ i +"].HasMore")); dataItem.setSize(_ctx.integerValue("DescribeAdvicesIndexResponse.Data["+ i +"].Size")); data.add(dataItem); } describeAdvicesIndexResponse.setData(data); return describeAdvicesIndexResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/DescribeAdvicesPageResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.DescribeAdvicesPageResponse; import com.aliyuncs.advisor_share.model.v20180608.DescribeAdvicesPageResponse.Data; import com.aliyuncs.advisor_share.model.v20180608.DescribeAdvicesPageResponse.Data.ResultItem; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeAdvicesPageResponseUnmarshaller { public static DescribeAdvicesPageResponse unmarshall(DescribeAdvicesPageResponse describeAdvicesPageResponse, UnmarshallerContext _ctx) { describeAdvicesPageResponse.setRequestId(_ctx.stringValue("DescribeAdvicesPageResponse.RequestId")); Data data = new Data(); data.setPageNo(_ctx.longValue("DescribeAdvicesPageResponse.Data.PageNo")); data.setPageSize(_ctx.longValue("DescribeAdvicesPageResponse.Data.PageSize")); data.setTotal(_ctx.longValue("DescribeAdvicesPageResponse.Data.Total")); List<ResultItem> result = new ArrayList<ResultItem>(); for (int i = 0; i < _ctx.lengthValue("DescribeAdvicesPageResponse.Data.Result.Length"); i++) { ResultItem resultItem = new ResultItem(); resultItem.setAction(_ctx.stringValue("DescribeAdvicesPageResponse.Data.Result["+ i +"].Action")); resultItem.setAliyunId(_ctx.longValue("DescribeAdvicesPageResponse.Data.Result["+ i +"].AliyunId")); resultItem.setCheckId(_ctx.stringValue("DescribeAdvicesPageResponse.Data.Result["+ i +"].CheckId")); resultItem.setCheckName(_ctx.stringValue("DescribeAdvicesPageResponse.Data.Result["+ i +"].CheckName")); resultItem.setContent(_ctx.stringValue("DescribeAdvicesPageResponse.Data.Result["+ i +"].Content")); resultItem.setDescription(_ctx.stringValue("DescribeAdvicesPageResponse.Data.Result["+ i +"].Description")); resultItem.setDetails(_ctx.stringValue("DescribeAdvicesPageResponse.Data.Result["+ i +"].Details")); resultItem.setGmtCreated(_ctx.stringValue("DescribeAdvicesPageResponse.Data.Result["+ i +"].GmtCreated")); resultItem.setGmtModified(_ctx.stringValue("DescribeAdvicesPageResponse.Data.Result["+ i +"].GmtModified")); resultItem.setId(_ctx.longValue("DescribeAdvicesPageResponse.Data.Result["+ i +"].Id")); resultItem.setIsExpired(_ctx.booleanValue("DescribeAdvicesPageResponse.Data.Result["+ i +"].IsExpired")); resultItem.setLinks(_ctx.stringValue("DescribeAdvicesPageResponse.Data.Result["+ i +"].Links")); resultItem.setProduct(_ctx.stringValue("DescribeAdvicesPageResponse.Data.Result["+ i +"].Product")); resultItem.setReason(_ctx.stringValue("DescribeAdvicesPageResponse.Data.Result["+ i +"].Reason")); resultItem.setResource(_ctx.stringValue("DescribeAdvicesPageResponse.Data.Result["+ i +"].Resource")); resultItem.setResourceId(_ctx.stringValue("DescribeAdvicesPageResponse.Data.Result["+ i +"].ResourceId")); resultItem.setSeverity(_ctx.longValue("DescribeAdvicesPageResponse.Data.Result["+ i +"].Severity")); result.add(resultItem); } data.setResult(result); describeAdvicesPageResponse.setData(data); return describeAdvicesPageResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/DescribeAdvicesResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.DescribeAdvicesResponse; import com.aliyuncs.advisor_share.model.v20180608.DescribeAdvicesResponse.Advice; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeAdvicesResponseUnmarshaller { public static DescribeAdvicesResponse unmarshall(DescribeAdvicesResponse describeAdvicesResponse, UnmarshallerContext _ctx) { describeAdvicesResponse.setRequestId(_ctx.stringValue("DescribeAdvicesResponse.RequestId")); List<Advice> data = new ArrayList<Advice>(); for (int i = 0; i < _ctx.lengthValue("DescribeAdvicesResponse.Data.Length"); i++) { Advice advice = new Advice(); advice.setSeverity(_ctx.integerValue("DescribeAdvicesResponse.Data["+ i +"].Severity")); advice.setAction(_ctx.stringValue("DescribeAdvicesResponse.Data["+ i +"].Action")); advice.setProduct(_ctx.stringValue("DescribeAdvicesResponse.Data["+ i +"].Product")); advice.setGmtModified(_ctx.stringValue("DescribeAdvicesResponse.Data["+ i +"].GmtModified")); advice.setDetails(_ctx.stringValue("DescribeAdvicesResponse.Data["+ i +"].Details")); advice.setIsExpired(_ctx.booleanValue("DescribeAdvicesResponse.Data["+ i +"].IsExpired")); advice.setGmtCreated(_ctx.stringValue("DescribeAdvicesResponse.Data["+ i +"].GmtCreated")); advice.setResource(_ctx.stringValue("DescribeAdvicesResponse.Data["+ i +"].Resource")); advice.setDescription(_ctx.stringValue("DescribeAdvicesResponse.Data["+ i +"].Description")); advice.setLinks(_ctx.stringValue("DescribeAdvicesResponse.Data["+ i +"].Links")); advice.setCheckId(_ctx.stringValue("DescribeAdvicesResponse.Data["+ i +"].CheckId")); advice.setAliyunId(_ctx.longValue("DescribeAdvicesResponse.Data["+ i +"].AliyunId")); advice.setResourceId(_ctx.stringValue("DescribeAdvicesResponse.Data["+ i +"].ResourceId")); advice.setContent(_ctx.stringValue("DescribeAdvicesResponse.Data["+ i +"].Content")); advice.setReason(_ctx.stringValue("DescribeAdvicesResponse.Data["+ i +"].Reason")); advice.setId(_ctx.longValue("DescribeAdvicesResponse.Data["+ i +"].Id")); advice.setCheckName(_ctx.stringValue("DescribeAdvicesResponse.Data["+ i +"].CheckName")); data.add(advice); } describeAdvicesResponse.setData(data); return describeAdvicesResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/DescribeAdvisorChecksResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.DescribeAdvisorChecksResponse; import com.aliyuncs.advisor_share.model.v20180608.DescribeAdvisorChecksResponse.AdvisorCheck; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeAdvisorChecksResponseUnmarshaller { public static DescribeAdvisorChecksResponse unmarshall(DescribeAdvisorChecksResponse describeAdvisorChecksResponse, UnmarshallerContext _ctx) { describeAdvisorChecksResponse.setRequestId(_ctx.stringValue("DescribeAdvisorChecksResponse.RequestId")); describeAdvisorChecksResponse.setCode(_ctx.stringValue("DescribeAdvisorChecksResponse.Code")); List<AdvisorCheck> data = new ArrayList<AdvisorCheck>(); for (int i = 0; i < _ctx.lengthValue("DescribeAdvisorChecksResponse.Data.Length"); i++) { AdvisorCheck advisorCheck = new AdvisorCheck(); advisorCheck.setStatus(_ctx.stringValue("DescribeAdvisorChecksResponse.Data["+ i +"].Status")); advisorCheck.setProduct(_ctx.stringValue("DescribeAdvisorChecksResponse.Data["+ i +"].Product")); advisorCheck.setOperateColumn(_ctx.stringValue("DescribeAdvisorChecksResponse.Data["+ i +"].OperateColumn")); advisorCheck.setGmtModified(_ctx.stringValue("DescribeAdvisorChecksResponse.Data["+ i +"].GmtModified")); advisorCheck.setViewColumn(_ctx.stringValue("DescribeAdvisorChecksResponse.Data["+ i +"].ViewColumn")); advisorCheck.setGmtCreated(_ctx.stringValue("DescribeAdvisorChecksResponse.Data["+ i +"].GmtCreated")); advisorCheck.setDescription(_ctx.stringValue("DescribeAdvisorChecksResponse.Data["+ i +"].Description")); advisorCheck.setTips(_ctx.stringValue("DescribeAdvisorChecksResponse.Data["+ i +"].Tips")); advisorCheck.setCode(_ctx.stringValue("DescribeAdvisorChecksResponse.Data["+ i +"].Code")); advisorCheck.setCategory(_ctx.stringValue("DescribeAdvisorChecksResponse.Data["+ i +"].Category")); advisorCheck.setName(_ctx.stringValue("DescribeAdvisorChecksResponse.Data["+ i +"].Name")); advisorCheck.setId(_ctx.longValue("DescribeAdvisorChecksResponse.Data["+ i +"].Id")); advisorCheck.setConfigSupport(_ctx.booleanValue("DescribeAdvisorChecksResponse.Data["+ i +"].ConfigSupport")); data.add(advisorCheck); } describeAdvisorChecksResponse.setData(data); return describeAdvisorChecksResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/DescribeAdvisorResourcesResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.DescribeAdvisorResourcesResponse; import com.aliyuncs.advisor_share.model.v20180608.DescribeAdvisorResourcesResponse.Data; import com.aliyuncs.advisor_share.model.v20180608.DescribeAdvisorResourcesResponse.Data.Resource; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeAdvisorResourcesResponseUnmarshaller { public static DescribeAdvisorResourcesResponse unmarshall(DescribeAdvisorResourcesResponse describeAdvisorResourcesResponse, UnmarshallerContext _ctx) { describeAdvisorResourcesResponse.setRequestId(_ctx.stringValue("DescribeAdvisorResourcesResponse.RequestId")); Data data = new Data(); data.setPageNo(_ctx.integerValue("DescribeAdvisorResourcesResponse.Data.PageNo")); data.setPageSize(_ctx.integerValue("DescribeAdvisorResourcesResponse.Data.PageSize")); data.setTotal(_ctx.integerValue("DescribeAdvisorResourcesResponse.Data.Total")); List<Resource> result = new ArrayList<Resource>(); for (int i = 0; i < _ctx.lengthValue("DescribeAdvisorResourcesResponse.Data.Result.Length"); i++) { Resource resource = new Resource(); resource.setData(_ctx.stringValue("DescribeAdvisorResourcesResponse.Data.Result["+ i +"].Data")); resource.setResourceId(_ctx.stringValue("DescribeAdvisorResourcesResponse.Data.Result["+ i +"].ResourceId")); resource.setProduct(_ctx.stringValue("DescribeAdvisorResourcesResponse.Data.Result["+ i +"].Product")); resource.setResourceName(_ctx.stringValue("DescribeAdvisorResourcesResponse.Data.Result["+ i +"].ResourceName")); resource.setRegionId(_ctx.stringValue("DescribeAdvisorResourcesResponse.Data.Result["+ i +"].RegionId")); result.add(resource); } data.setResult(result); describeAdvisorResourcesResponse.setData(data); return describeAdvisorResourcesResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/DescribeAdvisorUserResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.DescribeAdvisorUserResponse; import com.aliyuncs.advisor_share.model.v20180608.DescribeAdvisorUserResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeAdvisorUserResponseUnmarshaller { public static DescribeAdvisorUserResponse unmarshall(DescribeAdvisorUserResponse describeAdvisorUserResponse, UnmarshallerContext _ctx) { describeAdvisorUserResponse.setRequestId(_ctx.stringValue("DescribeAdvisorUserResponse.RequestId")); Data data = new Data(); data.setShowTam(_ctx.booleanValue("DescribeAdvisorUserResponse.Data.ShowTam")); data.setAdviceStatus(_ctx.stringValue("DescribeAdvisorUserResponse.Data.AdviceStatus")); data.setAuthorized(_ctx.booleanValue("DescribeAdvisorUserResponse.Data.Authorized")); data.setTamAuthorized(_ctx.booleanValue("DescribeAdvisorUserResponse.Data.TamAuthorized")); data.setAliyunId(_ctx.longValue("DescribeAdvisorUserResponse.Data.AliyunId")); data.setProductStatus(_ctx.stringValue("DescribeAdvisorUserResponse.Data.ProductStatus")); data.setResourceStatus(_ctx.stringValue("DescribeAdvisorUserResponse.Data.ResourceStatus")); data.setCostAuthorized(_ctx.booleanValue("DescribeAdvisorUserResponse.Data.CostAuthorized")); describeAdvisorUserResponse.setData(data); return describeAdvisorUserResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/DescribeAssociateAccountResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.DescribeAssociateAccountResponse; import com.aliyuncs.advisor_share.model.v20180608.DescribeAssociateAccountResponse.Data; import com.aliyuncs.advisor_share.model.v20180608.DescribeAssociateAccountResponse.Data.AssociateAccountListItem; import com.aliyuncs.advisor_share.model.v20180608.DescribeAssociateAccountResponse.Data.MasterAccount; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeAssociateAccountResponseUnmarshaller { public static DescribeAssociateAccountResponse unmarshall(DescribeAssociateAccountResponse describeAssociateAccountResponse, UnmarshallerContext _ctx) { describeAssociateAccountResponse.setRequestId(_ctx.stringValue("DescribeAssociateAccountResponse.RequestId")); Data data = new Data(); MasterAccount masterAccount = new MasterAccount(); masterAccount.setUserName(_ctx.stringValue("DescribeAssociateAccountResponse.Data.MasterAccount.UserName")); masterAccount.setAliyunId(_ctx.longValue("DescribeAssociateAccountResponse.Data.MasterAccount.AliyunId")); data.setMasterAccount(masterAccount); List<AssociateAccountListItem> associateAccountList = new ArrayList<AssociateAccountListItem>(); for (int i = 0; i < _ctx.lengthValue("DescribeAssociateAccountResponse.Data.AssociateAccountList.Length"); i++) { AssociateAccountListItem associateAccountListItem = new AssociateAccountListItem(); associateAccountListItem.setSubAliyunId(_ctx.longValue("DescribeAssociateAccountResponse.Data.AssociateAccountList["+ i +"].SubAliyunId")); associateAccountListItem.setSubUserName(_ctx.stringValue("DescribeAssociateAccountResponse.Data.AssociateAccountList["+ i +"].SubUserName")); associateAccountList.add(associateAccountListItem); } data.setAssociateAccountList(associateAccountList); describeAssociateAccountResponse.setData(data); return describeAssociateAccountResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/DescribeCheckResultOverviewResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.DescribeCheckResultOverviewResponse; import com.aliyuncs.advisor_share.model.v20180608.DescribeCheckResultOverviewResponse.Data; import com.aliyuncs.advisor_share.model.v20180608.DescribeCheckResultOverviewResponse.Data.CheckResultCount; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeCheckResultOverviewResponseUnmarshaller { public static DescribeCheckResultOverviewResponse unmarshall(DescribeCheckResultOverviewResponse describeCheckResultOverviewResponse, UnmarshallerContext _ctx) { describeCheckResultOverviewResponse.setRequestId(_ctx.stringValue("DescribeCheckResultOverviewResponse.RequestId")); Data data = new Data(); data.setResourceTotalCount(_ctx.stringValue("DescribeCheckResultOverviewResponse.Data.ResourceTotalCount")); data.setActiveCheckItemCount(_ctx.stringValue("DescribeCheckResultOverviewResponse.Data.ActiveCheckItemCount")); List<CheckResultCount> checkResultCountList = new ArrayList<CheckResultCount>(); for (int i = 0; i < _ctx.lengthValue("DescribeCheckResultOverviewResponse.Data.CheckResultCountList.Length"); i++) { CheckResultCount checkResultCount = new CheckResultCount(); checkResultCount.setCategory(_ctx.stringValue("DescribeCheckResultOverviewResponse.Data.CheckResultCountList["+ i +"].Category")); checkResultCount.setWarningCount(_ctx.stringValue("DescribeCheckResultOverviewResponse.Data.CheckResultCountList["+ i +"].WarningCount")); checkResultCount.setCriticalCount(_ctx.stringValue("DescribeCheckResultOverviewResponse.Data.CheckResultCountList["+ i +"].CriticalCount")); checkResultCount.setNormalCount(_ctx.stringValue("DescribeCheckResultOverviewResponse.Data.CheckResultCountList["+ i +"].NormalCount")); checkResultCountList.add(checkResultCount); } data.setCheckResultCountList(checkResultCountList); describeCheckResultOverviewResponse.setData(data); return describeCheckResultOverviewResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/DescribeCheckResultsResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.DescribeCheckResultsResponse; import com.aliyuncs.advisor_share.model.v20180608.DescribeCheckResultsResponse.CheckResult; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeCheckResultsResponseUnmarshaller { public static DescribeCheckResultsResponse unmarshall(DescribeCheckResultsResponse describeCheckResultsResponse, UnmarshallerContext _ctx) { describeCheckResultsResponse.setRequestId(_ctx.stringValue("DescribeCheckResultsResponse.RequestId")); List<CheckResult> data = new ArrayList<CheckResult>(); for (int i = 0; i < _ctx.lengthValue("DescribeCheckResultsResponse.Data.Length"); i++) { CheckResult checkResult = new CheckResult(); checkResult.setSeverity(_ctx.integerValue("DescribeCheckResultsResponse.Data["+ i +"].Severity")); checkResult.setAdviceCount(_ctx.integerValue("DescribeCheckResultsResponse.Data["+ i +"].AdviceCount")); checkResult.setSummary(_ctx.stringValue("DescribeCheckResultsResponse.Data["+ i +"].Summary")); checkResult.setProduct(_ctx.stringValue("DescribeCheckResultsResponse.Data["+ i +"].Product")); checkResult.setOperateColumn(_ctx.stringValue("DescribeCheckResultsResponse.Data["+ i +"].OperateColumn")); checkResult.setViewColumn(_ctx.stringValue("DescribeCheckResultsResponse.Data["+ i +"].ViewColumn")); checkResult.setDescription(_ctx.stringValue("DescribeCheckResultsResponse.Data["+ i +"].Description")); checkResult.setTips(_ctx.stringValue("DescribeCheckResultsResponse.Data["+ i +"].Tips")); checkResult.setCheckId(_ctx.stringValue("DescribeCheckResultsResponse.Data["+ i +"].CheckId")); checkResult.setRefreshDateTime(_ctx.stringValue("DescribeCheckResultsResponse.Data["+ i +"].RefreshDateTime")); checkResult.setCategory(_ctx.stringValue("DescribeCheckResultsResponse.Data["+ i +"].Category")); checkResult.setCheckName(_ctx.stringValue("DescribeCheckResultsResponse.Data["+ i +"].CheckName")); checkResult.setConfigSupport(_ctx.booleanValue("DescribeCheckResultsResponse.Data["+ i +"].ConfigSupport")); data.add(checkResult); } describeCheckResultsResponse.setData(data); return describeCheckResultsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/DescribeHistoryCheckStatisticsResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.DescribeHistoryCheckStatisticsResponse; import com.aliyuncs.advisor_share.model.v20180608.DescribeHistoryCheckStatisticsResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeHistoryCheckStatisticsResponseUnmarshaller { public static DescribeHistoryCheckStatisticsResponse unmarshall(DescribeHistoryCheckStatisticsResponse describeHistoryCheckStatisticsResponse, UnmarshallerContext _ctx) { describeHistoryCheckStatisticsResponse.setRequestId(_ctx.stringValue("DescribeHistoryCheckStatisticsResponse.RequestId")); Data data = new Data(); data.setNotrepair(_ctx.longValue("DescribeHistoryCheckStatisticsResponse.Data.Notrepair")); data.setTotal(_ctx.longValue("DescribeHistoryCheckStatisticsResponse.Data.Total")); data.setRepair(_ctx.longValue("DescribeHistoryCheckStatisticsResponse.Data.Repair")); describeHistoryCheckStatisticsResponse.setData(data); return describeHistoryCheckStatisticsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/DescribeInspectItemThresholdParamSettingResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.DescribeInspectItemThresholdParamSettingResponse; import com.aliyuncs.advisor_share.model.v20180608.DescribeInspectItemThresholdParamSettingResponse.Data; import com.aliyuncs.advisor_share.model.v20180608.DescribeInspectItemThresholdParamSettingResponse.Data.IndicatorItem; import com.aliyuncs.advisor_share.model.v20180608.DescribeInspectItemThresholdParamSettingResponse.Data.IndicatorItem.ThresholdItem; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeInspectItemThresholdParamSettingResponseUnmarshaller { public static DescribeInspectItemThresholdParamSettingResponse unmarshall(DescribeInspectItemThresholdParamSettingResponse describeInspectItemThresholdParamSettingResponse, UnmarshallerContext _ctx) { describeInspectItemThresholdParamSettingResponse.setRequestId(_ctx.stringValue("DescribeInspectItemThresholdParamSettingResponse.RequestId")); Data data = new Data(); data.setInspectName(_ctx.stringValue("DescribeInspectItemThresholdParamSettingResponse.Data.InspectName")); data.setCode(_ctx.stringValue("DescribeInspectItemThresholdParamSettingResponse.Data.Code")); data.setTips(_ctx.stringValue("DescribeInspectItemThresholdParamSettingResponse.Data.Tips")); data.setDescription(_ctx.stringValue("DescribeInspectItemThresholdParamSettingResponse.Data.Description")); data.setCategory(_ctx.stringValue("DescribeInspectItemThresholdParamSettingResponse.Data.Category")); List<IndicatorItem> indicator = new ArrayList<IndicatorItem>(); for (int i = 0; i < _ctx.lengthValue("DescribeInspectItemThresholdParamSettingResponse.Data.Indicator.Length"); i++) { IndicatorItem indicatorItem = new IndicatorItem(); indicatorItem.setGroup(_ctx.stringValue("DescribeInspectItemThresholdParamSettingResponse.Data.Indicator["+ i +"].Group")); indicatorItem.setGroupKey(_ctx.stringValue("DescribeInspectItemThresholdParamSettingResponse.Data.Indicator["+ i +"].GroupKey")); indicatorItem.setOrder(_ctx.longValue("DescribeInspectItemThresholdParamSettingResponse.Data.Indicator["+ i +"].Order")); List<ThresholdItem> threshold = new ArrayList<ThresholdItem>(); for (int j = 0; j < _ctx.lengthValue("DescribeInspectItemThresholdParamSettingResponse.Data.Indicator["+ i +"].Threshold.Length"); j++) { ThresholdItem thresholdItem = new ThresholdItem(); thresholdItem.setMax(_ctx.longValue("DescribeInspectItemThresholdParamSettingResponse.Data.Indicator["+ i +"].Threshold["+ j +"].Max")); thresholdItem.setMin(_ctx.longValue("DescribeInspectItemThresholdParamSettingResponse.Data.Indicator["+ i +"].Threshold["+ j +"].Min")); thresholdItem.setKey(_ctx.stringValue("DescribeInspectItemThresholdParamSettingResponse.Data.Indicator["+ i +"].Threshold["+ j +"].Key")); thresholdItem.setName(_ctx.stringValue("DescribeInspectItemThresholdParamSettingResponse.Data.Indicator["+ i +"].Threshold["+ j +"].Name")); thresholdItem.setOrder(_ctx.longValue("DescribeInspectItemThresholdParamSettingResponse.Data.Indicator["+ i +"].Threshold["+ j +"].Order")); thresholdItem.setValue(_ctx.longValue("DescribeInspectItemThresholdParamSettingResponse.Data.Indicator["+ i +"].Threshold["+ j +"].Value")); thresholdItem.setDefaultValue(_ctx.longValue("DescribeInspectItemThresholdParamSettingResponse.Data.Indicator["+ i +"].Threshold["+ j +"].DefaultValue")); thresholdItem.setUnit(_ctx.stringValue("DescribeInspectItemThresholdParamSettingResponse.Data.Indicator["+ i +"].Threshold["+ j +"].Unit")); threshold.add(thresholdItem); } indicatorItem.setThreshold(threshold); indicator.add(indicatorItem); } data.setIndicator(indicator); describeInspectItemThresholdParamSettingResponse.setData(data); return describeInspectItemThresholdParamSettingResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/DescribeProductTagsResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.DescribeProductTagsResponse; import com.aliyuncs.advisor_share.model.v20180608.DescribeProductTagsResponse.ResourceTag; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeProductTagsResponseUnmarshaller { public static DescribeProductTagsResponse unmarshall(DescribeProductTagsResponse describeProductTagsResponse, UnmarshallerContext _ctx) { describeProductTagsResponse.setRequestId(_ctx.stringValue("DescribeProductTagsResponse.RequestId")); describeProductTagsResponse.setCode(_ctx.stringValue("DescribeProductTagsResponse.Code")); List<ResourceTag> data = new ArrayList<ResourceTag>(); for (int i = 0; i < _ctx.lengthValue("DescribeProductTagsResponse.Data.Length"); i++) { ResourceTag resourceTag = new ResourceTag(); resourceTag.setTagValue(_ctx.stringValue("DescribeProductTagsResponse.Data["+ i +"].TagValue")); resourceTag.setProduct(_ctx.stringValue("DescribeProductTagsResponse.Data["+ i +"].Product")); resourceTag.setRegion(_ctx.stringValue("DescribeProductTagsResponse.Data["+ i +"].Region")); resourceTag.setTagKey(_ctx.longValue("DescribeProductTagsResponse.Data["+ i +"].TagKey")); data.add(resourceTag); } describeProductTagsResponse.setData(data); return describeProductTagsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/DescribeResourceDistributionResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.DescribeResourceDistributionResponse; import com.aliyuncs.advisor_share.model.v20180608.DescribeResourceDistributionResponse.ResourceDistribution; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeResourceDistributionResponseUnmarshaller { public static DescribeResourceDistributionResponse unmarshall(DescribeResourceDistributionResponse describeResourceDistributionResponse, UnmarshallerContext _ctx) { describeResourceDistributionResponse.setRequestId(_ctx.stringValue("DescribeResourceDistributionResponse.RequestId")); List<ResourceDistribution> data = new ArrayList<ResourceDistribution>(); for (int i = 0; i < _ctx.lengthValue("DescribeResourceDistributionResponse.Data.Length"); i++) { ResourceDistribution resourceDistribution = new ResourceDistribution(); resourceDistribution.setChecksNumOn(_ctx.integerValue("DescribeResourceDistributionResponse.Data["+ i +"].ChecksNumOn")); resourceDistribution.setProduct(_ctx.stringValue("DescribeResourceDistributionResponse.Data["+ i +"].Product")); resourceDistribution.setFailCount(_ctx.integerValue("DescribeResourceDistributionResponse.Data["+ i +"].FailCount")); resourceDistribution.setNormalCount(_ctx.integerValue("DescribeResourceDistributionResponse.Data["+ i +"].NormalCount")); resourceDistribution.setChecksNumOff(_ctx.integerValue("DescribeResourceDistributionResponse.Data["+ i +"].ChecksNumOff")); resourceDistribution.setWarningCount(_ctx.integerValue("DescribeResourceDistributionResponse.Data["+ i +"].WarningCount")); resourceDistribution.setRiskRate(_ctx.stringValue("DescribeResourceDistributionResponse.Data["+ i +"].RiskRate")); resourceDistribution.setCheckItemCount(_ctx.integerValue("DescribeResourceDistributionResponse.Data["+ i +"].CheckItemCount")); resourceDistribution.setTotalCount(_ctx.integerValue("DescribeResourceDistributionResponse.Data["+ i +"].TotalCount")); resourceDistribution.setCriticalCount(_ctx.integerValue("DescribeResourceDistributionResponse.Data["+ i +"].CriticalCount")); resourceDistribution.setDetails(_ctx.stringValue("DescribeResourceDistributionResponse.Data["+ i +"].Details")); data.add(resourceDistribution); } describeResourceDistributionResponse.setData(data); return describeResourceDistributionResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/DescribeSuppressedChecksResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.DescribeSuppressedChecksResponse; import com.aliyuncs.advisor_share.model.v20180608.DescribeSuppressedChecksResponse.ResourceCheck; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeSuppressedChecksResponseUnmarshaller { public static DescribeSuppressedChecksResponse unmarshall(DescribeSuppressedChecksResponse describeSuppressedChecksResponse, UnmarshallerContext _ctx) { describeSuppressedChecksResponse.setRequestId(_ctx.stringValue("DescribeSuppressedChecksResponse.RequestId")); List<ResourceCheck> data = new ArrayList<ResourceCheck>(); for (int i = 0; i < _ctx.lengthValue("DescribeSuppressedChecksResponse.Data.Length"); i++) { ResourceCheck resourceCheck = new ResourceCheck(); resourceCheck.setGmtCreated(_ctx.stringValue("DescribeSuppressedChecksResponse.Data["+ i +"].GmtCreated")); resourceCheck.setDisabled(_ctx.booleanValue("DescribeSuppressedChecksResponse.Data["+ i +"].Disabled")); resourceCheck.setCheckId(_ctx.stringValue("DescribeSuppressedChecksResponse.Data["+ i +"].CheckId")); resourceCheck.setGmtModified(_ctx.stringValue("DescribeSuppressedChecksResponse.Data["+ i +"].GmtModified")); resourceCheck.setResourceId(_ctx.stringValue("DescribeSuppressedChecksResponse.Data["+ i +"].ResourceId")); data.add(resourceCheck); } describeSuppressedChecksResponse.setData(data); return describeSuppressedChecksResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/ExecuteCostOptimizeTaskResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.ExecuteCostOptimizeTaskResponse; import com.aliyuncs.advisor_share.model.v20180608.ExecuteCostOptimizeTaskResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class ExecuteCostOptimizeTaskResponseUnmarshaller { public static ExecuteCostOptimizeTaskResponse unmarshall(ExecuteCostOptimizeTaskResponse executeCostOptimizeTaskResponse, UnmarshallerContext _ctx) { executeCostOptimizeTaskResponse.setSuccess(_ctx.booleanValue("ExecuteCostOptimizeTaskResponse.Success")); Data data = new Data(); data.setDesc(_ctx.stringValue("ExecuteCostOptimizeTaskResponse.Data.Desc")); data.setStatus(_ctx.integerValue("ExecuteCostOptimizeTaskResponse.Data.Status")); executeCostOptimizeTaskResponse.setData(data); return executeCostOptimizeTaskResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/FileDownloadResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.FileDownloadResponse; import com.aliyuncs.transform.UnmarshallerContext; public class FileDownloadResponseUnmarshaller { public static FileDownloadResponse unmarshall(FileDownloadResponse fileDownloadResponse, UnmarshallerContext _ctx) { fileDownloadResponse.setSuccess(_ctx.booleanValue("FileDownloadResponse.Success")); fileDownloadResponse.setData(_ctx.stringValue("FileDownloadResponse.Data")); return fileDownloadResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/GetAdviceConfCheckItemResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.GetAdviceConfCheckItemResponse; import com.aliyuncs.advisor_share.model.v20180608.GetAdviceConfCheckItemResponse.DataItem; import com.aliyuncs.transform.UnmarshallerContext; public class GetAdviceConfCheckItemResponseUnmarshaller { public static GetAdviceConfCheckItemResponse unmarshall(GetAdviceConfCheckItemResponse getAdviceConfCheckItemResponse, UnmarshallerContext _ctx) { getAdviceConfCheckItemResponse.setRequestId(_ctx.stringValue("GetAdviceConfCheckItemResponse.RequestId")); getAdviceConfCheckItemResponse.setMessage(_ctx.stringValue("GetAdviceConfCheckItemResponse.Message")); getAdviceConfCheckItemResponse.setSuccess(_ctx.stringValue("GetAdviceConfCheckItemResponse.Success")); List<DataItem> data = new ArrayList<DataItem>(); for (int i = 0; i < _ctx.lengthValue("GetAdviceConfCheckItemResponse.Data.Length"); i++) { DataItem dataItem = new DataItem(); dataItem.setProduct(_ctx.stringValue("GetAdviceConfCheckItemResponse.Data["+ i +"].Product")); dataItem.setOperateColumn(_ctx.stringValue("GetAdviceConfCheckItemResponse.Data["+ i +"].OperateColumn")); dataItem.setGmtModified(_ctx.stringValue("GetAdviceConfCheckItemResponse.Data["+ i +"].GmtModified")); dataItem.setViewCondition(_ctx.stringValue("GetAdviceConfCheckItemResponse.Data["+ i +"].ViewCondition")); dataItem.setValid(_ctx.booleanValue("GetAdviceConfCheckItemResponse.Data["+ i +"].Valid")); dataItem.setViewColumn(_ctx.stringValue("GetAdviceConfCheckItemResponse.Data["+ i +"].ViewColumn")); dataItem.setGmtCreated(_ctx.stringValue("GetAdviceConfCheckItemResponse.Data["+ i +"].GmtCreated")); dataItem.setTtl(_ctx.integerValue("GetAdviceConfCheckItemResponse.Data["+ i +"].Ttl")); dataItem.setDescription(_ctx.stringValue("GetAdviceConfCheckItemResponse.Data["+ i +"].Description")); dataItem.setTips(_ctx.stringValue("GetAdviceConfCheckItemResponse.Data["+ i +"].Tips")); dataItem.setConfStatus(_ctx.stringValue("GetAdviceConfCheckItemResponse.Data["+ i +"].ConfStatus")); dataItem.setCode(_ctx.stringValue("GetAdviceConfCheckItemResponse.Data["+ i +"].Code")); dataItem.setCategory(_ctx.stringValue("GetAdviceConfCheckItemResponse.Data["+ i +"].Category")); dataItem.setName(_ctx.stringValue("GetAdviceConfCheckItemResponse.Data["+ i +"].Name")); dataItem.setId(_ctx.longValue("GetAdviceConfCheckItemResponse.Data["+ i +"].Id")); dataItem.setType(_ctx.stringValue("GetAdviceConfCheckItemResponse.Data["+ i +"].Type")); dataItem.setIsNew(_ctx.stringValue("GetAdviceConfCheckItemResponse.Data["+ i +"].IsNew")); dataItem.setThresholdParam(_ctx.stringValue("GetAdviceConfCheckItemResponse.Data["+ i +"].ThresholdParam")); data.add(dataItem); } getAdviceConfCheckItemResponse.setData(data); return getAdviceConfCheckItemResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/GetAdviceConfProjectListResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.GetAdviceConfProjectListResponse; import com.aliyuncs.advisor_share.model.v20180608.GetAdviceConfProjectListResponse.DataItem; import com.aliyuncs.transform.UnmarshallerContext; public class GetAdviceConfProjectListResponseUnmarshaller { public static GetAdviceConfProjectListResponse unmarshall(GetAdviceConfProjectListResponse getAdviceConfProjectListResponse, UnmarshallerContext _ctx) { getAdviceConfProjectListResponse.setRequestId(_ctx.stringValue("GetAdviceConfProjectListResponse.RequestId")); getAdviceConfProjectListResponse.setCode(_ctx.stringValue("GetAdviceConfProjectListResponse.Code")); getAdviceConfProjectListResponse.setMessage(_ctx.stringValue("GetAdviceConfProjectListResponse.Message")); getAdviceConfProjectListResponse.setSuccess(_ctx.booleanValue("GetAdviceConfProjectListResponse.Success")); List<DataItem> data = new ArrayList<DataItem>(); for (int i = 0; i < _ctx.lengthValue("GetAdviceConfProjectListResponse.Data.Length"); i++) { DataItem dataItem = new DataItem(); dataItem.setStatus(_ctx.stringValue("GetAdviceConfProjectListResponse.Data["+ i +"].Status")); dataItem.setGmtModified(_ctx.longValue("GetAdviceConfProjectListResponse.Data["+ i +"].GmtModified")); dataItem.setName(_ctx.stringValue("GetAdviceConfProjectListResponse.Data["+ i +"].Name")); dataItem.setValid(_ctx.booleanValue("GetAdviceConfProjectListResponse.Data["+ i +"].Valid")); dataItem.setId(_ctx.integerValue("GetAdviceConfProjectListResponse.Data["+ i +"].Id")); data.add(dataItem); } getAdviceConfProjectListResponse.setData(data); return getAdviceConfProjectListResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/GetAdviceConfProjectLoghubResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.GetAdviceConfProjectLoghubResponse; import com.aliyuncs.advisor_share.model.v20180608.GetAdviceConfProjectLoghubResponse.DataItem; import com.aliyuncs.transform.UnmarshallerContext; public class GetAdviceConfProjectLoghubResponseUnmarshaller { public static GetAdviceConfProjectLoghubResponse unmarshall(GetAdviceConfProjectLoghubResponse getAdviceConfProjectLoghubResponse, UnmarshallerContext _ctx) { getAdviceConfProjectLoghubResponse.setRequestId(_ctx.stringValue("GetAdviceConfProjectLoghubResponse.RequestId")); getAdviceConfProjectLoghubResponse.setMessage(_ctx.stringValue("GetAdviceConfProjectLoghubResponse.Message")); getAdviceConfProjectLoghubResponse.setSuccess(_ctx.booleanValue("GetAdviceConfProjectLoghubResponse.Success")); List<DataItem> data = new ArrayList<DataItem>(); for (int i = 0; i < _ctx.lengthValue("GetAdviceConfProjectLoghubResponse.Data.Length"); i++) { DataItem dataItem = new DataItem(); dataItem.setAccessKey(_ctx.stringValue("GetAdviceConfProjectLoghubResponse.Data["+ i +"].AccessKey")); dataItem.setRegion(_ctx.stringValue("GetAdviceConfProjectLoghubResponse.Data["+ i +"].Region")); dataItem.setProfiles(_ctx.stringValue("GetAdviceConfProjectLoghubResponse.Data["+ i +"].Profiles")); dataItem.setEndpoint(_ctx.stringValue("GetAdviceConfProjectLoghubResponse.Data["+ i +"].Endpoint")); dataItem.setLogstore(_ctx.stringValue("GetAdviceConfProjectLoghubResponse.Data["+ i +"].Logstore")); dataItem.setProject(_ctx.stringValue("GetAdviceConfProjectLoghubResponse.Data["+ i +"].Project")); dataItem.setAccessId(_ctx.stringValue("GetAdviceConfProjectLoghubResponse.Data["+ i +"].AccessId")); dataItem.setId(_ctx.longValue("GetAdviceConfProjectLoghubResponse.Data["+ i +"].Id")); data.add(dataItem); } getAdviceConfProjectLoghubResponse.setData(data); return getAdviceConfProjectLoghubResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/GetAdviceConfProjectOwnerListResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.GetAdviceConfProjectOwnerListResponse; import com.aliyuncs.transform.UnmarshallerContext; public class GetAdviceConfProjectOwnerListResponseUnmarshaller { public static GetAdviceConfProjectOwnerListResponse unmarshall(GetAdviceConfProjectOwnerListResponse getAdviceConfProjectOwnerListResponse, UnmarshallerContext _ctx) { getAdviceConfProjectOwnerListResponse.setRequestId(_ctx.stringValue("GetAdviceConfProjectOwnerListResponse.RequestId")); getAdviceConfProjectOwnerListResponse.setMessage(_ctx.stringValue("GetAdviceConfProjectOwnerListResponse.Message")); getAdviceConfProjectOwnerListResponse.setSuccess(_ctx.booleanValue("GetAdviceConfProjectOwnerListResponse.Success")); List<String> data = new ArrayList<String>(); for (int i = 0; i < _ctx.lengthValue("GetAdviceConfProjectOwnerListResponse.Data.Length"); i++) { data.add(_ctx.stringValue("GetAdviceConfProjectOwnerListResponse.Data["+ i +"]")); } getAdviceConfProjectOwnerListResponse.setData(data); return getAdviceConfProjectOwnerListResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/GetAdviceConfProjectResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.GetAdviceConfProjectResponse; import com.aliyuncs.advisor_share.model.v20180608.GetAdviceConfProjectResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class GetAdviceConfProjectResponseUnmarshaller { public static GetAdviceConfProjectResponse unmarshall(GetAdviceConfProjectResponse getAdviceConfProjectResponse, UnmarshallerContext _ctx) { getAdviceConfProjectResponse.setRequestId(_ctx.stringValue("GetAdviceConfProjectResponse.RequestId")); getAdviceConfProjectResponse.setCode(_ctx.stringValue("GetAdviceConfProjectResponse.Code")); getAdviceConfProjectResponse.setMessage(_ctx.stringValue("GetAdviceConfProjectResponse.Message")); getAdviceConfProjectResponse.setSuccess(_ctx.booleanValue("GetAdviceConfProjectResponse.Success")); Data data = new Data(); data.setStatus(_ctx.stringValue("GetAdviceConfProjectResponse.Data.Status")); data.setGmtModified(_ctx.longValue("GetAdviceConfProjectResponse.Data.GmtModified")); data.setName(_ctx.stringValue("GetAdviceConfProjectResponse.Data.Name")); data.setValid(_ctx.booleanValue("GetAdviceConfProjectResponse.Data.Valid")); data.setId(_ctx.integerValue("GetAdviceConfProjectResponse.Data.Id")); getAdviceConfProjectResponse.setData(data); return getAdviceConfProjectResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/GetAdviceTrendResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.GetAdviceTrendResponse; import com.aliyuncs.advisor_share.model.v20180608.GetAdviceTrendResponse.CountDO; import com.aliyuncs.transform.UnmarshallerContext; public class GetAdviceTrendResponseUnmarshaller { public static GetAdviceTrendResponse unmarshall(GetAdviceTrendResponse getAdviceTrendResponse, UnmarshallerContext _ctx) { getAdviceTrendResponse.setRequestId(_ctx.stringValue("GetAdviceTrendResponse.RequestId")); List<CountDO> data = new ArrayList<CountDO>(); for (int i = 0; i < _ctx.lengthValue("GetAdviceTrendResponse.Data.Length"); i++) { CountDO countDO = new CountDO(); countDO.setDate(_ctx.stringValue("GetAdviceTrendResponse.Data["+ i +"].Date")); countDO.setRiskNum(_ctx.longValue("GetAdviceTrendResponse.Data["+ i +"].RiskNum")); countDO.setCount(_ctx.integerValue("GetAdviceTrendResponse.Data["+ i +"].Count")); data.add(countDO); } getAdviceTrendResponse.setData(data); return getAdviceTrendResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/GetDomainListResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.GetDomainListResponse; import com.aliyuncs.advisor_share.model.v20180608.GetDomainListResponse.Domains; import com.aliyuncs.transform.UnmarshallerContext; public class GetDomainListResponseUnmarshaller { public static GetDomainListResponse unmarshall(GetDomainListResponse getDomainListResponse, UnmarshallerContext _ctx) { getDomainListResponse.setRequestId(_ctx.stringValue("GetDomainListResponse.RequestId")); List<Domains> data = new ArrayList<Domains>(); for (int i = 0; i < _ctx.lengthValue("GetDomainListResponse.Data.Length"); i++) { Domains domains = new Domains(); domains.setDomain(_ctx.stringValue("GetDomainListResponse.Data["+ i +"].Domain")); data.add(domains); } getDomainListResponse.setData(data); return getDomainListResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/GetHistoryAdvicesResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.GetHistoryAdvicesResponse; import com.aliyuncs.advisor_share.model.v20180608.GetHistoryAdvicesResponse.Data; import com.aliyuncs.advisor_share.model.v20180608.GetHistoryAdvicesResponse.Data.Advice; import com.aliyuncs.transform.UnmarshallerContext; public class GetHistoryAdvicesResponseUnmarshaller { public static GetHistoryAdvicesResponse unmarshall(GetHistoryAdvicesResponse getHistoryAdvicesResponse, UnmarshallerContext _ctx) { getHistoryAdvicesResponse.setRequestId(_ctx.stringValue("GetHistoryAdvicesResponse.RequestId")); Data data = new Data(); data.setPageNo(_ctx.integerValue("GetHistoryAdvicesResponse.Data.PageNo")); data.setTotal(_ctx.integerValue("GetHistoryAdvicesResponse.Data.Total")); List<Advice> result = new ArrayList<Advice>(); for (int i = 0; i < _ctx.lengthValue("GetHistoryAdvicesResponse.Data.Result.Length"); i++) { Advice advice = new Advice(); advice.setSeverity(_ctx.integerValue("GetHistoryAdvicesResponse.Data.Result["+ i +"].Severity")); advice.setProduct(_ctx.stringValue("GetHistoryAdvicesResponse.Data.Result["+ i +"].Product")); advice.setGmtCreated(_ctx.stringValue("GetHistoryAdvicesResponse.Data.Result["+ i +"].GmtCreated")); advice.setDescription(_ctx.stringValue("GetHistoryAdvicesResponse.Data.Result["+ i +"].Description")); advice.setCheckId(_ctx.stringValue("GetHistoryAdvicesResponse.Data.Result["+ i +"].CheckId")); advice.setResourceId(_ctx.stringValue("GetHistoryAdvicesResponse.Data.Result["+ i +"].ResourceId")); advice.setCheckName(_ctx.stringValue("GetHistoryAdvicesResponse.Data.Result["+ i +"].CheckName")); advice.setUrl(_ctx.stringValue("GetHistoryAdvicesResponse.Data.Result["+ i +"].Url")); result.add(advice); } data.setResult(result); getHistoryAdvicesResponse.setData(data); return getHistoryAdvicesResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/GetMultiAccountsCheckReportResponseUnmarshaller.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.transform.v20180608; import com.aliyuncs.advisor_share.model.v20180608.GetMultiAccountsCheckReportResponse; import com.aliyuncs.advisor_share.model.v20180608.GetMultiAccountsCheckReportResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class GetMultiAccountsCheckReportResponseUnmarshaller { public static GetMultiAccountsCheckReportResponse unmarshall(GetMultiAccountsCheckReportResponse getMultiAccountsCheckReportResponse, UnmarshallerContext _ctx) { getMultiAccountsCheckReportResponse.setRequestId(_ctx.stringValue("GetMultiAccountsCheckReportResponse.RequestId")); Data data = new Data(); data.setReportExist(_ctx.booleanValue("GetMultiAccountsCheckReportResponse.Data.ReportExist")); data.setExcelReportUrl(_ctx.stringValue("GetMultiAccountsCheckReportResponse.Data.ExcelReportUrl")); data.setReportGenerateTime(_ctx.stringValue("GetMultiAccountsCheckReportResponse.Data.ReportGenerateTime")); data.setPdfReportUrl(_ctx.stringValue("GetMultiAccountsCheckReportResponse.Data.PdfReportUrl")); getMultiAccountsCheckReportResponse.setData(data); return getMultiAccountsCheckReportResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/GetProductRiskCountResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.GetProductRiskCountResponse; import com.aliyuncs.advisor_share.model.v20180608.GetProductRiskCountResponse.ProductRisksCountDTO; import com.aliyuncs.advisor_share.model.v20180608.GetProductRiskCountResponse.ProductRisksCountDTO.ProductCountDTO; import com.aliyuncs.transform.UnmarshallerContext; public class GetProductRiskCountResponseUnmarshaller { public static GetProductRiskCountResponse unmarshall(GetProductRiskCountResponse getProductRiskCountResponse, UnmarshallerContext _ctx) { getProductRiskCountResponse.setRequestId(_ctx.stringValue("GetProductRiskCountResponse.RequestId")); List<ProductRisksCountDTO> data = new ArrayList<ProductRisksCountDTO>(); for (int i = 0; i < _ctx.lengthValue("GetProductRiskCountResponse.Data.Length"); i++) { ProductRisksCountDTO productRisksCountDTO = new ProductRisksCountDTO(); productRisksCountDTO.setRiskTotal(_ctx.longValue("GetProductRiskCountResponse.Data["+ i +"].RiskTotal")); List<ProductCountDTO> productCountDTOList = new ArrayList<ProductCountDTO>(); for (int j = 0; j < _ctx.lengthValue("GetProductRiskCountResponse.Data["+ i +"].ProductCountDTOList.Length"); j++) { ProductCountDTO productCountDTO = new ProductCountDTO(); productCountDTO.setProduct(_ctx.stringValue("GetProductRiskCountResponse.Data["+ i +"].ProductCountDTOList["+ j +"].Product")); productCountDTO.setRiskNumber(_ctx.longValue("GetProductRiskCountResponse.Data["+ i +"].ProductCountDTOList["+ j +"].RiskNumber")); productCountDTOList.add(productCountDTO); } productRisksCountDTO.setProductCountDTOList(productCountDTOList); data.add(productRisksCountDTO); } getProductRiskCountResponse.setData(data); return getProductRiskCountResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform
java-sources/com/aliyun/aliyun-java-sdk-advisor-share/1.0.0/com/aliyuncs/advisor_share/transform/v20180608/GetProductRiskTrendResponseUnmarshaller.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.transform.v20180608; import java.util.ArrayList; import java.util.List; import com.aliyuncs.advisor_share.model.v20180608.GetProductRiskTrendResponse; import com.aliyuncs.advisor_share.model.v20180608.GetProductRiskTrendResponse.ProductRisksDateDTO; import com.aliyuncs.advisor_share.model.v20180608.GetProductRiskTrendResponse.ProductRisksDateDTO.ProductCountDTO; import com.aliyuncs.transform.UnmarshallerContext; public class GetProductRiskTrendResponseUnmarshaller { public static GetProductRiskTrendResponse unmarshall(GetProductRiskTrendResponse getProductRiskTrendResponse, UnmarshallerContext _ctx) { getProductRiskTrendResponse.setRequestId(_ctx.stringValue("GetProductRiskTrendResponse.RequestId")); List<ProductRisksDateDTO> data = new ArrayList<ProductRisksDateDTO>(); for (int i = 0; i < _ctx.lengthValue("GetProductRiskTrendResponse.Data.Length"); i++) { ProductRisksDateDTO productRisksDateDTO = new ProductRisksDateDTO(); productRisksDateDTO.setDate(_ctx.stringValue("GetProductRiskTrendResponse.Data["+ i +"].Date")); List<ProductCountDTO> productCountDTOList = new ArrayList<ProductCountDTO>(); for (int j = 0; j < _ctx.lengthValue("GetProductRiskTrendResponse.Data["+ i +"].ProductCountDTOList.Length"); j++) { ProductCountDTO productCountDTO = new ProductCountDTO(); productCountDTO.setProduct(_ctx.stringValue("GetProductRiskTrendResponse.Data["+ i +"].ProductCountDTOList["+ j +"].Product")); productCountDTO.setRiskNumber(_ctx.longValue("GetProductRiskTrendResponse.Data["+ i +"].ProductCountDTOList["+ j +"].RiskNumber")); productCountDTOList.add(productCountDTO); } productRisksDateDTO.setProductCountDTOList(productCountDTOList); data.add(productRisksDateDTO); } getProductRiskTrendResponse.setData(data); return getProductRiskTrendResponse; } }