index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/model
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/model/v20200324/QueryBpmsListResponse.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.agency.model.v20200324; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.agency.transform.v20200324.QueryBpmsListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class QueryBpmsListResponse extends AcsResponse { private String requestId; private Boolean success; private String code; private Integer pageNo; private Integer pageSize; private Integer total; private List<ListItem> list; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Integer getPageNo() { return this.pageNo; } public void setPageNo(Integer pageNo) { this.pageNo = pageNo; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public List<ListItem> getList() { return this.list; } public void setList(List<ListItem> list) { this.list = list; } public static class ListItem { private String expireTime; private Long partnerPk; private String customerName; private Integer customerRptType; private String applyRemarks; private Long id; private Integer auditStatus; private String applyTime; public String getExpireTime() { return this.expireTime; } public void setExpireTime(String expireTime) { this.expireTime = expireTime; } public Long getPartnerPk() { return this.partnerPk; } public void setPartnerPk(Long partnerPk) { this.partnerPk = partnerPk; } public String getCustomerName() { return this.customerName; } public void setCustomerName(String customerName) { this.customerName = customerName; } public Integer getCustomerRptType() { return this.customerRptType; } public void setCustomerRptType(Integer customerRptType) { this.customerRptType = customerRptType; } public String getApplyRemarks() { return this.applyRemarks; } public void setApplyRemarks(String applyRemarks) { this.applyRemarks = applyRemarks; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public Integer getAuditStatus() { return this.auditStatus; } public void setAuditStatus(Integer auditStatus) { this.auditStatus = auditStatus; } public String getApplyTime() { return this.applyTime; } public void setApplyTime(String applyTime) { this.applyTime = applyTime; } } @Override public QueryBpmsListResponse getInstance(UnmarshallerContext context) { return QueryBpmsListResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/model
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/model/v20200324/TransferResellerToUserRequest.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.agency.model.v20200324; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.agency.Endpoint; /** * @author auto create * @version */ public class TransferResellerToUserRequest extends RpcAcsRequest<TransferResellerToUserResponse> { private Long transferUid; private String siteId; private String empId; private String realName; public TransferResellerToUserRequest() { super("Agency", "2020-03-24", "TransferResellerToUser"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getTransferUid() { return this.transferUid; } public void setTransferUid(Long transferUid) { this.transferUid = transferUid; if(transferUid != null){ putQueryParameter("TransferUid", transferUid.toString()); } } public String getSiteId() { return this.siteId; } public void setSiteId(String siteId) { this.siteId = siteId; if(siteId != null){ putQueryParameter("SiteId", siteId); } } public String getEmpId() { return this.empId; } public void setEmpId(String empId) { this.empId = empId; if(empId != null){ putQueryParameter("EmpId", empId); } } public String getRealName() { return this.realName; } public void setRealName(String realName) { this.realName = realName; if(realName != null){ putQueryParameter("RealName", realName); } } @Override public Class<TransferResellerToUserResponse> getResponseClass() { return TransferResellerToUserResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/model
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/model/v20200324/TransferResellerToUserResponse.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.agency.model.v20200324; import com.aliyuncs.AcsResponse; import com.aliyuncs.agency.transform.v20200324.TransferResellerToUserResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class TransferResellerToUserResponse extends AcsResponse { private String msg; private String code; private Boolean data; private String requestId; public String getMsg() { return this.msg; } public void setMsg(String msg) { this.msg = msg; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 TransferResellerToUserResponse getInstance(UnmarshallerContext context) { return TransferResellerToUserResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/model
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/model/v20200324/TransferUserToResellerRequest.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.agency.model.v20200324; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.agency.Endpoint; /** * @author auto create * @version */ public class TransferUserToResellerRequest extends RpcAcsRequest<TransferUserToResellerResponse> { private Long parentUid; private Long transferUid; private String siteId; private String empId; private String realName; public TransferUserToResellerRequest() { super("Agency", "2020-03-24", "TransferUserToReseller"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getParentUid() { return this.parentUid; } public void setParentUid(Long parentUid) { this.parentUid = parentUid; if(parentUid != null){ putQueryParameter("ParentUid", parentUid.toString()); } } public Long getTransferUid() { return this.transferUid; } public void setTransferUid(Long transferUid) { this.transferUid = transferUid; if(transferUid != null){ putQueryParameter("TransferUid", transferUid.toString()); } } public String getSiteId() { return this.siteId; } public void setSiteId(String siteId) { this.siteId = siteId; if(siteId != null){ putQueryParameter("SiteId", siteId); } } public String getEmpId() { return this.empId; } public void setEmpId(String empId) { this.empId = empId; if(empId != null){ putQueryParameter("EmpId", empId); } } public String getRealName() { return this.realName; } public void setRealName(String realName) { this.realName = realName; if(realName != null){ putQueryParameter("RealName", realName); } } @Override public Class<TransferUserToResellerResponse> getResponseClass() { return TransferUserToResellerResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/model
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/model/v20200324/TransferUserToResellerResponse.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.agency.model.v20200324; import com.aliyuncs.AcsResponse; import com.aliyuncs.agency.transform.v20200324.TransferUserToResellerResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class TransferUserToResellerResponse extends AcsResponse { private String msg; private String code; private Boolean data; private String requestId; public String getMsg() { return this.msg; } public void setMsg(String msg) { this.msg = msg; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 TransferUserToResellerResponse getInstance(UnmarshallerContext context) { return TransferUserToResellerResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/transform
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/transform/v20200324/CreateBpmsRecordResponseUnmarshaller.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.agency.transform.v20200324; import com.aliyuncs.agency.model.v20200324.CreateBpmsRecordResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateBpmsRecordResponseUnmarshaller { public static CreateBpmsRecordResponse unmarshall(CreateBpmsRecordResponse createBpmsRecordResponse, UnmarshallerContext _ctx) { createBpmsRecordResponse.setRequestId(_ctx.stringValue("CreateBpmsRecordResponse.RequestId")); createBpmsRecordResponse.setCode(_ctx.stringValue("CreateBpmsRecordResponse.Code")); createBpmsRecordResponse.setData(_ctx.stringValue("CreateBpmsRecordResponse.Data")); createBpmsRecordResponse.setSuccess(_ctx.booleanValue("CreateBpmsRecordResponse.Success")); return createBpmsRecordResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/transform
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/transform/v20200324/CreateBpmsResultResponseUnmarshaller.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.agency.transform.v20200324; import com.aliyuncs.agency.model.v20200324.CreateBpmsResultResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateBpmsResultResponseUnmarshaller { public static CreateBpmsResultResponse unmarshall(CreateBpmsResultResponse createBpmsResultResponse, UnmarshallerContext _ctx) { createBpmsResultResponse.setRequestId(_ctx.stringValue("CreateBpmsResultResponse.RequestId")); createBpmsResultResponse.setCode(_ctx.stringValue("CreateBpmsResultResponse.Code")); createBpmsResultResponse.setData(_ctx.stringValue("CreateBpmsResultResponse.Data")); createBpmsResultResponse.setSuccess(_ctx.booleanValue("CreateBpmsResultResponse.Success")); return createBpmsResultResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/transform
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/transform/v20200324/FindUserInfoByEmpIdResponseUnmarshaller.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.agency.transform.v20200324; import com.aliyuncs.agency.model.v20200324.FindUserInfoByEmpIdResponse; import com.aliyuncs.agency.model.v20200324.FindUserInfoByEmpIdResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class FindUserInfoByEmpIdResponseUnmarshaller { public static FindUserInfoByEmpIdResponse unmarshall(FindUserInfoByEmpIdResponse findUserInfoByEmpIdResponse, UnmarshallerContext _ctx) { findUserInfoByEmpIdResponse.setRequestId(_ctx.stringValue("FindUserInfoByEmpIdResponse.RequestId")); findUserInfoByEmpIdResponse.setCode(_ctx.stringValue("FindUserInfoByEmpIdResponse.Code")); findUserInfoByEmpIdResponse.setSuccess(_ctx.booleanValue("FindUserInfoByEmpIdResponse.Success")); Data data = new Data(); data.setEmpId(_ctx.stringValue("FindUserInfoByEmpIdResponse.Data.EmpId")); data.setName(_ctx.stringValue("FindUserInfoByEmpIdResponse.Data.Name")); data.setEmail(_ctx.stringValue("FindUserInfoByEmpIdResponse.Data.Email")); data.setBucId(_ctx.stringValue("FindUserInfoByEmpIdResponse.Data.BucId")); data.setAvailable(_ctx.stringValue("FindUserInfoByEmpIdResponse.Data.Available")); data.setNickName(_ctx.stringValue("FindUserInfoByEmpIdResponse.Data.NickName")); findUserInfoByEmpIdResponse.setData(data); return findUserInfoByEmpIdResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/transform
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/transform/v20200324/GetCustomerRebateTypeResponseUnmarshaller.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.agency.transform.v20200324; import com.aliyuncs.agency.model.v20200324.GetCustomerRebateTypeResponse; import com.aliyuncs.agency.model.v20200324.GetCustomerRebateTypeResponse.FxUserInfoExt; import com.aliyuncs.transform.UnmarshallerContext; public class GetCustomerRebateTypeResponseUnmarshaller { public static GetCustomerRebateTypeResponse unmarshall(GetCustomerRebateTypeResponse getCustomerRebateTypeResponse, UnmarshallerContext _ctx) { getCustomerRebateTypeResponse.setRequestId(_ctx.stringValue("GetCustomerRebateTypeResponse.RequestId")); getCustomerRebateTypeResponse.setCode(_ctx.stringValue("GetCustomerRebateTypeResponse.Code")); getCustomerRebateTypeResponse.setSuccess(_ctx.booleanValue("GetCustomerRebateTypeResponse.Success")); FxUserInfoExt fxUserInfoExt = new FxUserInfoExt(); fxUserInfoExt.setSubUserCount(_ctx.integerValue("GetCustomerRebateTypeResponse.FxUserInfoExt.SubUserCount")); fxUserInfoExt.setDistributionRebateType(_ctx.integerValue("GetCustomerRebateTypeResponse.FxUserInfoExt.DistributionRebateType")); fxUserInfoExt.setKpId(_ctx.longValue("GetCustomerRebateTypeResponse.FxUserInfoExt.KpId")); fxUserInfoExt.setCustomerRebateType(_ctx.integerValue("GetCustomerRebateTypeResponse.FxUserInfoExt.CustomerRebateType")); fxUserInfoExt.setParentUid(_ctx.longValue("GetCustomerRebateTypeResponse.FxUserInfoExt.ParentUid")); fxUserInfoExt.setIsSub(_ctx.integerValue("GetCustomerRebateTypeResponse.FxUserInfoExt.IsSub")); fxUserInfoExt.setLevel(_ctx.integerValue("GetCustomerRebateTypeResponse.FxUserInfoExt.Level")); getCustomerRebateTypeResponse.setFxUserInfoExt(fxUserInfoExt); return getCustomerRebateTypeResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/transform
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/transform/v20200324/QueryBpmsListResponseUnmarshaller.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.agency.transform.v20200324; import java.util.ArrayList; import java.util.List; import com.aliyuncs.agency.model.v20200324.QueryBpmsListResponse; import com.aliyuncs.agency.model.v20200324.QueryBpmsListResponse.ListItem; import com.aliyuncs.transform.UnmarshallerContext; public class QueryBpmsListResponseUnmarshaller { public static QueryBpmsListResponse unmarshall(QueryBpmsListResponse queryBpmsListResponse, UnmarshallerContext _ctx) { queryBpmsListResponse.setRequestId(_ctx.stringValue("QueryBpmsListResponse.RequestId")); queryBpmsListResponse.setSuccess(_ctx.booleanValue("QueryBpmsListResponse.Success")); queryBpmsListResponse.setCode(_ctx.stringValue("QueryBpmsListResponse.Code")); queryBpmsListResponse.setPageNo(_ctx.integerValue("QueryBpmsListResponse.PageNo")); queryBpmsListResponse.setPageSize(_ctx.integerValue("QueryBpmsListResponse.PageSize")); queryBpmsListResponse.setTotal(_ctx.integerValue("QueryBpmsListResponse.Total")); List<ListItem> list = new ArrayList<ListItem>(); for (int i = 0; i < _ctx.lengthValue("QueryBpmsListResponse.List.Length"); i++) { ListItem listItem = new ListItem(); listItem.setExpireTime(_ctx.stringValue("QueryBpmsListResponse.List["+ i +"].ExpireTime")); listItem.setPartnerPk(_ctx.longValue("QueryBpmsListResponse.List["+ i +"].PartnerPk")); listItem.setCustomerName(_ctx.stringValue("QueryBpmsListResponse.List["+ i +"].CustomerName")); listItem.setCustomerRptType(_ctx.integerValue("QueryBpmsListResponse.List["+ i +"].CustomerRptType")); listItem.setApplyRemarks(_ctx.stringValue("QueryBpmsListResponse.List["+ i +"].ApplyRemarks")); listItem.setId(_ctx.longValue("QueryBpmsListResponse.List["+ i +"].Id")); listItem.setAuditStatus(_ctx.integerValue("QueryBpmsListResponse.List["+ i +"].AuditStatus")); listItem.setApplyTime(_ctx.stringValue("QueryBpmsListResponse.List["+ i +"].ApplyTime")); list.add(listItem); } queryBpmsListResponse.setList(list); return queryBpmsListResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/transform
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/transform/v20200324/TransferResellerToUserResponseUnmarshaller.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.agency.transform.v20200324; import com.aliyuncs.agency.model.v20200324.TransferResellerToUserResponse; import com.aliyuncs.transform.UnmarshallerContext; public class TransferResellerToUserResponseUnmarshaller { public static TransferResellerToUserResponse unmarshall(TransferResellerToUserResponse transferResellerToUserResponse, UnmarshallerContext _ctx) { transferResellerToUserResponse.setRequestId(_ctx.stringValue("TransferResellerToUserResponse.RequestId")); transferResellerToUserResponse.setMsg(_ctx.stringValue("TransferResellerToUserResponse.Msg")); transferResellerToUserResponse.setCode(_ctx.stringValue("TransferResellerToUserResponse.Code")); transferResellerToUserResponse.setData(_ctx.booleanValue("TransferResellerToUserResponse.Data")); return transferResellerToUserResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/transform
java-sources/com/aliyun/aliyun-java-sdk-agency/2.0.3/com/aliyuncs/agency/transform/v20200324/TransferUserToResellerResponseUnmarshaller.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.agency.transform.v20200324; import com.aliyuncs.agency.model.v20200324.TransferUserToResellerResponse; import com.aliyuncs.transform.UnmarshallerContext; public class TransferUserToResellerResponseUnmarshaller { public static TransferUserToResellerResponse unmarshall(TransferUserToResellerResponse transferUserToResellerResponse, UnmarshallerContext _ctx) { transferUserToResellerResponse.setRequestId(_ctx.stringValue("TransferUserToResellerResponse.RequestId")); transferUserToResellerResponse.setMsg(_ctx.stringValue("TransferUserToResellerResponse.Msg")); transferUserToResellerResponse.setCode(_ctx.stringValue("TransferUserToResellerResponse.Code")); transferUserToResellerResponse.setData(_ctx.booleanValue("TransferUserToResellerResponse.Data")); return transferUserToResellerResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/Endpoint.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.ahas_openapi; import java.util.HashMap; public class Endpoint { public static HashMap<String, String> endpointMap = new HashMap<String, String>() { { put("cn-shenzhen", "ahas.cn-shenzhen.aliyuncs.com"); put("cn-beijing", "ahas.cn-beijing.aliyuncs.com"); put("cn-shanghai", "ahas.cn-shanghai.aliyuncs.com"); put("cn-hongkong", "ahas.cn-hongkong.aliyuncs.com"); put("ap-southeast-1", "ahas.ap-southeast-1.aliyuncs.com"); put("eu-central-1", "ahas.eu-central-1.aliyuncs.com"); put("cn-zhangjiakou", "ahas.cn-zhangjiakou.aliyuncs.com"); put("cn-hangzhou", "ahas.cn-hangzhou.aliyuncs.com"); } }; public static String endpointRegionalType = "regional"; }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/CheckExperimentRunnableRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class CheckExperimentRunnableRequest extends RpcAcsRequest<CheckExperimentRunnableResponse> { private String ahasRegionId; private String nameSpace; private String experimentId; public CheckExperimentRunnableRequest() { super("ahas-openapi", "2019-09-01", "CheckExperimentRunnable", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getNameSpace() { return this.nameSpace; } public void setNameSpace(String nameSpace) { this.nameSpace = nameSpace; if(nameSpace != null){ putQueryParameter("NameSpace", nameSpace); } } public String getExperimentId() { return this.experimentId; } public void setExperimentId(String experimentId) { this.experimentId = experimentId; if(experimentId != null){ putQueryParameter("ExperimentId", experimentId); } } @Override public Class<CheckExperimentRunnableResponse> getResponseClass() { return CheckExperimentRunnableResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/CheckExperimentRunnableResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.CheckExperimentRunnableResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CheckExperimentRunnableResponse extends AcsResponse { private String message; private String requestId; private String code; 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 String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } @Override public CheckExperimentRunnableResponse getInstance(UnmarshallerContext context) { return CheckExperimentRunnableResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/CreateDegradeRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class CreateDegradeRuleRequest extends RpcAcsRequest<CreateDegradeRuleResponse> { private Integer recoveryTimeoutMs; private Float threshold; private String ahasRegionId; private Integer halfOpenBaseAmountPerStep; private String appName; private Boolean enable; private Integer statDurationMs; private Integer minRequestAmount; private Integer slowRtMs; private String resource; private String namespace; private Integer halfOpenRecoveryStepNum; private Integer strategy; public CreateDegradeRuleRequest() { super("ahas-openapi", "2019-09-01", "CreateDegradeRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getRecoveryTimeoutMs() { return this.recoveryTimeoutMs; } public void setRecoveryTimeoutMs(Integer recoveryTimeoutMs) { this.recoveryTimeoutMs = recoveryTimeoutMs; if(recoveryTimeoutMs != null){ putQueryParameter("RecoveryTimeoutMs", recoveryTimeoutMs.toString()); } } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; if(threshold != null){ putQueryParameter("Threshold", threshold.toString()); } } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public Integer getHalfOpenBaseAmountPerStep() { return this.halfOpenBaseAmountPerStep; } public void setHalfOpenBaseAmountPerStep(Integer halfOpenBaseAmountPerStep) { this.halfOpenBaseAmountPerStep = halfOpenBaseAmountPerStep; if(halfOpenBaseAmountPerStep != null){ putQueryParameter("HalfOpenBaseAmountPerStep", halfOpenBaseAmountPerStep.toString()); } } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; if(enable != null){ putQueryParameter("Enable", enable.toString()); } } public Integer getStatDurationMs() { return this.statDurationMs; } public void setStatDurationMs(Integer statDurationMs) { this.statDurationMs = statDurationMs; if(statDurationMs != null){ putQueryParameter("StatDurationMs", statDurationMs.toString()); } } public Integer getMinRequestAmount() { return this.minRequestAmount; } public void setMinRequestAmount(Integer minRequestAmount) { this.minRequestAmount = minRequestAmount; if(minRequestAmount != null){ putQueryParameter("MinRequestAmount", minRequestAmount.toString()); } } public Integer getSlowRtMs() { return this.slowRtMs; } public void setSlowRtMs(Integer slowRtMs) { this.slowRtMs = slowRtMs; if(slowRtMs != null){ putQueryParameter("SlowRtMs", slowRtMs.toString()); } } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; if(resource != null){ putQueryParameter("Resource", resource); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } public Integer getHalfOpenRecoveryStepNum() { return this.halfOpenRecoveryStepNum; } public void setHalfOpenRecoveryStepNum(Integer halfOpenRecoveryStepNum) { this.halfOpenRecoveryStepNum = halfOpenRecoveryStepNum; if(halfOpenRecoveryStepNum != null){ putQueryParameter("HalfOpenRecoveryStepNum", halfOpenRecoveryStepNum.toString()); } } public Integer getStrategy() { return this.strategy; } public void setStrategy(Integer strategy) { this.strategy = strategy; if(strategy != null){ putQueryParameter("Strategy", strategy.toString()); } } @Override public Class<CreateDegradeRuleResponse> getResponseClass() { return CreateDegradeRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/CreateDegradeRuleResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.CreateDegradeRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateDegradeRuleResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 Integer slowRtMs; private Integer halfOpenRecoveryStepNum; private String namespace; private Integer statDurationMs; private Long ruleId; private Integer strategy; private String resource; private String appName; private Integer halfOpenBaseAmountPerStep; private Integer recoveryTimeoutMs; private Integer minRequestAmount; private Float threshold; private Boolean enable; public Integer getSlowRtMs() { return this.slowRtMs; } public void setSlowRtMs(Integer slowRtMs) { this.slowRtMs = slowRtMs; } public Integer getHalfOpenRecoveryStepNum() { return this.halfOpenRecoveryStepNum; } public void setHalfOpenRecoveryStepNum(Integer halfOpenRecoveryStepNum) { this.halfOpenRecoveryStepNum = halfOpenRecoveryStepNum; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public Integer getStatDurationMs() { return this.statDurationMs; } public void setStatDurationMs(Integer statDurationMs) { this.statDurationMs = statDurationMs; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public Integer getStrategy() { return this.strategy; } public void setStrategy(Integer strategy) { this.strategy = strategy; } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public Integer getHalfOpenBaseAmountPerStep() { return this.halfOpenBaseAmountPerStep; } public void setHalfOpenBaseAmountPerStep(Integer halfOpenBaseAmountPerStep) { this.halfOpenBaseAmountPerStep = halfOpenBaseAmountPerStep; } public Integer getRecoveryTimeoutMs() { return this.recoveryTimeoutMs; } public void setRecoveryTimeoutMs(Integer recoveryTimeoutMs) { this.recoveryTimeoutMs = recoveryTimeoutMs; } public Integer getMinRequestAmount() { return this.minRequestAmount; } public void setMinRequestAmount(Integer minRequestAmount) { this.minRequestAmount = minRequestAmount; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } } @Override public CreateDegradeRuleResponse getInstance(UnmarshallerContext context) { return CreateDegradeRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/CreateExperimentRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class CreateExperimentRequest extends RpcAcsRequest<CreateExperimentResponse> { private String description; private String ahasRegionId; private List<String> tagss; private String name; private String nameSpace; private String definition; private List<String> workspacess; public CreateExperimentRequest() { super("ahas-openapi", "2019-09-01", "CreateExperiment", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putQueryParameter("Description", description); } } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public List<String> getTagss() { return this.tagss; } public void setTagss(List<String> tagss) { this.tagss = tagss; if (tagss != null) { for (int i = 0; i < tagss.size(); i++) { putQueryParameter("Tags." + (i + 1) , tagss.get(i)); } } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public String getNameSpace() { return this.nameSpace; } public void setNameSpace(String nameSpace) { this.nameSpace = nameSpace; if(nameSpace != null){ putQueryParameter("NameSpace", nameSpace); } } public String getDefinition() { return this.definition; } public void setDefinition(String definition) { this.definition = definition; if(definition != null){ putQueryParameter("Definition", definition); } } public List<String> getWorkspacess() { return this.workspacess; } public void setWorkspacess(List<String> workspacess) { this.workspacess = workspacess; if (workspacess != null) { for (int i = 0; i < workspacess.size(); i++) { putQueryParameter("Workspaces." + (i + 1) , workspacess.get(i)); } } } @Override public Class<CreateExperimentResponse> getResponseClass() { return CreateExperimentResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/CreateExperimentResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.CreateExperimentResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateExperimentResponse extends AcsResponse { private String requestId; private String message; private String experimentId; private Integer httpStatusCode; private String code; private Boolean success; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getExperimentId() { return this.experimentId; } public void setExperimentId(String experimentId) { this.experimentId = experimentId; } public Integer getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } @Override public CreateExperimentResponse getInstance(UnmarshallerContext context) { return CreateExperimentResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/CreateFlowRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class CreateFlowRuleRequest extends RpcAcsRequest<CreateFlowRuleResponse> { private Integer controlBehavior; private Float threshold; private String ahasRegionId; private String appName; private Boolean enable; private String refResource; private Integer warmUpPeriodSec; private String resource; private Integer thresholdMode; private String limitOrigin; private String namespace; private Integer relationStrategy; private Integer maxQueueingTimeMs; public CreateFlowRuleRequest() { super("ahas-openapi", "2019-09-01", "CreateFlowRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getControlBehavior() { return this.controlBehavior; } public void setControlBehavior(Integer controlBehavior) { this.controlBehavior = controlBehavior; if(controlBehavior != null){ putQueryParameter("ControlBehavior", controlBehavior.toString()); } } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; if(threshold != null){ putQueryParameter("Threshold", threshold.toString()); } } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; if(enable != null){ putQueryParameter("Enable", enable.toString()); } } public String getRefResource() { return this.refResource; } public void setRefResource(String refResource) { this.refResource = refResource; if(refResource != null){ putQueryParameter("RefResource", refResource); } } public Integer getWarmUpPeriodSec() { return this.warmUpPeriodSec; } public void setWarmUpPeriodSec(Integer warmUpPeriodSec) { this.warmUpPeriodSec = warmUpPeriodSec; if(warmUpPeriodSec != null){ putQueryParameter("WarmUpPeriodSec", warmUpPeriodSec.toString()); } } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; if(resource != null){ putQueryParameter("Resource", resource); } } public Integer getThresholdMode() { return this.thresholdMode; } public void setThresholdMode(Integer thresholdMode) { this.thresholdMode = thresholdMode; if(thresholdMode != null){ putQueryParameter("ThresholdMode", thresholdMode.toString()); } } public String getLimitOrigin() { return this.limitOrigin; } public void setLimitOrigin(String limitOrigin) { this.limitOrigin = limitOrigin; if(limitOrigin != null){ putQueryParameter("LimitOrigin", limitOrigin); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } public Integer getRelationStrategy() { return this.relationStrategy; } public void setRelationStrategy(Integer relationStrategy) { this.relationStrategy = relationStrategy; if(relationStrategy != null){ putQueryParameter("RelationStrategy", relationStrategy.toString()); } } public Integer getMaxQueueingTimeMs() { return this.maxQueueingTimeMs; } public void setMaxQueueingTimeMs(Integer maxQueueingTimeMs) { this.maxQueueingTimeMs = maxQueueingTimeMs; if(maxQueueingTimeMs != null){ putQueryParameter("MaxQueueingTimeMs", maxQueueingTimeMs.toString()); } } @Override public Class<CreateFlowRuleResponse> getResponseClass() { return CreateFlowRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/CreateFlowRuleResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.CreateFlowRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateFlowRuleResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String refResource; private Integer clusterFallbackThreshold; private String namespace; private String limitOrigin; private Integer statDurationMs; private Integer clusterThresholdType; private Long ruleId; private Integer relationStrategy; private String appName; private String resource; private Float clusterEstimatedMaxQps; private Integer controlBehavior; private Integer maxQueueingTimeMs; private Integer clusterFallbackStrategy; private Integer warmUpPeriodSec; private Boolean clusterMode; private Integer thresholdMode; private Float threshold; private Boolean enable; public String getRefResource() { return this.refResource; } public void setRefResource(String refResource) { this.refResource = refResource; } public Integer getClusterFallbackThreshold() { return this.clusterFallbackThreshold; } public void setClusterFallbackThreshold(Integer clusterFallbackThreshold) { this.clusterFallbackThreshold = clusterFallbackThreshold; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public String getLimitOrigin() { return this.limitOrigin; } public void setLimitOrigin(String limitOrigin) { this.limitOrigin = limitOrigin; } public Integer getStatDurationMs() { return this.statDurationMs; } public void setStatDurationMs(Integer statDurationMs) { this.statDurationMs = statDurationMs; } public Integer getClusterThresholdType() { return this.clusterThresholdType; } public void setClusterThresholdType(Integer clusterThresholdType) { this.clusterThresholdType = clusterThresholdType; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public Integer getRelationStrategy() { return this.relationStrategy; } public void setRelationStrategy(Integer relationStrategy) { this.relationStrategy = relationStrategy; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public Float getClusterEstimatedMaxQps() { return this.clusterEstimatedMaxQps; } public void setClusterEstimatedMaxQps(Float clusterEstimatedMaxQps) { this.clusterEstimatedMaxQps = clusterEstimatedMaxQps; } public Integer getControlBehavior() { return this.controlBehavior; } public void setControlBehavior(Integer controlBehavior) { this.controlBehavior = controlBehavior; } public Integer getMaxQueueingTimeMs() { return this.maxQueueingTimeMs; } public void setMaxQueueingTimeMs(Integer maxQueueingTimeMs) { this.maxQueueingTimeMs = maxQueueingTimeMs; } public Integer getClusterFallbackStrategy() { return this.clusterFallbackStrategy; } public void setClusterFallbackStrategy(Integer clusterFallbackStrategy) { this.clusterFallbackStrategy = clusterFallbackStrategy; } public Integer getWarmUpPeriodSec() { return this.warmUpPeriodSec; } public void setWarmUpPeriodSec(Integer warmUpPeriodSec) { this.warmUpPeriodSec = warmUpPeriodSec; } public Boolean getClusterMode() { return this.clusterMode; } public void setClusterMode(Boolean clusterMode) { this.clusterMode = clusterMode; } public Integer getThresholdMode() { return this.thresholdMode; } public void setThresholdMode(Integer thresholdMode) { this.thresholdMode = thresholdMode; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } } @Override public CreateFlowRuleResponse getInstance(UnmarshallerContext context) { return CreateFlowRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/CreateHotParamItemsRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class CreateHotParamItemsRequest extends RpcAcsRequest<CreateHotParamItemsResponse> { private String ahasRegionId; private Long ruleId; private String items; public CreateHotParamItemsRequest() { super("ahas-openapi", "2019-09-01", "CreateHotParamItems", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId.toString()); } } public String getItems() { return this.items; } public void setItems(String items) { this.items = items; if(items != null){ putQueryParameter("Items", items); } } @Override public Class<CreateHotParamItemsResponse> getResponseClass() { return CreateHotParamItemsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/CreateHotParamItemsResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.CreateHotParamItemsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateHotParamItemsResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 Integer paramIdx; private String namespace; private Long statDurationSec; private Integer burstCount; private Long ruleId; private String resource; private String appName; private Integer maxQueueingTimeMs; private Integer controlBehavior; private Integer metricType; private Float threshold; private Boolean enable; private List<ParamFlowItemListItem> paramFlowItemList; public Integer getParamIdx() { return this.paramIdx; } public void setParamIdx(Integer paramIdx) { this.paramIdx = paramIdx; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public Long getStatDurationSec() { return this.statDurationSec; } public void setStatDurationSec(Long statDurationSec) { this.statDurationSec = statDurationSec; } public Integer getBurstCount() { return this.burstCount; } public void setBurstCount(Integer burstCount) { this.burstCount = burstCount; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public Integer getMaxQueueingTimeMs() { return this.maxQueueingTimeMs; } public void setMaxQueueingTimeMs(Integer maxQueueingTimeMs) { this.maxQueueingTimeMs = maxQueueingTimeMs; } public Integer getControlBehavior() { return this.controlBehavior; } public void setControlBehavior(Integer controlBehavior) { this.controlBehavior = controlBehavior; } public Integer getMetricType() { return this.metricType; } public void setMetricType(Integer metricType) { this.metricType = metricType; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } public List<ParamFlowItemListItem> getParamFlowItemList() { return this.paramFlowItemList; } public void setParamFlowItemList(List<ParamFlowItemListItem> paramFlowItemList) { this.paramFlowItemList = paramFlowItemList; } public static class ParamFlowItemListItem { private String itemValue; private String itemType; private Float threshold; public String getItemValue() { return this.itemValue; } public void setItemValue(String itemValue) { this.itemValue = itemValue; } public String getItemType() { return this.itemType; } public void setItemType(String itemType) { this.itemType = itemType; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } } } @Override public CreateHotParamItemsResponse getInstance(UnmarshallerContext context) { return CreateHotParamItemsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/CreateHotParamRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class CreateHotParamRuleRequest extends RpcAcsRequest<CreateHotParamRuleResponse> { private Integer metricType; private Integer paramIdx; private Integer controlBehavior; private String resource; private Float threshold; private String ahasRegionId; private String appName; private Boolean enable; private String namespace; private Integer maxQueueingTimeMs; private Long statDurationSec; private Integer burstCount; public CreateHotParamRuleRequest() { super("ahas-openapi", "2019-09-01", "CreateHotParamRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getMetricType() { return this.metricType; } public void setMetricType(Integer metricType) { this.metricType = metricType; if(metricType != null){ putQueryParameter("MetricType", metricType.toString()); } } public Integer getParamIdx() { return this.paramIdx; } public void setParamIdx(Integer paramIdx) { this.paramIdx = paramIdx; if(paramIdx != null){ putQueryParameter("ParamIdx", paramIdx.toString()); } } public Integer getControlBehavior() { return this.controlBehavior; } public void setControlBehavior(Integer controlBehavior) { this.controlBehavior = controlBehavior; if(controlBehavior != null){ putQueryParameter("ControlBehavior", controlBehavior.toString()); } } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; if(resource != null){ putQueryParameter("Resource", resource); } } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; if(threshold != null){ putQueryParameter("Threshold", threshold.toString()); } } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; if(enable != null){ putQueryParameter("Enable", enable.toString()); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } public Integer getMaxQueueingTimeMs() { return this.maxQueueingTimeMs; } public void setMaxQueueingTimeMs(Integer maxQueueingTimeMs) { this.maxQueueingTimeMs = maxQueueingTimeMs; if(maxQueueingTimeMs != null){ putQueryParameter("MaxQueueingTimeMs", maxQueueingTimeMs.toString()); } } public Long getStatDurationSec() { return this.statDurationSec; } public void setStatDurationSec(Long statDurationSec) { this.statDurationSec = statDurationSec; if(statDurationSec != null){ putQueryParameter("StatDurationSec", statDurationSec.toString()); } } public Integer getBurstCount() { return this.burstCount; } public void setBurstCount(Integer burstCount) { this.burstCount = burstCount; if(burstCount != null){ putQueryParameter("BurstCount", burstCount.toString()); } } @Override public Class<CreateHotParamRuleResponse> getResponseClass() { return CreateHotParamRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/CreateHotParamRuleResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.CreateHotParamRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateHotParamRuleResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 Integer paramIdx; private String namespace; private Long statDurationSec; private Integer burstCount; private Long ruleId; private String resource; private String appName; private Integer maxQueueingTimeMs; private Integer controlBehavior; private Integer metricType; private Float threshold; private Boolean enable; private List<ParamFlowItemListItem> paramFlowItemList; public Integer getParamIdx() { return this.paramIdx; } public void setParamIdx(Integer paramIdx) { this.paramIdx = paramIdx; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public Long getStatDurationSec() { return this.statDurationSec; } public void setStatDurationSec(Long statDurationSec) { this.statDurationSec = statDurationSec; } public Integer getBurstCount() { return this.burstCount; } public void setBurstCount(Integer burstCount) { this.burstCount = burstCount; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public Integer getMaxQueueingTimeMs() { return this.maxQueueingTimeMs; } public void setMaxQueueingTimeMs(Integer maxQueueingTimeMs) { this.maxQueueingTimeMs = maxQueueingTimeMs; } public Integer getControlBehavior() { return this.controlBehavior; } public void setControlBehavior(Integer controlBehavior) { this.controlBehavior = controlBehavior; } public Integer getMetricType() { return this.metricType; } public void setMetricType(Integer metricType) { this.metricType = metricType; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } public List<ParamFlowItemListItem> getParamFlowItemList() { return this.paramFlowItemList; } public void setParamFlowItemList(List<ParamFlowItemListItem> paramFlowItemList) { this.paramFlowItemList = paramFlowItemList; } public static class ParamFlowItemListItem { private String itemValue; private String itemType; private Float threshold; public String getItemValue() { return this.itemValue; } public void setItemValue(String itemValue) { this.itemValue = itemValue; } public String getItemType() { return this.itemType; } public void setItemType(String itemType) { this.itemType = itemType; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } } } @Override public CreateHotParamRuleResponse getInstance(UnmarshallerContext context) { return CreateHotParamRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/CreateIsolationRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class CreateIsolationRuleRequest extends RpcAcsRequest<CreateIsolationRuleResponse> { private String refResource; private String resource; private Float threshold; private String ahasRegionId; private String limitOrigin; private String appName; private Boolean enable; private String namespace; private Integer relationStrategy; public CreateIsolationRuleRequest() { super("ahas-openapi", "2019-09-01", "CreateIsolationRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getRefResource() { return this.refResource; } public void setRefResource(String refResource) { this.refResource = refResource; if(refResource != null){ putQueryParameter("RefResource", refResource); } } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; if(resource != null){ putQueryParameter("Resource", resource); } } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; if(threshold != null){ putQueryParameter("Threshold", threshold.toString()); } } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getLimitOrigin() { return this.limitOrigin; } public void setLimitOrigin(String limitOrigin) { this.limitOrigin = limitOrigin; if(limitOrigin != null){ putQueryParameter("LimitOrigin", limitOrigin); } } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; if(enable != null){ putQueryParameter("Enable", enable.toString()); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } public Integer getRelationStrategy() { return this.relationStrategy; } public void setRelationStrategy(Integer relationStrategy) { this.relationStrategy = relationStrategy; if(relationStrategy != null){ putQueryParameter("RelationStrategy", relationStrategy.toString()); } } @Override public Class<CreateIsolationRuleResponse> getResponseClass() { return CreateIsolationRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/CreateIsolationRuleResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.CreateIsolationRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateIsolationRuleResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 Integer relationStrategy; private String resource; private String appName; private String refResource; private String namespace; private String limitOrigin; private Float threshold; private Long ruleId; private Boolean enable; public Integer getRelationStrategy() { return this.relationStrategy; } public void setRelationStrategy(Integer relationStrategy) { this.relationStrategy = relationStrategy; } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public String getRefResource() { return this.refResource; } public void setRefResource(String refResource) { this.refResource = refResource; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public String getLimitOrigin() { return this.limitOrigin; } public void setLimitOrigin(String limitOrigin) { this.limitOrigin = limitOrigin; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } } @Override public CreateIsolationRuleResponse getInstance(UnmarshallerContext context) { return CreateIsolationRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/CreateSystemRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class CreateSystemRuleRequest extends RpcAcsRequest<CreateSystemRuleResponse> { private Integer metricType; private Float threshold; private String ahasRegionId; private String appName; private Boolean enable; private String namespace; public CreateSystemRuleRequest() { super("ahas-openapi", "2019-09-01", "CreateSystemRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getMetricType() { return this.metricType; } public void setMetricType(Integer metricType) { this.metricType = metricType; if(metricType != null){ putQueryParameter("MetricType", metricType.toString()); } } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; if(threshold != null){ putQueryParameter("Threshold", threshold.toString()); } } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; if(enable != null){ putQueryParameter("Enable", enable.toString()); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } @Override public Class<CreateSystemRuleResponse> getResponseClass() { return CreateSystemRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/CreateSystemRuleResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.CreateSystemRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateSystemRuleResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 Integer metricType; private Float threshold; private Long ruleId; private Boolean enable; public Integer getMetricType() { return this.metricType; } public void setMetricType(Integer metricType) { this.metricType = metricType; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } } @Override public CreateSystemRuleResponse getInstance(UnmarshallerContext context) { return CreateSystemRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DeleteDegradeRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class DeleteDegradeRuleRequest extends RpcAcsRequest<DeleteDegradeRuleResponse> { private String ahasRegionId; private Long ruleId; public DeleteDegradeRuleRequest() { super("ahas-openapi", "2019-09-01", "DeleteDegradeRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId.toString()); } } @Override public Class<DeleteDegradeRuleResponse> getResponseClass() { return DeleteDegradeRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DeleteDegradeRuleResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.DeleteDegradeRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteDegradeRuleResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 ruleId; public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } } @Override public DeleteDegradeRuleResponse getInstance(UnmarshallerContext context) { return DeleteDegradeRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DeleteFlowRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class DeleteFlowRuleRequest extends RpcAcsRequest<DeleteFlowRuleResponse> { private String ahasRegionId; private Long ruleId; public DeleteFlowRuleRequest() { super("ahas-openapi", "2019-09-01", "DeleteFlowRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId.toString()); } } @Override public Class<DeleteFlowRuleResponse> getResponseClass() { return DeleteFlowRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DeleteFlowRuleResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.DeleteFlowRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteFlowRuleResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 ruleId; public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } } @Override public DeleteFlowRuleResponse getInstance(UnmarshallerContext context) { return DeleteFlowRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DeleteHotParamRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class DeleteHotParamRuleRequest extends RpcAcsRequest<DeleteHotParamRuleResponse> { private String ahasRegionId; private Long ruleId; public DeleteHotParamRuleRequest() { super("ahas-openapi", "2019-09-01", "DeleteHotParamRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId.toString()); } } @Override public Class<DeleteHotParamRuleResponse> getResponseClass() { return DeleteHotParamRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DeleteHotParamRuleResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.DeleteHotParamRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteHotParamRuleResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 ruleId; public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } } @Override public DeleteHotParamRuleResponse getInstance(UnmarshallerContext context) { return DeleteHotParamRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DeleteIsolationRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class DeleteIsolationRuleRequest extends RpcAcsRequest<DeleteIsolationRuleResponse> { private String ahasRegionId; private Long ruleId; public DeleteIsolationRuleRequest() { super("ahas-openapi", "2019-09-01", "DeleteIsolationRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId.toString()); } } @Override public Class<DeleteIsolationRuleResponse> getResponseClass() { return DeleteIsolationRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DeleteIsolationRuleResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.DeleteIsolationRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteIsolationRuleResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 ruleId; public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } } @Override public DeleteIsolationRuleResponse getInstance(UnmarshallerContext context) { return DeleteIsolationRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DeleteSystemRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class DeleteSystemRuleRequest extends RpcAcsRequest<DeleteSystemRuleResponse> { private String ahasRegionId; private Long ruleId; public DeleteSystemRuleRequest() { super("ahas-openapi", "2019-09-01", "DeleteSystemRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId.toString()); } } @Override public Class<DeleteSystemRuleResponse> getResponseClass() { return DeleteSystemRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DeleteSystemRuleResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.DeleteSystemRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteSystemRuleResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 ruleId; public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } } @Override public DeleteSystemRuleResponse getInstance(UnmarshallerContext context) { return DeleteSystemRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DescribeRegionsRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class DescribeRegionsRequest extends RpcAcsRequest<DescribeRegionsResponse> { private String acceptLanguage; public DescribeRegionsRequest() { super("ahas-openapi", "2019-09-01", "DescribeRegions", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAcceptLanguage() { return this.acceptLanguage; } public void setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; if(acceptLanguage != null){ putQueryParameter("AcceptLanguage", acceptLanguage); } } @Override public Class<DescribeRegionsResponse> getResponseClass() { return DescribeRegionsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DescribeRegionsResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.DescribeRegionsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeRegionsResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private List<Data> regions; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public List<Data> getRegions() { return this.regions; } public void setRegions(List<Data> regions) { this.regions = regions; } public static class Data { private String localName; private String regionEndpoint; private String regionId; public String getLocalName() { return this.localName; } public void setLocalName(String localName) { this.localName = localName; } public String getRegionEndpoint() { return this.regionEndpoint; } public void setRegionEndpoint(String regionEndpoint) { this.regionEndpoint = regionEndpoint; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } } @Override public DescribeRegionsResponse getInstance(UnmarshallerContext context) { return DescribeRegionsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DisableDegradeRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class DisableDegradeRuleRequest extends RpcAcsRequest<DisableDegradeRuleResponse> { private String ahasRegionId; private Long ruleId; public DisableDegradeRuleRequest() { super("ahas-openapi", "2019-09-01", "DisableDegradeRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId.toString()); } } @Override public Class<DisableDegradeRuleResponse> getResponseClass() { return DisableDegradeRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DisableDegradeRuleResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.DisableDegradeRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DisableDegradeRuleResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 Integer slowRtMs; private Integer halfOpenRecoveryStepNum; private String namespace; private Integer statDurationMs; private Long ruleId; private Integer strategy; private String resource; private String appName; private Integer halfOpenBaseAmountPerStep; private Integer recoveryTimeoutMs; private Integer minRequestAmount; private Float threshold; private Boolean enable; public Integer getSlowRtMs() { return this.slowRtMs; } public void setSlowRtMs(Integer slowRtMs) { this.slowRtMs = slowRtMs; } public Integer getHalfOpenRecoveryStepNum() { return this.halfOpenRecoveryStepNum; } public void setHalfOpenRecoveryStepNum(Integer halfOpenRecoveryStepNum) { this.halfOpenRecoveryStepNum = halfOpenRecoveryStepNum; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public Integer getStatDurationMs() { return this.statDurationMs; } public void setStatDurationMs(Integer statDurationMs) { this.statDurationMs = statDurationMs; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public Integer getStrategy() { return this.strategy; } public void setStrategy(Integer strategy) { this.strategy = strategy; } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public Integer getHalfOpenBaseAmountPerStep() { return this.halfOpenBaseAmountPerStep; } public void setHalfOpenBaseAmountPerStep(Integer halfOpenBaseAmountPerStep) { this.halfOpenBaseAmountPerStep = halfOpenBaseAmountPerStep; } public Integer getRecoveryTimeoutMs() { return this.recoveryTimeoutMs; } public void setRecoveryTimeoutMs(Integer recoveryTimeoutMs) { this.recoveryTimeoutMs = recoveryTimeoutMs; } public Integer getMinRequestAmount() { return this.minRequestAmount; } public void setMinRequestAmount(Integer minRequestAmount) { this.minRequestAmount = minRequestAmount; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } } @Override public DisableDegradeRuleResponse getInstance(UnmarshallerContext context) { return DisableDegradeRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DisableFlowRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class DisableFlowRuleRequest extends RpcAcsRequest<DisableFlowRuleResponse> { private String ahasRegionId; private Long ruleId; public DisableFlowRuleRequest() { super("ahas-openapi", "2019-09-01", "DisableFlowRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId.toString()); } } @Override public Class<DisableFlowRuleResponse> getResponseClass() { return DisableFlowRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DisableFlowRuleResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.DisableFlowRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DisableFlowRuleResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String refResource; private Integer clusterFallbackThreshold; private String namespace; private String limitOrigin; private Integer statDurationMs; private Integer clusterThresholdType; private Long ruleId; private Integer relationStrategy; private String appName; private String resource; private Integer maxQueueingTimeMs; private Float clusterEstimatedMaxQps; private Integer controlBehavior; private Integer warmUpPeriodSec; private Integer clusterFallbackStrategy; private Float threshold; private Boolean clusterMode; private Boolean enable; public String getRefResource() { return this.refResource; } public void setRefResource(String refResource) { this.refResource = refResource; } public Integer getClusterFallbackThreshold() { return this.clusterFallbackThreshold; } public void setClusterFallbackThreshold(Integer clusterFallbackThreshold) { this.clusterFallbackThreshold = clusterFallbackThreshold; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public String getLimitOrigin() { return this.limitOrigin; } public void setLimitOrigin(String limitOrigin) { this.limitOrigin = limitOrigin; } public Integer getStatDurationMs() { return this.statDurationMs; } public void setStatDurationMs(Integer statDurationMs) { this.statDurationMs = statDurationMs; } public Integer getClusterThresholdType() { return this.clusterThresholdType; } public void setClusterThresholdType(Integer clusterThresholdType) { this.clusterThresholdType = clusterThresholdType; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public Integer getRelationStrategy() { return this.relationStrategy; } public void setRelationStrategy(Integer relationStrategy) { this.relationStrategy = relationStrategy; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public Integer getMaxQueueingTimeMs() { return this.maxQueueingTimeMs; } public void setMaxQueueingTimeMs(Integer maxQueueingTimeMs) { this.maxQueueingTimeMs = maxQueueingTimeMs; } public Float getClusterEstimatedMaxQps() { return this.clusterEstimatedMaxQps; } public void setClusterEstimatedMaxQps(Float clusterEstimatedMaxQps) { this.clusterEstimatedMaxQps = clusterEstimatedMaxQps; } public Integer getControlBehavior() { return this.controlBehavior; } public void setControlBehavior(Integer controlBehavior) { this.controlBehavior = controlBehavior; } public Integer getWarmUpPeriodSec() { return this.warmUpPeriodSec; } public void setWarmUpPeriodSec(Integer warmUpPeriodSec) { this.warmUpPeriodSec = warmUpPeriodSec; } public Integer getClusterFallbackStrategy() { return this.clusterFallbackStrategy; } public void setClusterFallbackStrategy(Integer clusterFallbackStrategy) { this.clusterFallbackStrategy = clusterFallbackStrategy; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Boolean getClusterMode() { return this.clusterMode; } public void setClusterMode(Boolean clusterMode) { this.clusterMode = clusterMode; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } } @Override public DisableFlowRuleResponse getInstance(UnmarshallerContext context) { return DisableFlowRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DisableHotParamRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class DisableHotParamRuleRequest extends RpcAcsRequest<DisableHotParamRuleResponse> { private String ahasRegionId; private Long ruleId; public DisableHotParamRuleRequest() { super("ahas-openapi", "2019-09-01", "DisableHotParamRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId.toString()); } } @Override public Class<DisableHotParamRuleResponse> getResponseClass() { return DisableHotParamRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DisableHotParamRuleResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.DisableHotParamRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DisableHotParamRuleResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer paramIdx; private String namespace; private Long statDurationSec; private Integer burstCount; private Long ruleId; private String appName; private String resource; private Integer controlBehavior; private Integer maxQueueingTimeMs; private Integer metricType; private Float threshold; private Boolean enable; private List<ParamFlowItemListItem> paramFlowItemList; public Integer getParamIdx() { return this.paramIdx; } public void setParamIdx(Integer paramIdx) { this.paramIdx = paramIdx; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public Long getStatDurationSec() { return this.statDurationSec; } public void setStatDurationSec(Long statDurationSec) { this.statDurationSec = statDurationSec; } public Integer getBurstCount() { return this.burstCount; } public void setBurstCount(Integer burstCount) { this.burstCount = burstCount; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public Integer getControlBehavior() { return this.controlBehavior; } public void setControlBehavior(Integer controlBehavior) { this.controlBehavior = controlBehavior; } public Integer getMaxQueueingTimeMs() { return this.maxQueueingTimeMs; } public void setMaxQueueingTimeMs(Integer maxQueueingTimeMs) { this.maxQueueingTimeMs = maxQueueingTimeMs; } public Integer getMetricType() { return this.metricType; } public void setMetricType(Integer metricType) { this.metricType = metricType; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } public List<ParamFlowItemListItem> getParamFlowItemList() { return this.paramFlowItemList; } public void setParamFlowItemList(List<ParamFlowItemListItem> paramFlowItemList) { this.paramFlowItemList = paramFlowItemList; } public static class ParamFlowItemListItem { private String itemValue; private Float threshold; private String itemType; public String getItemValue() { return this.itemValue; } public void setItemValue(String itemValue) { this.itemValue = itemValue; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public String getItemType() { return this.itemType; } public void setItemType(String itemType) { this.itemType = itemType; } } } @Override public DisableHotParamRuleResponse getInstance(UnmarshallerContext context) { return DisableHotParamRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DisableIsolationRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class DisableIsolationRuleRequest extends RpcAcsRequest<DisableIsolationRuleResponse> { private String ahasRegionId; private Long ruleId; public DisableIsolationRuleRequest() { super("ahas-openapi", "2019-09-01", "DisableIsolationRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId.toString()); } } @Override public Class<DisableIsolationRuleResponse> getResponseClass() { return DisableIsolationRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DisableIsolationRuleResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.DisableIsolationRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DisableIsolationRuleResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 Integer relationStrategy; private String resource; private String appName; private String refResource; private String namespace; private String limitOrigin; private Float threshold; private Long ruleId; private Boolean enable; public Integer getRelationStrategy() { return this.relationStrategy; } public void setRelationStrategy(Integer relationStrategy) { this.relationStrategy = relationStrategy; } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public String getRefResource() { return this.refResource; } public void setRefResource(String refResource) { this.refResource = refResource; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public String getLimitOrigin() { return this.limitOrigin; } public void setLimitOrigin(String limitOrigin) { this.limitOrigin = limitOrigin; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } } @Override public DisableIsolationRuleResponse getInstance(UnmarshallerContext context) { return DisableIsolationRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DisableSystemRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class DisableSystemRuleRequest extends RpcAcsRequest<DisableSystemRuleResponse> { private String ahasRegionId; private Long ruleId; public DisableSystemRuleRequest() { super("ahas-openapi", "2019-09-01", "DisableSystemRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId.toString()); } } @Override public Class<DisableSystemRuleResponse> getResponseClass() { return DisableSystemRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/DisableSystemRuleResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.DisableSystemRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DisableSystemRuleResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 Integer metricType; private Float threshold; private Long ruleId; private Boolean enable; public Integer getMetricType() { return this.metricType; } public void setMetricType(Integer metricType) { this.metricType = metricType; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } } @Override public DisableSystemRuleResponse getInstance(UnmarshallerContext context) { return DisableSystemRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/EnableDegradeRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class EnableDegradeRuleRequest extends RpcAcsRequest<EnableDegradeRuleResponse> { private String ahasRegionId; private Long ruleId; public EnableDegradeRuleRequest() { super("ahas-openapi", "2019-09-01", "EnableDegradeRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId.toString()); } } @Override public Class<EnableDegradeRuleResponse> getResponseClass() { return EnableDegradeRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/EnableDegradeRuleResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.EnableDegradeRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class EnableDegradeRuleResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 Integer slowRtMs; private Integer halfOpenRecoveryStepNum; private String namespace; private Integer statDurationMs; private Long ruleId; private Integer strategy; private String resource; private String appName; private Integer halfOpenBaseAmountPerStep; private Integer recoveryTimeoutMs; private Integer minRequestAmount; private Float threshold; private Boolean enable; public Integer getSlowRtMs() { return this.slowRtMs; } public void setSlowRtMs(Integer slowRtMs) { this.slowRtMs = slowRtMs; } public Integer getHalfOpenRecoveryStepNum() { return this.halfOpenRecoveryStepNum; } public void setHalfOpenRecoveryStepNum(Integer halfOpenRecoveryStepNum) { this.halfOpenRecoveryStepNum = halfOpenRecoveryStepNum; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public Integer getStatDurationMs() { return this.statDurationMs; } public void setStatDurationMs(Integer statDurationMs) { this.statDurationMs = statDurationMs; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public Integer getStrategy() { return this.strategy; } public void setStrategy(Integer strategy) { this.strategy = strategy; } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public Integer getHalfOpenBaseAmountPerStep() { return this.halfOpenBaseAmountPerStep; } public void setHalfOpenBaseAmountPerStep(Integer halfOpenBaseAmountPerStep) { this.halfOpenBaseAmountPerStep = halfOpenBaseAmountPerStep; } public Integer getRecoveryTimeoutMs() { return this.recoveryTimeoutMs; } public void setRecoveryTimeoutMs(Integer recoveryTimeoutMs) { this.recoveryTimeoutMs = recoveryTimeoutMs; } public Integer getMinRequestAmount() { return this.minRequestAmount; } public void setMinRequestAmount(Integer minRequestAmount) { this.minRequestAmount = minRequestAmount; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } } @Override public EnableDegradeRuleResponse getInstance(UnmarshallerContext context) { return EnableDegradeRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/EnableFlowRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class EnableFlowRuleRequest extends RpcAcsRequest<EnableFlowRuleResponse> { private String ahasRegionId; private Long ruleId; public EnableFlowRuleRequest() { super("ahas-openapi", "2019-09-01", "EnableFlowRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId.toString()); } } @Override public Class<EnableFlowRuleResponse> getResponseClass() { return EnableFlowRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/EnableFlowRuleResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.EnableFlowRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class EnableFlowRuleResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String refResource; private Integer clusterFallbackThreshold; private String namespace; private Integer statDurationMs; private String limitOrigin; private Integer clusterThresholdType; private Long ruleId; private Integer relationStrategy; private String resource; private String appName; private Integer maxQueueingTimeMs; private Integer controlBehavior; private Float clusterEstimatedMaxQps; private Integer warmUpPeriodSec; private Integer clusterFallbackStrategy; private Float threshold; private Boolean clusterMode; private Boolean enable; public String getRefResource() { return this.refResource; } public void setRefResource(String refResource) { this.refResource = refResource; } public Integer getClusterFallbackThreshold() { return this.clusterFallbackThreshold; } public void setClusterFallbackThreshold(Integer clusterFallbackThreshold) { this.clusterFallbackThreshold = clusterFallbackThreshold; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public Integer getStatDurationMs() { return this.statDurationMs; } public void setStatDurationMs(Integer statDurationMs) { this.statDurationMs = statDurationMs; } public String getLimitOrigin() { return this.limitOrigin; } public void setLimitOrigin(String limitOrigin) { this.limitOrigin = limitOrigin; } public Integer getClusterThresholdType() { return this.clusterThresholdType; } public void setClusterThresholdType(Integer clusterThresholdType) { this.clusterThresholdType = clusterThresholdType; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public Integer getRelationStrategy() { return this.relationStrategy; } public void setRelationStrategy(Integer relationStrategy) { this.relationStrategy = relationStrategy; } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public Integer getMaxQueueingTimeMs() { return this.maxQueueingTimeMs; } public void setMaxQueueingTimeMs(Integer maxQueueingTimeMs) { this.maxQueueingTimeMs = maxQueueingTimeMs; } public Integer getControlBehavior() { return this.controlBehavior; } public void setControlBehavior(Integer controlBehavior) { this.controlBehavior = controlBehavior; } public Float getClusterEstimatedMaxQps() { return this.clusterEstimatedMaxQps; } public void setClusterEstimatedMaxQps(Float clusterEstimatedMaxQps) { this.clusterEstimatedMaxQps = clusterEstimatedMaxQps; } public Integer getWarmUpPeriodSec() { return this.warmUpPeriodSec; } public void setWarmUpPeriodSec(Integer warmUpPeriodSec) { this.warmUpPeriodSec = warmUpPeriodSec; } public Integer getClusterFallbackStrategy() { return this.clusterFallbackStrategy; } public void setClusterFallbackStrategy(Integer clusterFallbackStrategy) { this.clusterFallbackStrategy = clusterFallbackStrategy; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Boolean getClusterMode() { return this.clusterMode; } public void setClusterMode(Boolean clusterMode) { this.clusterMode = clusterMode; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } } @Override public EnableFlowRuleResponse getInstance(UnmarshallerContext context) { return EnableFlowRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/EnableHotParamRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class EnableHotParamRuleRequest extends RpcAcsRequest<EnableHotParamRuleResponse> { private String ahasRegionId; private Long ruleId; public EnableHotParamRuleRequest() { super("ahas-openapi", "2019-09-01", "EnableHotParamRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId.toString()); } } @Override public Class<EnableHotParamRuleResponse> getResponseClass() { return EnableHotParamRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/EnableHotParamRuleResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.EnableHotParamRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class EnableHotParamRuleResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 Integer paramIdx; private String namespace; private Long statDurationSec; private Integer burstCount; private Long ruleId; private String resource; private String appName; private Integer maxQueueingTimeMs; private Integer controlBehavior; private Integer metricType; private Float threshold; private Boolean enable; private List<ParamFlowItemListItem> paramFlowItemList; public Integer getParamIdx() { return this.paramIdx; } public void setParamIdx(Integer paramIdx) { this.paramIdx = paramIdx; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public Long getStatDurationSec() { return this.statDurationSec; } public void setStatDurationSec(Long statDurationSec) { this.statDurationSec = statDurationSec; } public Integer getBurstCount() { return this.burstCount; } public void setBurstCount(Integer burstCount) { this.burstCount = burstCount; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public Integer getMaxQueueingTimeMs() { return this.maxQueueingTimeMs; } public void setMaxQueueingTimeMs(Integer maxQueueingTimeMs) { this.maxQueueingTimeMs = maxQueueingTimeMs; } public Integer getControlBehavior() { return this.controlBehavior; } public void setControlBehavior(Integer controlBehavior) { this.controlBehavior = controlBehavior; } public Integer getMetricType() { return this.metricType; } public void setMetricType(Integer metricType) { this.metricType = metricType; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } public List<ParamFlowItemListItem> getParamFlowItemList() { return this.paramFlowItemList; } public void setParamFlowItemList(List<ParamFlowItemListItem> paramFlowItemList) { this.paramFlowItemList = paramFlowItemList; } public static class ParamFlowItemListItem { private String itemValue; private String itemType; private Float threshold; public String getItemValue() { return this.itemValue; } public void setItemValue(String itemValue) { this.itemValue = itemValue; } public String getItemType() { return this.itemType; } public void setItemType(String itemType) { this.itemType = itemType; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } } } @Override public EnableHotParamRuleResponse getInstance(UnmarshallerContext context) { return EnableHotParamRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/EnableIsolationRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class EnableIsolationRuleRequest extends RpcAcsRequest<EnableIsolationRuleResponse> { private String ahasRegionId; private Long ruleId; public EnableIsolationRuleRequest() { super("ahas-openapi", "2019-09-01", "EnableIsolationRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId.toString()); } } @Override public Class<EnableIsolationRuleResponse> getResponseClass() { return EnableIsolationRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/EnableIsolationRuleResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.EnableIsolationRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class EnableIsolationRuleResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 Integer relationStrategy; private String resource; private String appName; private String refResource; private String namespace; private String limitOrigin; private Float threshold; private Long ruleId; private Boolean enable; public Integer getRelationStrategy() { return this.relationStrategy; } public void setRelationStrategy(Integer relationStrategy) { this.relationStrategy = relationStrategy; } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public String getRefResource() { return this.refResource; } public void setRefResource(String refResource) { this.refResource = refResource; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public String getLimitOrigin() { return this.limitOrigin; } public void setLimitOrigin(String limitOrigin) { this.limitOrigin = limitOrigin; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } } @Override public EnableIsolationRuleResponse getInstance(UnmarshallerContext context) { return EnableIsolationRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/EnableSystemRuleRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class EnableSystemRuleRequest extends RpcAcsRequest<EnableSystemRuleResponse> { private String ahasRegionId; private Long ruleId; public EnableSystemRuleRequest() { super("ahas-openapi", "2019-09-01", "EnableSystemRule", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId.toString()); } } @Override public Class<EnableSystemRuleResponse> getResponseClass() { return EnableSystemRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/EnableSystemRuleResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.EnableSystemRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class EnableSystemRuleResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 Integer metricType; private Float threshold; private Long ruleId; private Boolean enable; public Integer getMetricType() { return this.metricType; } public void setMetricType(Integer metricType) { this.metricType = metricType; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } } @Override public EnableSystemRuleResponse getInstance(UnmarshallerContext context) { return EnableSystemRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/ExecuteExperimentRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class ExecuteExperimentRequest extends RpcAcsRequest<ExecuteExperimentResponse> { private String ahasRegionId; private String nameSpace; private String experimentId; private String definition; public ExecuteExperimentRequest() { super("ahas-openapi", "2019-09-01", "ExecuteExperiment", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getNameSpace() { return this.nameSpace; } public void setNameSpace(String nameSpace) { this.nameSpace = nameSpace; if(nameSpace != null){ putQueryParameter("NameSpace", nameSpace); } } public String getExperimentId() { return this.experimentId; } public void setExperimentId(String experimentId) { this.experimentId = experimentId; if(experimentId != null){ putQueryParameter("ExperimentId", experimentId); } } public String getDefinition() { return this.definition; } public void setDefinition(String definition) { this.definition = definition; if(definition != null){ putQueryParameter("Definition", definition); } } @Override public Class<ExecuteExperimentResponse> getResponseClass() { return ExecuteExperimentResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/ExecuteExperimentResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.ExecuteExperimentResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ExecuteExperimentResponse extends AcsResponse { private String taskId; private String message; private String requestId; private String code; private Boolean success; public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; } 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } @Override public ExecuteExperimentResponse getInstance(UnmarshallerContext context) { return ExecuteExperimentResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/FinishExperimentTaskRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class FinishExperimentTaskRequest extends RpcAcsRequest<FinishExperimentTaskResponse> { private String ahasRegionId; private String nameSpace; private String experimentTaskId; public FinishExperimentTaskRequest() { super("ahas-openapi", "2019-09-01", "FinishExperimentTask", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getNameSpace() { return this.nameSpace; } public void setNameSpace(String nameSpace) { this.nameSpace = nameSpace; if(nameSpace != null){ putQueryParameter("NameSpace", nameSpace); } } public String getExperimentTaskId() { return this.experimentTaskId; } public void setExperimentTaskId(String experimentTaskId) { this.experimentTaskId = experimentTaskId; if(experimentTaskId != null){ putQueryParameter("ExperimentTaskId", experimentTaskId); } } @Override public Class<FinishExperimentTaskResponse> getResponseClass() { return FinishExperimentTaskResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/FinishExperimentTaskResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.FinishExperimentTaskResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class FinishExperimentTaskResponse extends AcsResponse { private String message; private String requestId; private String code; 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 String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } @Override public FinishExperimentTaskResponse getInstance(UnmarshallerContext context) { return FinishExperimentTaskResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetActivityTaskRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class GetActivityTaskRequest extends RpcAcsRequest<GetActivityTaskResponse> { private String activityTaskId; private String ahasRegionId; private String nameSpace; private String experimentTaskId; public GetActivityTaskRequest() { super("ahas-openapi", "2019-09-01", "GetActivityTask", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getActivityTaskId() { return this.activityTaskId; } public void setActivityTaskId(String activityTaskId) { this.activityTaskId = activityTaskId; if(activityTaskId != null){ putQueryParameter("ActivityTaskId", activityTaskId); } } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getNameSpace() { return this.nameSpace; } public void setNameSpace(String nameSpace) { this.nameSpace = nameSpace; if(nameSpace != null){ putQueryParameter("NameSpace", nameSpace); } } public String getExperimentTaskId() { return this.experimentTaskId; } public void setExperimentTaskId(String experimentTaskId) { this.experimentTaskId = experimentTaskId; if(experimentTaskId != null){ putQueryParameter("ExperimentTaskId", experimentTaskId); } } @Override public Class<GetActivityTaskResponse> getResponseClass() { return GetActivityTaskResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetActivityTaskResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.GetActivityTaskResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetActivityTaskResponse extends AcsResponse { private String phase; private Long endTime; private String requestId; private String activityName; private String state; private String activityId; private String experimentTaskId; private Integer httpStatusCode; private Long startTime; private String runResult; private Boolean success; private List<HostsItem> hosts; public String getPhase() { return this.phase; } public void setPhase(String phase) { this.phase = phase; } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getActivityName() { return this.activityName; } public void setActivityName(String activityName) { this.activityName = activityName; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getActivityId() { return this.activityId; } public void setActivityId(String activityId) { this.activityId = activityId; } public String getExperimentTaskId() { return this.experimentTaskId; } public void setExperimentTaskId(String experimentTaskId) { this.experimentTaskId = experimentTaskId; } public Integer getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; } public String getRunResult() { return this.runResult; } public void setRunResult(String runResult) { this.runResult = runResult; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public List<HostsItem> getHosts() { return this.hosts; } public void setHosts(List<HostsItem> hosts) { this.hosts = hosts; } public static class HostsItem { private String hostIp; private Long endTime; private Long startTime; private String data; private String errorMessage; private String expId; private String result; private String state; private String taskId; public String getHostIp() { return this.hostIp; } public void setHostIp(String hostIp) { this.hostIp = hostIp; } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public String getExpId() { return this.expId; } public void setExpId(String expId) { this.expId = expId; } public String getResult() { return this.result; } public void setResult(String result) { this.result = result; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; } } @Override public GetActivityTaskResponse getInstance(UnmarshallerContext context) { return GetActivityTaskResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetExperimentMetaRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class GetExperimentMetaRequest extends RpcAcsRequest<GetExperimentMetaResponse> { private String nameSpace; private String experimentId; public GetExperimentMetaRequest() { super("ahas-openapi", "2019-09-01", "GetExperimentMeta", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getNameSpace() { return this.nameSpace; } public void setNameSpace(String nameSpace) { this.nameSpace = nameSpace; if(nameSpace != null){ putQueryParameter("NameSpace", nameSpace); } } public String getExperimentId() { return this.experimentId; } public void setExperimentId(String experimentId) { this.experimentId = experimentId; if(experimentId != null){ putQueryParameter("ExperimentId", experimentId); } } @Override public Class<GetExperimentMetaResponse> getResponseClass() { return GetExperimentMetaResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetExperimentMetaResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.GetExperimentMetaResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetExperimentMetaResponse extends AcsResponse { private String requestId; private String message; private String state; private String experimentId; private String createTime; private String code; private Boolean success; private String name; private List<String> tags; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getExperimentId() { return this.experimentId; } public void setExperimentId(String experimentId) { this.experimentId = experimentId; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public List<String> getTags() { return this.tags; } public void setTags(List<String> tags) { this.tags = tags; } @Override public GetExperimentMetaResponse getInstance(UnmarshallerContext context) { return GetExperimentMetaResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetExperimentTaskRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class GetExperimentTaskRequest extends RpcAcsRequest<GetExperimentTaskResponse> { private String ahasRegionId; private String nameSpace; private String experimentTaskId; public GetExperimentTaskRequest() { super("ahas-openapi", "2019-09-01", "GetExperimentTask", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getNameSpace() { return this.nameSpace; } public void setNameSpace(String nameSpace) { this.nameSpace = nameSpace; if(nameSpace != null){ putQueryParameter("NameSpace", nameSpace); } } public String getExperimentTaskId() { return this.experimentTaskId; } public void setExperimentTaskId(String experimentTaskId) { this.experimentTaskId = experimentTaskId; if(experimentTaskId != null){ putQueryParameter("ExperimentTaskId", experimentTaskId); } } @Override public Class<GetExperimentTaskResponse> getResponseClass() { return GetExperimentTaskResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetExperimentTaskResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.GetExperimentTaskResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetExperimentTaskResponse extends AcsResponse { private String taskId; private String requestId; private String experimentName; private String state; private String experimentId; private Integer httpStatusCode; private Long startTime; private Boolean success; private String result; private String namespace; private List<ActivitiesItem> activities; public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getExperimentName() { return this.experimentName; } public void setExperimentName(String experimentName) { this.experimentName = experimentName; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getExperimentId() { return this.experimentId; } public void setExperimentId(String experimentId) { this.experimentId = experimentId; } public Integer getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getResult() { return this.result; } public void setResult(String result) { this.result = result; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public List<ActivitiesItem> getActivities() { return this.activities; } public void setActivities(List<ActivitiesItem> activities) { this.activities = activities; } public static class ActivitiesItem { private Long endTime; private Long startTime; private String checkState; private String runResult; private String state; private String activityId; private String phase; private String activityName; private String experimentTaskId; private String taskId; public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; } public String getCheckState() { return this.checkState; } public void setCheckState(String checkState) { this.checkState = checkState; } public String getRunResult() { return this.runResult; } public void setRunResult(String runResult) { this.runResult = runResult; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getActivityId() { return this.activityId; } public void setActivityId(String activityId) { this.activityId = activityId; } public String getPhase() { return this.phase; } public void setPhase(String phase) { this.phase = phase; } public String getActivityName() { return this.activityName; } public void setActivityName(String activityName) { this.activityName = activityName; } public String getExperimentTaskId() { return this.experimentTaskId; } public void setExperimentTaskId(String experimentTaskId) { this.experimentTaskId = experimentTaskId; } public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; } } @Override public GetExperimentTaskResponse getInstance(UnmarshallerContext context) { return GetExperimentTaskResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetLicenseKeyRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class GetLicenseKeyRequest extends RpcAcsRequest<GetLicenseKeyResponse> { private String ahasRegionId; private String namespace; public GetLicenseKeyRequest() { super("ahas-openapi", "2019-09-01", "GetLicenseKey", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } @Override public Class<GetLicenseKeyResponse> getResponseClass() { return GetLicenseKeyResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetLicenseKeyResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.GetLicenseKeyResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetLicenseKeyResponse extends AcsResponse { private String message; private String requestId; private String data; private String code; 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 String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } @Override public GetLicenseKeyResponse getInstance(UnmarshallerContext context) { return GetLicenseKeyResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetMetricsOfAppRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class GetMetricsOfAppRequest extends RpcAcsRequest<GetMetricsOfAppResponse> { private Long endTime; private Long startTime; private String ahasRegionId; private String appName; private String namespace; public GetMetricsOfAppRequest() { super("ahas-openapi", "2019-09-01", "GetMetricsOfApp", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("EndTime", endTime.toString()); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime.toString()); } } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } @Override public Class<GetMetricsOfAppResponse> getResponseClass() { return GetMetricsOfAppResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetMetricsOfAppResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.GetMetricsOfAppResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetMetricsOfAppResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String appName; private String namespace; private List<InnerMetricsItem> innerMetrics; public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public List<InnerMetricsItem> getInnerMetrics() { return this.innerMetrics; } public void setInnerMetrics(List<InnerMetricsItem> innerMetrics) { this.innerMetrics = innerMetrics; } public static class InnerMetricsItem { private Float rtP99; private Float successQpsAvg; private Float passedQpsP99; private Float rtAvg; private Integer count; private Float threadStd; private Float passedQpsAvg; private Float exceptionP95; private Float successQpsMax; private Float rtP95; private Float blockedQpsMin; private Float blockedQps; private Long timestamp; private Float threadP95; private Float rtStd; private Float passedQpsMin; private Float blockedQpsP99; private Float passedQpsMax; private Float exceptionMax; private Float successQps; private Float successQpsP75; private Float threadP75; private Float successQpsStd; private Float exceptionMin; private Float passedQpsP75; private Float passedQps; private Float threadMax; private Float successQpsP99; private Float successQpsMin; private Float threadP99; private Float exceptionStd; private Float blockedQpsP95; private Float thread; private Float threadMin; private Float rtMin; private Float blockedQpsAvg; private Float threadAvg; private Float blockedQpsP75; private Float rtP75; private Float exceptionP99; private Float exceptionP75; private Float successQpsP95; private Float rt; private Float passedQpsP95; private Float rtMax; private Float blockedQpsStd; private Float blockedQpsMax; private Float exception; private Float exceptionAvg; private Float passedQpsStd; public Float getRtP99() { return this.rtP99; } public void setRtP99(Float rtP99) { this.rtP99 = rtP99; } public Float getSuccessQpsAvg() { return this.successQpsAvg; } public void setSuccessQpsAvg(Float successQpsAvg) { this.successQpsAvg = successQpsAvg; } public Float getPassedQpsP99() { return this.passedQpsP99; } public void setPassedQpsP99(Float passedQpsP99) { this.passedQpsP99 = passedQpsP99; } public Float getRtAvg() { return this.rtAvg; } public void setRtAvg(Float rtAvg) { this.rtAvg = rtAvg; } public Integer getCount() { return this.count; } public void setCount(Integer count) { this.count = count; } public Float getThreadStd() { return this.threadStd; } public void setThreadStd(Float threadStd) { this.threadStd = threadStd; } public Float getPassedQpsAvg() { return this.passedQpsAvg; } public void setPassedQpsAvg(Float passedQpsAvg) { this.passedQpsAvg = passedQpsAvg; } public Float getExceptionP95() { return this.exceptionP95; } public void setExceptionP95(Float exceptionP95) { this.exceptionP95 = exceptionP95; } public Float getSuccessQpsMax() { return this.successQpsMax; } public void setSuccessQpsMax(Float successQpsMax) { this.successQpsMax = successQpsMax; } public Float getRtP95() { return this.rtP95; } public void setRtP95(Float rtP95) { this.rtP95 = rtP95; } public Float getBlockedQpsMin() { return this.blockedQpsMin; } public void setBlockedQpsMin(Float blockedQpsMin) { this.blockedQpsMin = blockedQpsMin; } public Float getBlockedQps() { return this.blockedQps; } public void setBlockedQps(Float blockedQps) { this.blockedQps = blockedQps; } public Long getTimestamp() { return this.timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } public Float getThreadP95() { return this.threadP95; } public void setThreadP95(Float threadP95) { this.threadP95 = threadP95; } public Float getRtStd() { return this.rtStd; } public void setRtStd(Float rtStd) { this.rtStd = rtStd; } public Float getPassedQpsMin() { return this.passedQpsMin; } public void setPassedQpsMin(Float passedQpsMin) { this.passedQpsMin = passedQpsMin; } public Float getBlockedQpsP99() { return this.blockedQpsP99; } public void setBlockedQpsP99(Float blockedQpsP99) { this.blockedQpsP99 = blockedQpsP99; } public Float getPassedQpsMax() { return this.passedQpsMax; } public void setPassedQpsMax(Float passedQpsMax) { this.passedQpsMax = passedQpsMax; } public Float getExceptionMax() { return this.exceptionMax; } public void setExceptionMax(Float exceptionMax) { this.exceptionMax = exceptionMax; } public Float getSuccessQps() { return this.successQps; } public void setSuccessQps(Float successQps) { this.successQps = successQps; } public Float getSuccessQpsP75() { return this.successQpsP75; } public void setSuccessQpsP75(Float successQpsP75) { this.successQpsP75 = successQpsP75; } public Float getThreadP75() { return this.threadP75; } public void setThreadP75(Float threadP75) { this.threadP75 = threadP75; } public Float getSuccessQpsStd() { return this.successQpsStd; } public void setSuccessQpsStd(Float successQpsStd) { this.successQpsStd = successQpsStd; } public Float getExceptionMin() { return this.exceptionMin; } public void setExceptionMin(Float exceptionMin) { this.exceptionMin = exceptionMin; } public Float getPassedQpsP75() { return this.passedQpsP75; } public void setPassedQpsP75(Float passedQpsP75) { this.passedQpsP75 = passedQpsP75; } public Float getPassedQps() { return this.passedQps; } public void setPassedQps(Float passedQps) { this.passedQps = passedQps; } public Float getThreadMax() { return this.threadMax; } public void setThreadMax(Float threadMax) { this.threadMax = threadMax; } public Float getSuccessQpsP99() { return this.successQpsP99; } public void setSuccessQpsP99(Float successQpsP99) { this.successQpsP99 = successQpsP99; } public Float getSuccessQpsMin() { return this.successQpsMin; } public void setSuccessQpsMin(Float successQpsMin) { this.successQpsMin = successQpsMin; } public Float getThreadP99() { return this.threadP99; } public void setThreadP99(Float threadP99) { this.threadP99 = threadP99; } public Float getExceptionStd() { return this.exceptionStd; } public void setExceptionStd(Float exceptionStd) { this.exceptionStd = exceptionStd; } public Float getBlockedQpsP95() { return this.blockedQpsP95; } public void setBlockedQpsP95(Float blockedQpsP95) { this.blockedQpsP95 = blockedQpsP95; } public Float getThread() { return this.thread; } public void setThread(Float thread) { this.thread = thread; } public Float getThreadMin() { return this.threadMin; } public void setThreadMin(Float threadMin) { this.threadMin = threadMin; } public Float getRtMin() { return this.rtMin; } public void setRtMin(Float rtMin) { this.rtMin = rtMin; } public Float getBlockedQpsAvg() { return this.blockedQpsAvg; } public void setBlockedQpsAvg(Float blockedQpsAvg) { this.blockedQpsAvg = blockedQpsAvg; } public Float getThreadAvg() { return this.threadAvg; } public void setThreadAvg(Float threadAvg) { this.threadAvg = threadAvg; } public Float getBlockedQpsP75() { return this.blockedQpsP75; } public void setBlockedQpsP75(Float blockedQpsP75) { this.blockedQpsP75 = blockedQpsP75; } public Float getRtP75() { return this.rtP75; } public void setRtP75(Float rtP75) { this.rtP75 = rtP75; } public Float getExceptionP99() { return this.exceptionP99; } public void setExceptionP99(Float exceptionP99) { this.exceptionP99 = exceptionP99; } public Float getExceptionP75() { return this.exceptionP75; } public void setExceptionP75(Float exceptionP75) { this.exceptionP75 = exceptionP75; } public Float getSuccessQpsP95() { return this.successQpsP95; } public void setSuccessQpsP95(Float successQpsP95) { this.successQpsP95 = successQpsP95; } public Float getRt() { return this.rt; } public void setRt(Float rt) { this.rt = rt; } public Float getPassedQpsP95() { return this.passedQpsP95; } public void setPassedQpsP95(Float passedQpsP95) { this.passedQpsP95 = passedQpsP95; } public Float getRtMax() { return this.rtMax; } public void setRtMax(Float rtMax) { this.rtMax = rtMax; } public Float getBlockedQpsStd() { return this.blockedQpsStd; } public void setBlockedQpsStd(Float blockedQpsStd) { this.blockedQpsStd = blockedQpsStd; } public Float getBlockedQpsMax() { return this.blockedQpsMax; } public void setBlockedQpsMax(Float blockedQpsMax) { this.blockedQpsMax = blockedQpsMax; } public Float getException() { return this.exception; } public void setException(Float exception) { this.exception = exception; } public Float getExceptionAvg() { return this.exceptionAvg; } public void setExceptionAvg(Float exceptionAvg) { this.exceptionAvg = exceptionAvg; } public Float getPassedQpsStd() { return this.passedQpsStd; } public void setPassedQpsStd(Float passedQpsStd) { this.passedQpsStd = passedQpsStd; } } } @Override public GetMetricsOfAppResponse getInstance(UnmarshallerContext context) { return GetMetricsOfAppResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetMetricsOfResourceRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class GetMetricsOfResourceRequest extends RpcAcsRequest<GetMetricsOfResourceResponse> { private String resource; private Long endTime; private Long startTime; private String ahasRegionId; private String appName; private String namespace; public GetMetricsOfResourceRequest() { super("ahas-openapi", "2019-09-01", "GetMetricsOfResource", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; if(resource != null){ putQueryParameter("Resource", resource); } } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("EndTime", endTime.toString()); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime.toString()); } } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } @Override public Class<GetMetricsOfResourceResponse> getResponseClass() { return GetMetricsOfResourceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetMetricsOfResourceResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.GetMetricsOfResourceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetMetricsOfResourceResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String appName; private String resource; private String namespace; private List<InnerMetricsItem> innerMetrics; public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public List<InnerMetricsItem> getInnerMetrics() { return this.innerMetrics; } public void setInnerMetrics(List<InnerMetricsItem> innerMetrics) { this.innerMetrics = innerMetrics; } public static class InnerMetricsItem { private Float rtP99; private Float successQpsAvg; private Float passedQpsP99; private Float rtAvg; private Integer count; private Float threadStd; private Float passedQpsAvg; private Float exceptionP95; private Float successQpsMax; private Float rtP95; private Float blockedQpsMin; private Float blockedQps; private Long timestamp; private Float threadP95; private Float rtStd; private Float passedQpsMin; private Float blockedQpsP99; private Float passedQpsMax; private Float exceptionMax; private Float successQps; private Float successQpsP75; private Float threadP75; private Float successQpsStd; private Float exceptionMin; private Float passedQpsP75; private Float passedQps; private Float threadMax; private Float successQpsP99; private Float successQpsMin; private Float threadP99; private Float exceptionStd; private Float blockedQpsP95; private Float thread; private Float threadMin; private Float rtMin; private Float blockedQpsAvg; private Float threadAvg; private Float blockedQpsP75; private Float rtP75; private Float exceptionP99; private Float exceptionP75; private Float successQpsP95; private Float rt; private Float passedQpsP95; private Float rtMax; private Float blockedQpsStd; private Float blockedQpsMax; private Float exception; private Float exceptionAvg; private Float passedQpsStd; public Float getRtP99() { return this.rtP99; } public void setRtP99(Float rtP99) { this.rtP99 = rtP99; } public Float getSuccessQpsAvg() { return this.successQpsAvg; } public void setSuccessQpsAvg(Float successQpsAvg) { this.successQpsAvg = successQpsAvg; } public Float getPassedQpsP99() { return this.passedQpsP99; } public void setPassedQpsP99(Float passedQpsP99) { this.passedQpsP99 = passedQpsP99; } public Float getRtAvg() { return this.rtAvg; } public void setRtAvg(Float rtAvg) { this.rtAvg = rtAvg; } public Integer getCount() { return this.count; } public void setCount(Integer count) { this.count = count; } public Float getThreadStd() { return this.threadStd; } public void setThreadStd(Float threadStd) { this.threadStd = threadStd; } public Float getPassedQpsAvg() { return this.passedQpsAvg; } public void setPassedQpsAvg(Float passedQpsAvg) { this.passedQpsAvg = passedQpsAvg; } public Float getExceptionP95() { return this.exceptionP95; } public void setExceptionP95(Float exceptionP95) { this.exceptionP95 = exceptionP95; } public Float getSuccessQpsMax() { return this.successQpsMax; } public void setSuccessQpsMax(Float successQpsMax) { this.successQpsMax = successQpsMax; } public Float getRtP95() { return this.rtP95; } public void setRtP95(Float rtP95) { this.rtP95 = rtP95; } public Float getBlockedQpsMin() { return this.blockedQpsMin; } public void setBlockedQpsMin(Float blockedQpsMin) { this.blockedQpsMin = blockedQpsMin; } public Float getBlockedQps() { return this.blockedQps; } public void setBlockedQps(Float blockedQps) { this.blockedQps = blockedQps; } public Long getTimestamp() { return this.timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } public Float getThreadP95() { return this.threadP95; } public void setThreadP95(Float threadP95) { this.threadP95 = threadP95; } public Float getRtStd() { return this.rtStd; } public void setRtStd(Float rtStd) { this.rtStd = rtStd; } public Float getPassedQpsMin() { return this.passedQpsMin; } public void setPassedQpsMin(Float passedQpsMin) { this.passedQpsMin = passedQpsMin; } public Float getBlockedQpsP99() { return this.blockedQpsP99; } public void setBlockedQpsP99(Float blockedQpsP99) { this.blockedQpsP99 = blockedQpsP99; } public Float getPassedQpsMax() { return this.passedQpsMax; } public void setPassedQpsMax(Float passedQpsMax) { this.passedQpsMax = passedQpsMax; } public Float getExceptionMax() { return this.exceptionMax; } public void setExceptionMax(Float exceptionMax) { this.exceptionMax = exceptionMax; } public Float getSuccessQps() { return this.successQps; } public void setSuccessQps(Float successQps) { this.successQps = successQps; } public Float getSuccessQpsP75() { return this.successQpsP75; } public void setSuccessQpsP75(Float successQpsP75) { this.successQpsP75 = successQpsP75; } public Float getThreadP75() { return this.threadP75; } public void setThreadP75(Float threadP75) { this.threadP75 = threadP75; } public Float getSuccessQpsStd() { return this.successQpsStd; } public void setSuccessQpsStd(Float successQpsStd) { this.successQpsStd = successQpsStd; } public Float getExceptionMin() { return this.exceptionMin; } public void setExceptionMin(Float exceptionMin) { this.exceptionMin = exceptionMin; } public Float getPassedQpsP75() { return this.passedQpsP75; } public void setPassedQpsP75(Float passedQpsP75) { this.passedQpsP75 = passedQpsP75; } public Float getPassedQps() { return this.passedQps; } public void setPassedQps(Float passedQps) { this.passedQps = passedQps; } public Float getThreadMax() { return this.threadMax; } public void setThreadMax(Float threadMax) { this.threadMax = threadMax; } public Float getSuccessQpsP99() { return this.successQpsP99; } public void setSuccessQpsP99(Float successQpsP99) { this.successQpsP99 = successQpsP99; } public Float getSuccessQpsMin() { return this.successQpsMin; } public void setSuccessQpsMin(Float successQpsMin) { this.successQpsMin = successQpsMin; } public Float getThreadP99() { return this.threadP99; } public void setThreadP99(Float threadP99) { this.threadP99 = threadP99; } public Float getExceptionStd() { return this.exceptionStd; } public void setExceptionStd(Float exceptionStd) { this.exceptionStd = exceptionStd; } public Float getBlockedQpsP95() { return this.blockedQpsP95; } public void setBlockedQpsP95(Float blockedQpsP95) { this.blockedQpsP95 = blockedQpsP95; } public Float getThread() { return this.thread; } public void setThread(Float thread) { this.thread = thread; } public Float getThreadMin() { return this.threadMin; } public void setThreadMin(Float threadMin) { this.threadMin = threadMin; } public Float getRtMin() { return this.rtMin; } public void setRtMin(Float rtMin) { this.rtMin = rtMin; } public Float getBlockedQpsAvg() { return this.blockedQpsAvg; } public void setBlockedQpsAvg(Float blockedQpsAvg) { this.blockedQpsAvg = blockedQpsAvg; } public Float getThreadAvg() { return this.threadAvg; } public void setThreadAvg(Float threadAvg) { this.threadAvg = threadAvg; } public Float getBlockedQpsP75() { return this.blockedQpsP75; } public void setBlockedQpsP75(Float blockedQpsP75) { this.blockedQpsP75 = blockedQpsP75; } public Float getRtP75() { return this.rtP75; } public void setRtP75(Float rtP75) { this.rtP75 = rtP75; } public Float getExceptionP99() { return this.exceptionP99; } public void setExceptionP99(Float exceptionP99) { this.exceptionP99 = exceptionP99; } public Float getExceptionP75() { return this.exceptionP75; } public void setExceptionP75(Float exceptionP75) { this.exceptionP75 = exceptionP75; } public Float getSuccessQpsP95() { return this.successQpsP95; } public void setSuccessQpsP95(Float successQpsP95) { this.successQpsP95 = successQpsP95; } public Float getRt() { return this.rt; } public void setRt(Float rt) { this.rt = rt; } public Float getPassedQpsP95() { return this.passedQpsP95; } public void setPassedQpsP95(Float passedQpsP95) { this.passedQpsP95 = passedQpsP95; } public Float getRtMax() { return this.rtMax; } public void setRtMax(Float rtMax) { this.rtMax = rtMax; } public Float getBlockedQpsStd() { return this.blockedQpsStd; } public void setBlockedQpsStd(Float blockedQpsStd) { this.blockedQpsStd = blockedQpsStd; } public Float getBlockedQpsMax() { return this.blockedQpsMax; } public void setBlockedQpsMax(Float blockedQpsMax) { this.blockedQpsMax = blockedQpsMax; } public Float getException() { return this.exception; } public void setException(Float exception) { this.exception = exception; } public Float getExceptionAvg() { return this.exceptionAvg; } public void setExceptionAvg(Float exceptionAvg) { this.exceptionAvg = exceptionAvg; } public Float getPassedQpsStd() { return this.passedQpsStd; } public void setPassedQpsStd(Float passedQpsStd) { this.passedQpsStd = passedQpsStd; } } } @Override public GetMetricsOfResourceResponse getInstance(UnmarshallerContext context) { return GetMetricsOfResourceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetSentinelAppSumMetricRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class GetSentinelAppSumMetricRequest extends RpcAcsRequest<GetSentinelAppSumMetricResponse> { private String endTime; private String startTime; private String ahasRegionId; private String appName; private String acceptLanguage; private String namespace; public GetSentinelAppSumMetricRequest() { super("ahas-openapi", "2019-09-01", "GetSentinelAppSumMetric", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("EndTime", endTime); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime); } } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } public String getAcceptLanguage() { return this.acceptLanguage; } public void setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; if(acceptLanguage != null){ putQueryParameter("AcceptLanguage", acceptLanguage); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } @Override public Class<GetSentinelAppSumMetricResponse> getResponseClass() { return GetSentinelAppSumMetricResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetSentinelAppSumMetricResponse.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.ahas_openapi.model.v20190901; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.GetSentinelAppSumMetricResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetSentinelAppSumMetricResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private MetricData metricData; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public MetricData getMetricData() { return this.metricData; } public void setMetricData(MetricData metricData) { this.metricData = metricData; } public static class MetricData { private String appName; private Float passCount; private Long machineCount; private Float avgRt; private String userId; private String namespace; private Float totalCount; private Float blockCount; public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public Float getPassCount() { return this.passCount; } public void setPassCount(Float passCount) { this.passCount = passCount; } public Long getMachineCount() { return this.machineCount; } public void setMachineCount(Long machineCount) { this.machineCount = machineCount; } public Float getAvgRt() { return this.avgRt; } public void setAvgRt(Float avgRt) { this.avgRt = avgRt; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public Float getTotalCount() { return this.totalCount; } public void setTotalCount(Float totalCount) { this.totalCount = totalCount; } public Float getBlockCount() { return this.blockCount; } public void setBlockCount(Float blockCount) { this.blockCount = blockCount; } } @Override public GetSentinelAppSumMetricResponse getInstance(UnmarshallerContext context) { return GetSentinelAppSumMetricResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetUserApplicationGroupsRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class GetUserApplicationGroupsRequest extends RpcAcsRequest<GetUserApplicationGroupsResponse> { private String ahasRegionId; private String nameSpace; private String applicationId; public GetUserApplicationGroupsRequest() { super("ahas-openapi", "2019-09-01", "GetUserApplicationGroups", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getNameSpace() { return this.nameSpace; } public void setNameSpace(String nameSpace) { this.nameSpace = nameSpace; if(nameSpace != null){ putQueryParameter("NameSpace", nameSpace); } } public String getApplicationId() { return this.applicationId; } public void setApplicationId(String applicationId) { this.applicationId = applicationId; if(applicationId != null){ putQueryParameter("ApplicationId", applicationId); } } @Override public Class<GetUserApplicationGroupsResponse> getResponseClass() { return GetUserApplicationGroupsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetUserApplicationGroupsResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.GetUserApplicationGroupsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetUserApplicationGroupsResponse extends AcsResponse { private String requestId; private Integer httpStatusCode; private Boolean success; private String message; private String code; private List<String> appGroups; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public List<String> getAppGroups() { return this.appGroups; } public void setAppGroups(List<String> appGroups) { this.appGroups = appGroups; } @Override public GetUserApplicationGroupsResponse getInstance(UnmarshallerContext context) { return GetUserApplicationGroupsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetUserApplicationsRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class GetUserApplicationsRequest extends RpcAcsRequest<GetUserApplicationsResponse> { private String ahasRegionId; private String namespace; public GetUserApplicationsRequest() { super("ahas-openapi", "2019-09-01", "GetUserApplications", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } @Override public Class<GetUserApplicationsResponse> getResponseClass() { return GetUserApplicationsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetUserApplicationsResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.GetUserApplicationsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetUserApplicationsResponse extends AcsResponse { private String message; private String requestId; private Integer httpStatusCode; private String code; private Boolean success; private List<AppNameAndIdPairsItem> appNameAndIdPairs; 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 Integer getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public List<AppNameAndIdPairsItem> getAppNameAndIdPairs() { return this.appNameAndIdPairs; } public void setAppNameAndIdPairs(List<AppNameAndIdPairsItem> appNameAndIdPairs) { this.appNameAndIdPairs = appNameAndIdPairs; } public static class AppNameAndIdPairsItem { private String appName; private String appId; private Integer scopeType; private Integer appType; public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public String getAppId() { return this.appId; } public void setAppId(String appId) { this.appId = appId; } public Integer getScopeType() { return this.scopeType; } public void setScopeType(Integer scopeType) { this.scopeType = scopeType; } public Integer getAppType() { return this.appType; } public void setAppType(Integer appType) { this.appType = appType; } } @Override public GetUserApplicationsResponse getInstance(UnmarshallerContext context) { return GetUserApplicationsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetUserWorkspaceRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class GetUserWorkspaceRequest extends RpcAcsRequest<GetUserWorkspaceResponse> { private String ahasRegionId; private String namespace; public GetUserWorkspaceRequest() { super("ahas-openapi", "2019-09-01", "GetUserWorkspace", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } @Override public Class<GetUserWorkspaceResponse> getResponseClass() { return GetUserWorkspaceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/GetUserWorkspaceResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.GetUserWorkspaceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetUserWorkspaceResponse extends AcsResponse { private String message; private String requestId; private Integer httpStatusCode; private String code; private Boolean success; private List<WorkspaceInfo> workspaceList; 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 Integer getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public List<WorkspaceInfo> getWorkspaceList() { return this.workspaceList; } public void setWorkspaceList(List<WorkspaceInfo> workspaceList) { this.workspaceList = workspaceList; } public static class WorkspaceInfo { private Integer type; private String workspaceId; private String description; private String name; public Integer getType() { return this.type; } public void setType(Integer type) { this.type = type; } public String getWorkspaceId() { return this.workspaceId; } public void setWorkspaceId(String workspaceId) { this.workspaceId = workspaceId; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } @Override public GetUserWorkspaceResponse getInstance(UnmarshallerContext context) { return GetUserWorkspaceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/ListActiveAppsRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class ListActiveAppsRequest extends RpcAcsRequest<ListActiveAppsResponse> { private Integer appType; private String ahasRegionId; private String namespace; public ListActiveAppsRequest() { super("ahas-openapi", "2019-09-01", "ListActiveApps", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getAppType() { return this.appType; } public void setAppType(Integer appType) { this.appType = appType; if(appType != null){ putQueryParameter("AppType", appType.toString()); } } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } @Override public Class<ListActiveAppsResponse> getResponseClass() { return ListActiveAppsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/ListActiveAppsResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.ListActiveAppsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListActiveAppsResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private List<DataItem> data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String appName; private Long lastHealthPingTime; private Integer currentLevel; private String namespace; private Integer appType; private Integer dirtyLevel; private String ahasAppName; public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public Long getLastHealthPingTime() { return this.lastHealthPingTime; } public void setLastHealthPingTime(Long lastHealthPingTime) { this.lastHealthPingTime = lastHealthPingTime; } public Integer getCurrentLevel() { return this.currentLevel; } public void setCurrentLevel(Integer currentLevel) { this.currentLevel = currentLevel; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public Integer getAppType() { return this.appType; } public void setAppType(Integer appType) { this.appType = appType; } public Integer getDirtyLevel() { return this.dirtyLevel; } public void setDirtyLevel(Integer dirtyLevel) { this.dirtyLevel = dirtyLevel; } public String getAhasAppName() { return this.ahasAppName; } public void setAhasAppName(String ahasAppName) { this.ahasAppName = ahasAppName; } } @Override public ListActiveAppsResponse getInstance(UnmarshallerContext context) { return ListActiveAppsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/ListDegradeRulesOfAppRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class ListDegradeRulesOfAppRequest extends RpcAcsRequest<ListDegradeRulesOfAppResponse> { private String ahasRegionId; private String appName; private String namespace; private Integer pageSize; private Integer pageIndex; public ListDegradeRulesOfAppRequest() { super("ahas-openapi", "2019-09-01", "ListDegradeRulesOfApp", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Integer getPageIndex() { return this.pageIndex; } public void setPageIndex(Integer pageIndex) { this.pageIndex = pageIndex; if(pageIndex != null){ putQueryParameter("PageIndex", pageIndex.toString()); } } @Override public Class<ListDegradeRulesOfAppResponse> getResponseClass() { return ListDegradeRulesOfAppResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/ListDegradeRulesOfAppResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.ListDegradeRulesOfAppResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListDegradeRulesOfAppResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 Integer pageIndex; private Integer totalPage; private Integer pageSize; private Integer totalCount; private List<DatasItem> datas; public Integer getPageIndex() { return this.pageIndex; } public void setPageIndex(Integer pageIndex) { this.pageIndex = pageIndex; } public Integer getTotalPage() { return this.totalPage; } public void setTotalPage(Integer totalPage) { this.totalPage = totalPage; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<DatasItem> getDatas() { return this.datas; } public void setDatas(List<DatasItem> datas) { this.datas = datas; } public static class DatasItem { private Integer slowRtMs; private Integer halfOpenRecoveryStepNum; private String namespace; private Integer statDurationMs; private Long ruleId; private Integer strategy; private String resource; private String appName; private Integer halfOpenBaseAmountPerStep; private Integer recoveryTimeoutMs; private Integer minRequestAmount; private Float threshold; private Boolean enable; public Integer getSlowRtMs() { return this.slowRtMs; } public void setSlowRtMs(Integer slowRtMs) { this.slowRtMs = slowRtMs; } public Integer getHalfOpenRecoveryStepNum() { return this.halfOpenRecoveryStepNum; } public void setHalfOpenRecoveryStepNum(Integer halfOpenRecoveryStepNum) { this.halfOpenRecoveryStepNum = halfOpenRecoveryStepNum; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public Integer getStatDurationMs() { return this.statDurationMs; } public void setStatDurationMs(Integer statDurationMs) { this.statDurationMs = statDurationMs; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public Integer getStrategy() { return this.strategy; } public void setStrategy(Integer strategy) { this.strategy = strategy; } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public Integer getHalfOpenBaseAmountPerStep() { return this.halfOpenBaseAmountPerStep; } public void setHalfOpenBaseAmountPerStep(Integer halfOpenBaseAmountPerStep) { this.halfOpenBaseAmountPerStep = halfOpenBaseAmountPerStep; } public Integer getRecoveryTimeoutMs() { return this.recoveryTimeoutMs; } public void setRecoveryTimeoutMs(Integer recoveryTimeoutMs) { this.recoveryTimeoutMs = recoveryTimeoutMs; } public Integer getMinRequestAmount() { return this.minRequestAmount; } public void setMinRequestAmount(Integer minRequestAmount) { this.minRequestAmount = minRequestAmount; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } } } @Override public ListDegradeRulesOfAppResponse getInstance(UnmarshallerContext context) { return ListDegradeRulesOfAppResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/ListDegradeRulesOfResourceRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class ListDegradeRulesOfResourceRequest extends RpcAcsRequest<ListDegradeRulesOfResourceResponse> { private String resource; private String ahasRegionId; private String appName; private String namespace; private Integer pageSize; private Integer pageIndex; public ListDegradeRulesOfResourceRequest() { super("ahas-openapi", "2019-09-01", "ListDegradeRulesOfResource", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; if(resource != null){ putQueryParameter("Resource", resource); } } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Integer getPageIndex() { return this.pageIndex; } public void setPageIndex(Integer pageIndex) { this.pageIndex = pageIndex; if(pageIndex != null){ putQueryParameter("PageIndex", pageIndex.toString()); } } @Override public Class<ListDegradeRulesOfResourceResponse> getResponseClass() { return ListDegradeRulesOfResourceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/ListDegradeRulesOfResourceResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.ListDegradeRulesOfResourceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListDegradeRulesOfResourceResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 Integer pageIndex; private Integer totalPage; private Integer pageSize; private Integer totalCount; private List<DatasItem> datas; public Integer getPageIndex() { return this.pageIndex; } public void setPageIndex(Integer pageIndex) { this.pageIndex = pageIndex; } public Integer getTotalPage() { return this.totalPage; } public void setTotalPage(Integer totalPage) { this.totalPage = totalPage; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<DatasItem> getDatas() { return this.datas; } public void setDatas(List<DatasItem> datas) { this.datas = datas; } public static class DatasItem { private Integer slowRtMs; private Integer halfOpenRecoveryStepNum; private String namespace; private Integer statDurationMs; private Long ruleId; private Integer strategy; private String resource; private String appName; private Integer halfOpenBaseAmountPerStep; private Integer recoveryTimeoutMs; private Integer minRequestAmount; private Float threshold; private Boolean enable; public Integer getSlowRtMs() { return this.slowRtMs; } public void setSlowRtMs(Integer slowRtMs) { this.slowRtMs = slowRtMs; } public Integer getHalfOpenRecoveryStepNum() { return this.halfOpenRecoveryStepNum; } public void setHalfOpenRecoveryStepNum(Integer halfOpenRecoveryStepNum) { this.halfOpenRecoveryStepNum = halfOpenRecoveryStepNum; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public Integer getStatDurationMs() { return this.statDurationMs; } public void setStatDurationMs(Integer statDurationMs) { this.statDurationMs = statDurationMs; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public Integer getStrategy() { return this.strategy; } public void setStrategy(Integer strategy) { this.strategy = strategy; } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public Integer getHalfOpenBaseAmountPerStep() { return this.halfOpenBaseAmountPerStep; } public void setHalfOpenBaseAmountPerStep(Integer halfOpenBaseAmountPerStep) { this.halfOpenBaseAmountPerStep = halfOpenBaseAmountPerStep; } public Integer getRecoveryTimeoutMs() { return this.recoveryTimeoutMs; } public void setRecoveryTimeoutMs(Integer recoveryTimeoutMs) { this.recoveryTimeoutMs = recoveryTimeoutMs; } public Integer getMinRequestAmount() { return this.minRequestAmount; } public void setMinRequestAmount(Integer minRequestAmount) { this.minRequestAmount = minRequestAmount; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } } } @Override public ListDegradeRulesOfResourceResponse getInstance(UnmarshallerContext context) { return ListDegradeRulesOfResourceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/ListExperimentMetasRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class ListExperimentMetasRequest extends RpcAcsRequest<ListExperimentMetasResponse> { private String ahasRegionId; private Integer size; private String nameSpace; private Integer page; public ListExperimentMetasRequest() { super("ahas-openapi", "2019-09-01", "ListExperimentMetas", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public Integer getSize() { return this.size; } public void setSize(Integer size) { this.size = size; if(size != null){ putQueryParameter("Size", size.toString()); } } public String getNameSpace() { return this.nameSpace; } public void setNameSpace(String nameSpace) { this.nameSpace = nameSpace; if(nameSpace != null){ putQueryParameter("NameSpace", nameSpace); } } public Integer getPage() { return this.page; } public void setPage(Integer page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } @Override public Class<ListExperimentMetasResponse> getResponseClass() { return ListExperimentMetasResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/ListExperimentMetasResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.ListExperimentMetasResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListExperimentMetasResponse extends AcsResponse { private Integer pages; private String requestId; private String message; private Integer pageSize; private Integer currentPage; private Integer total; private String code; private Boolean success; private List<ContentItem> content; public Integer getPages() { return this.pages; } public void setPages(Integer pages) { this.pages = pages; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; } public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public List<ContentItem> getContent() { return this.content; } public void setContent(List<ContentItem> content) { this.content = content; } public static class ContentItem { private String state; private Long createTime; private String experimentId; private String name; private List<String> tags; public String getState() { return this.state; } public void setState(String state) { this.state = state; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public String getExperimentId() { return this.experimentId; } public void setExperimentId(String experimentId) { this.experimentId = experimentId; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public List<String> getTags() { return this.tags; } public void setTags(List<String> tags) { this.tags = tags; } } @Override public ListExperimentMetasResponse getInstance(UnmarshallerContext context) { return ListExperimentMetasResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/ListFlowRulesOfAppRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class ListFlowRulesOfAppRequest extends RpcAcsRequest<ListFlowRulesOfAppResponse> { private String ahasRegionId; private String appName; private String namespace; private Integer pageSize; private Integer pageIndex; public ListFlowRulesOfAppRequest() { super("ahas-openapi", "2019-09-01", "ListFlowRulesOfApp", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Integer getPageIndex() { return this.pageIndex; } public void setPageIndex(Integer pageIndex) { this.pageIndex = pageIndex; if(pageIndex != null){ putQueryParameter("PageIndex", pageIndex.toString()); } } @Override public Class<ListFlowRulesOfAppResponse> getResponseClass() { return ListFlowRulesOfAppResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/ListFlowRulesOfAppResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.ListFlowRulesOfAppResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListFlowRulesOfAppResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 Integer pageIndex; private Integer totalPage; private Integer pageSize; private Integer totalCount; private List<DatasItem> datas; public Integer getPageIndex() { return this.pageIndex; } public void setPageIndex(Integer pageIndex) { this.pageIndex = pageIndex; } public Integer getTotalPage() { return this.totalPage; } public void setTotalPage(Integer totalPage) { this.totalPage = totalPage; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<DatasItem> getDatas() { return this.datas; } public void setDatas(List<DatasItem> datas) { this.datas = datas; } public static class DatasItem { private String refResource; private Integer clusterFallbackThreshold; private String namespace; private String limitOrigin; private Integer statDurationMs; private Integer clusterThresholdType; private Long ruleId; private Integer relationStrategy; private String appName; private String resource; private Float clusterEstimatedMaxQps; private Integer controlBehavior; private Integer maxQueueingTimeMs; private Integer clusterFallbackStrategy; private Integer warmUpPeriodSec; private Boolean clusterMode; private Integer thresholdMode; private Float threshold; private Boolean enable; public String getRefResource() { return this.refResource; } public void setRefResource(String refResource) { this.refResource = refResource; } public Integer getClusterFallbackThreshold() { return this.clusterFallbackThreshold; } public void setClusterFallbackThreshold(Integer clusterFallbackThreshold) { this.clusterFallbackThreshold = clusterFallbackThreshold; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public String getLimitOrigin() { return this.limitOrigin; } public void setLimitOrigin(String limitOrigin) { this.limitOrigin = limitOrigin; } public Integer getStatDurationMs() { return this.statDurationMs; } public void setStatDurationMs(Integer statDurationMs) { this.statDurationMs = statDurationMs; } public Integer getClusterThresholdType() { return this.clusterThresholdType; } public void setClusterThresholdType(Integer clusterThresholdType) { this.clusterThresholdType = clusterThresholdType; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public Integer getRelationStrategy() { return this.relationStrategy; } public void setRelationStrategy(Integer relationStrategy) { this.relationStrategy = relationStrategy; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public Float getClusterEstimatedMaxQps() { return this.clusterEstimatedMaxQps; } public void setClusterEstimatedMaxQps(Float clusterEstimatedMaxQps) { this.clusterEstimatedMaxQps = clusterEstimatedMaxQps; } public Integer getControlBehavior() { return this.controlBehavior; } public void setControlBehavior(Integer controlBehavior) { this.controlBehavior = controlBehavior; } public Integer getMaxQueueingTimeMs() { return this.maxQueueingTimeMs; } public void setMaxQueueingTimeMs(Integer maxQueueingTimeMs) { this.maxQueueingTimeMs = maxQueueingTimeMs; } public Integer getClusterFallbackStrategy() { return this.clusterFallbackStrategy; } public void setClusterFallbackStrategy(Integer clusterFallbackStrategy) { this.clusterFallbackStrategy = clusterFallbackStrategy; } public Integer getWarmUpPeriodSec() { return this.warmUpPeriodSec; } public void setWarmUpPeriodSec(Integer warmUpPeriodSec) { this.warmUpPeriodSec = warmUpPeriodSec; } public Boolean getClusterMode() { return this.clusterMode; } public void setClusterMode(Boolean clusterMode) { this.clusterMode = clusterMode; } public Integer getThresholdMode() { return this.thresholdMode; } public void setThresholdMode(Integer thresholdMode) { this.thresholdMode = thresholdMode; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } } } @Override public ListFlowRulesOfAppResponse getInstance(UnmarshallerContext context) { return ListFlowRulesOfAppResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/ListFlowRulesOfResourceRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class ListFlowRulesOfResourceRequest extends RpcAcsRequest<ListFlowRulesOfResourceResponse> { private String resource; private String ahasRegionId; private String appName; private String namespace; private Integer pageSize; private Integer pageIndex; public ListFlowRulesOfResourceRequest() { super("ahas-openapi", "2019-09-01", "ListFlowRulesOfResource", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; if(resource != null){ putQueryParameter("Resource", resource); } } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Integer getPageIndex() { return this.pageIndex; } public void setPageIndex(Integer pageIndex) { this.pageIndex = pageIndex; if(pageIndex != null){ putQueryParameter("PageIndex", pageIndex.toString()); } } @Override public Class<ListFlowRulesOfResourceResponse> getResponseClass() { return ListFlowRulesOfResourceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/ListFlowRulesOfResourceResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.ListFlowRulesOfResourceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListFlowRulesOfResourceResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 Integer pageIndex; private Integer totalPage; private Integer pageSize; private Integer totalCount; private List<DatasItem> datas; public Integer getPageIndex() { return this.pageIndex; } public void setPageIndex(Integer pageIndex) { this.pageIndex = pageIndex; } public Integer getTotalPage() { return this.totalPage; } public void setTotalPage(Integer totalPage) { this.totalPage = totalPage; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<DatasItem> getDatas() { return this.datas; } public void setDatas(List<DatasItem> datas) { this.datas = datas; } public static class DatasItem { private String refResource; private Integer clusterFallbackThreshold; private String namespace; private String limitOrigin; private Integer statDurationMs; private Integer clusterThresholdType; private Long ruleId; private Integer relationStrategy; private String appName; private String resource; private Float clusterEstimatedMaxQps; private Integer controlBehavior; private Integer maxQueueingTimeMs; private Integer clusterFallbackStrategy; private Integer warmUpPeriodSec; private Boolean clusterMode; private Integer thresholdMode; private Float threshold; private Boolean enable; public String getRefResource() { return this.refResource; } public void setRefResource(String refResource) { this.refResource = refResource; } public Integer getClusterFallbackThreshold() { return this.clusterFallbackThreshold; } public void setClusterFallbackThreshold(Integer clusterFallbackThreshold) { this.clusterFallbackThreshold = clusterFallbackThreshold; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public String getLimitOrigin() { return this.limitOrigin; } public void setLimitOrigin(String limitOrigin) { this.limitOrigin = limitOrigin; } public Integer getStatDurationMs() { return this.statDurationMs; } public void setStatDurationMs(Integer statDurationMs) { this.statDurationMs = statDurationMs; } public Integer getClusterThresholdType() { return this.clusterThresholdType; } public void setClusterThresholdType(Integer clusterThresholdType) { this.clusterThresholdType = clusterThresholdType; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public Integer getRelationStrategy() { return this.relationStrategy; } public void setRelationStrategy(Integer relationStrategy) { this.relationStrategy = relationStrategy; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public Float getClusterEstimatedMaxQps() { return this.clusterEstimatedMaxQps; } public void setClusterEstimatedMaxQps(Float clusterEstimatedMaxQps) { this.clusterEstimatedMaxQps = clusterEstimatedMaxQps; } public Integer getControlBehavior() { return this.controlBehavior; } public void setControlBehavior(Integer controlBehavior) { this.controlBehavior = controlBehavior; } public Integer getMaxQueueingTimeMs() { return this.maxQueueingTimeMs; } public void setMaxQueueingTimeMs(Integer maxQueueingTimeMs) { this.maxQueueingTimeMs = maxQueueingTimeMs; } public Integer getClusterFallbackStrategy() { return this.clusterFallbackStrategy; } public void setClusterFallbackStrategy(Integer clusterFallbackStrategy) { this.clusterFallbackStrategy = clusterFallbackStrategy; } public Integer getWarmUpPeriodSec() { return this.warmUpPeriodSec; } public void setWarmUpPeriodSec(Integer warmUpPeriodSec) { this.warmUpPeriodSec = warmUpPeriodSec; } public Boolean getClusterMode() { return this.clusterMode; } public void setClusterMode(Boolean clusterMode) { this.clusterMode = clusterMode; } public Integer getThresholdMode() { return this.thresholdMode; } public void setThresholdMode(Integer thresholdMode) { this.thresholdMode = thresholdMode; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } } } @Override public ListFlowRulesOfResourceResponse getInstance(UnmarshallerContext context) { return ListFlowRulesOfResourceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/ListHotParamRulesOfAppRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class ListHotParamRulesOfAppRequest extends RpcAcsRequest<ListHotParamRulesOfAppResponse> { private String ahasRegionId; private String appName; private String namespace; private Integer pageSize; private Integer pageIndex; public ListHotParamRulesOfAppRequest() { super("ahas-openapi", "2019-09-01", "ListHotParamRulesOfApp", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Integer getPageIndex() { return this.pageIndex; } public void setPageIndex(Integer pageIndex) { this.pageIndex = pageIndex; if(pageIndex != null){ putQueryParameter("PageIndex", pageIndex.toString()); } } @Override public Class<ListHotParamRulesOfAppResponse> getResponseClass() { return ListHotParamRulesOfAppResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/ListHotParamRulesOfAppResponse.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.ahas_openapi.model.v20190901; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.ahas_openapi.transform.v20190901.ListHotParamRulesOfAppResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListHotParamRulesOfAppResponse extends AcsResponse { private String message; private String requestId; private String code; private Boolean success; private Data data; 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 getCode() { return this.code; } public void setCode(String code) { this.code = code; } 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 Integer pageIndex; private Integer totalPage; private Integer pageSize; private Integer totalCount; private List<DatasItem> datas; public Integer getPageIndex() { return this.pageIndex; } public void setPageIndex(Integer pageIndex) { this.pageIndex = pageIndex; } public Integer getTotalPage() { return this.totalPage; } public void setTotalPage(Integer totalPage) { this.totalPage = totalPage; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<DatasItem> getDatas() { return this.datas; } public void setDatas(List<DatasItem> datas) { this.datas = datas; } public static class DatasItem { private Integer paramIdx; private String namespace; private Long statDurationSec; private Integer burstCount; private Long ruleId; private String resource; private String appName; private Integer maxQueueingTimeMs; private Integer controlBehavior; private Integer metricType; private Float threshold; private Boolean enable; private List<ParamFlowItemListItem> paramFlowItemList; public Integer getParamIdx() { return this.paramIdx; } public void setParamIdx(Integer paramIdx) { this.paramIdx = paramIdx; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public Long getStatDurationSec() { return this.statDurationSec; } public void setStatDurationSec(Long statDurationSec) { this.statDurationSec = statDurationSec; } public Integer getBurstCount() { return this.burstCount; } public void setBurstCount(Integer burstCount) { this.burstCount = burstCount; } public Long getRuleId() { return this.ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public Integer getMaxQueueingTimeMs() { return this.maxQueueingTimeMs; } public void setMaxQueueingTimeMs(Integer maxQueueingTimeMs) { this.maxQueueingTimeMs = maxQueueingTimeMs; } public Integer getControlBehavior() { return this.controlBehavior; } public void setControlBehavior(Integer controlBehavior) { this.controlBehavior = controlBehavior; } public Integer getMetricType() { return this.metricType; } public void setMetricType(Integer metricType) { this.metricType = metricType; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } public List<ParamFlowItemListItem> getParamFlowItemList() { return this.paramFlowItemList; } public void setParamFlowItemList(List<ParamFlowItemListItem> paramFlowItemList) { this.paramFlowItemList = paramFlowItemList; } public static class ParamFlowItemListItem { private String itemValue; private String itemType; private Float threshold; public String getItemValue() { return this.itemValue; } public void setItemValue(String itemValue) { this.itemValue = itemValue; } public String getItemType() { return this.itemType; } public void setItemType(String itemType) { this.itemType = itemType; } public Float getThreshold() { return this.threshold; } public void setThreshold(Float threshold) { this.threshold = threshold; } } } } @Override public ListHotParamRulesOfAppResponse getInstance(UnmarshallerContext context) { return ListHotParamRulesOfAppResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model
java-sources/com/aliyun/aliyun-java-sdk-ahas-openapi/1.0.6/com/aliyuncs/ahas_openapi/model/v20190901/ListHotParamRulesOfResourceRequest.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.ahas_openapi.model.v20190901; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.ahas_openapi.Endpoint; /** * @author auto create * @version */ public class ListHotParamRulesOfResourceRequest extends RpcAcsRequest<ListHotParamRulesOfResourceResponse> { private String resource; private String ahasRegionId; private String appName; private String namespace; private Integer pageSize; private Integer pageIndex; public ListHotParamRulesOfResourceRequest() { super("ahas-openapi", "2019-09-01", "ListHotParamRulesOfResource", "ahas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; if(resource != null){ putQueryParameter("Resource", resource); } } public String getAhasRegionId() { return this.ahasRegionId; } public void setAhasRegionId(String ahasRegionId) { this.ahasRegionId = ahasRegionId; if(ahasRegionId != null){ putQueryParameter("AhasRegionId", ahasRegionId); } } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Integer getPageIndex() { return this.pageIndex; } public void setPageIndex(Integer pageIndex) { this.pageIndex = pageIndex; if(pageIndex != null){ putQueryParameter("PageIndex", pageIndex.toString()); } } @Override public Class<ListHotParamRulesOfResourceResponse> getResponseClass() { return ListHotParamRulesOfResourceResponse.class; } }