index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetAppJVMConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetAppJVMConfigRequest extends RpcAcsRequest<GetAppJVMConfigResponse> { private Long endTime; private String pid; private Long startTime; public GetAppJVMConfigRequest() { super("ARMS", "2019-08-08", "GetAppJVMConfig", "arms"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.GET); 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 String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime.toString()); } } @Override public Class<GetAppJVMConfigResponse> getResponseClass() { return GetAppJVMConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetAppJVMConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetAppJVMConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAppJVMConfigResponse extends AcsResponse { private String requestId; private Integer code; private String message; private Boolean success; private List<JvmInfoListItem> jvmInfoList; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public List<JvmInfoListItem> getJvmInfoList() { return this.jvmInfoList; } public void setJvmInfoList(List<JvmInfoListItem> jvmInfoList) { this.jvmInfoList = jvmInfoList; } public static class JvmInfoListItem { private String pid; private String vmArgs; private String hostName; private String ip; private String agentVersion; private String procId; public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; } public String getVmArgs() { return this.vmArgs; } public void setVmArgs(String vmArgs) { this.vmArgs = vmArgs; } public String getHostName() { return this.hostName; } public void setHostName(String hostName) { this.hostName = hostName; } public String getIp() { return this.ip; } public void setIp(String ip) { this.ip = ip; } public String getAgentVersion() { return this.agentVersion; } public void setAgentVersion(String agentVersion) { this.agentVersion = agentVersion; } public String getProcId() { return this.procId; } public void setProcId(String procId) { this.procId = procId; } } @Override public GetAppJVMConfigResponse getInstance(UnmarshallerContext context) { return GetAppJVMConfigResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetAuthTokenRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetAuthTokenRequest extends RpcAcsRequest<GetAuthTokenResponse> { private String clusterId; public GetAuthTokenRequest() { super("ARMS", "2019-08-08", "GetAuthToken", "arms"); 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 getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<GetAuthTokenResponse> getResponseClass() { return GetAuthTokenResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetAuthTokenResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetAuthTokenResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAuthTokenResponse extends AcsResponse { private String data; private String requestId; private Integer code; private String message; private Boolean success; public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } @Override public GetAuthTokenResponse getInstance(UnmarshallerContext context) { return GetAuthTokenResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetCloudClusterAllUrlRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetCloudClusterAllUrlRequest extends RpcAcsRequest<GetCloudClusterAllUrlResponse> { private String clusterId; public GetCloudClusterAllUrlRequest() { super("ARMS", "2019-08-08", "GetCloudClusterAllUrl", "arms"); 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 getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<GetCloudClusterAllUrlResponse> getResponseClass() { return GetCloudClusterAllUrlResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetCloudClusterAllUrlResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetCloudClusterAllUrlResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetCloudClusterAllUrlResponse extends AcsResponse { private String requestId; private Integer code; private String message; private Boolean success; private List<DataItem> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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 productCode; private String region; private RemoteUrl remoteUrl; public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public RemoteUrl getRemoteUrl() { return this.remoteUrl; } public void setRemoteUrl(RemoteUrl remoteUrl) { this.remoteUrl = remoteUrl; } public static class RemoteUrl { private String remoteWriteUrl; private String internetRemoteWriteUrl; private String remoteReadUrl; private String internetRemoteReadUrl; private String grafanaUrl; private String internetGrafanaUrl; private String internetPushGatewayUrl; private String pushGatewayUrl; private Boolean authToken; private String token; public String getRemoteWriteUrl() { return this.remoteWriteUrl; } public void setRemoteWriteUrl(String remoteWriteUrl) { this.remoteWriteUrl = remoteWriteUrl; } public String getInternetRemoteWriteUrl() { return this.internetRemoteWriteUrl; } public void setInternetRemoteWriteUrl(String internetRemoteWriteUrl) { this.internetRemoteWriteUrl = internetRemoteWriteUrl; } public String getRemoteReadUrl() { return this.remoteReadUrl; } public void setRemoteReadUrl(String remoteReadUrl) { this.remoteReadUrl = remoteReadUrl; } public String getInternetRemoteReadUrl() { return this.internetRemoteReadUrl; } public void setInternetRemoteReadUrl(String internetRemoteReadUrl) { this.internetRemoteReadUrl = internetRemoteReadUrl; } public String getGrafanaUrl() { return this.grafanaUrl; } public void setGrafanaUrl(String grafanaUrl) { this.grafanaUrl = grafanaUrl; } public String getInternetGrafanaUrl() { return this.internetGrafanaUrl; } public void setInternetGrafanaUrl(String internetGrafanaUrl) { this.internetGrafanaUrl = internetGrafanaUrl; } public String getInternetPushGatewayUrl() { return this.internetPushGatewayUrl; } public void setInternetPushGatewayUrl(String internetPushGatewayUrl) { this.internetPushGatewayUrl = internetPushGatewayUrl; } public String getPushGatewayUrl() { return this.pushGatewayUrl; } public void setPushGatewayUrl(String pushGatewayUrl) { this.pushGatewayUrl = pushGatewayUrl; } public Boolean getAuthToken() { return this.authToken; } public void setAuthToken(Boolean authToken) { this.authToken = authToken; } public String getToken() { return this.token; } public void setToken(String token) { this.token = token; } } } @Override public GetCloudClusterAllUrlResponse getInstance(UnmarshallerContext context) { return GetCloudClusterAllUrlResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetClusterAllUrlRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetClusterAllUrlRequest extends RpcAcsRequest<GetClusterAllUrlResponse> { private String clusterId; public GetClusterAllUrlRequest() { super("ARMS", "2019-08-08", "GetClusterAllUrl", "arms"); 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 getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<GetClusterAllUrlResponse> getResponseClass() { return GetClusterAllUrlResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetClusterAllUrlResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetClusterAllUrlResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetClusterAllUrlResponse extends AcsResponse { private String data; private String requestId; private Integer code; private String message; private Boolean success; public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } @Override public GetClusterAllUrlResponse getInstance(UnmarshallerContext context) { return GetClusterAllUrlResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetCommercialStatusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetCommercialStatusRequest extends RpcAcsRequest<GetCommercialStatusResponse> { private String commodityCode; public GetCommercialStatusRequest() { super("ARMS", "2019-08-08", "GetCommercialStatus", "arms"); 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 getCommodityCode() { return this.commodityCode; } public void setCommodityCode(String commodityCode) { this.commodityCode = commodityCode; if(commodityCode != null){ putQueryParameter("CommodityCode", commodityCode); } } @Override public Class<GetCommercialStatusResponse> getResponseClass() { return GetCommercialStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetCommercialStatusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetCommercialStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetCommercialStatusResponse extends AcsResponse { private String requestId; private UserAndCommodityStatus userAndCommodityStatus; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public UserAndCommodityStatus getUserAndCommodityStatus() { return this.userAndCommodityStatus; } public void setUserAndCommodityStatus(UserAndCommodityStatus userAndCommodityStatus) { this.userAndCommodityStatus = userAndCommodityStatus; } public static class UserAndCommodityStatus { private String status; private Long freeDays; private Boolean basic; private String chargeType; private String lable; private Map<Object,Object> extraInfo; private Boolean enable; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public Long getFreeDays() { return this.freeDays; } public void setFreeDays(Long freeDays) { this.freeDays = freeDays; } public Boolean getBasic() { return this.basic; } public void setBasic(Boolean basic) { this.basic = basic; } public String getChargeType() { return this.chargeType; } public void setChargeType(String chargeType) { this.chargeType = chargeType; } public String getLable() { return this.lable; } public void setLable(String lable) { this.lable = lable; } public Map<Object,Object> getExtraInfo() { return this.extraInfo; } public void setExtraInfo(Map<Object,Object> extraInfo) { this.extraInfo = extraInfo; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } } @Override public GetCommercialStatusResponse getInstance(UnmarshallerContext context) { return GetCommercialStatusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetExploreUrlRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetExploreUrlRequest extends RpcAcsRequest<GetExploreUrlResponse> { private String expression; private String clusterId; private String type; public GetExploreUrlRequest() { super("ARMS", "2019-08-08", "GetExploreUrl", "arms"); 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 getExpression() { return this.expression; } public void setExpression(String expression) { this.expression = expression; if(expression != null){ putQueryParameter("Expression", expression); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } @Override public Class<GetExploreUrlResponse> getResponseClass() { return GetExploreUrlResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetExploreUrlResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetExploreUrlResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetExploreUrlResponse extends AcsResponse { private String data; private String requestId; private Integer code; private String message; private Boolean success; public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } @Override public GetExploreUrlResponse getInstance(UnmarshallerContext context) { return GetExploreUrlResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetGrafanaWorkspaceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetGrafanaWorkspaceRequest extends RpcAcsRequest<GetGrafanaWorkspaceResponse> { private String grafanaWorkspaceId; private String aliyunLang; public GetGrafanaWorkspaceRequest() { super("ARMS", "2019-08-08", "GetGrafanaWorkspace", "arms"); 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 getGrafanaWorkspaceId() { return this.grafanaWorkspaceId; } public void setGrafanaWorkspaceId(String grafanaWorkspaceId) { this.grafanaWorkspaceId = grafanaWorkspaceId; if(grafanaWorkspaceId != null){ putQueryParameter("GrafanaWorkspaceId", grafanaWorkspaceId); } } public String getAliyunLang() { return this.aliyunLang; } public void setAliyunLang(String aliyunLang) { this.aliyunLang = aliyunLang; if(aliyunLang != null){ putQueryParameter("AliyunLang", aliyunLang); } } @Override public Class<GetGrafanaWorkspaceResponse> getResponseClass() { return GetGrafanaWorkspaceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetGrafanaWorkspaceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetGrafanaWorkspaceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetGrafanaWorkspaceResponse extends AcsResponse { private String requestId; private String message; private Integer code; private Boolean success; private String traceId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getTraceId() { return this.traceId; } public void setTraceId(String traceId) { this.traceId = traceId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String status; private String description; private String grafanaWorkspaceEdition; private Float endTime; private String grafanaWorkspaceId; private String grafanaWorkspaceIp; private String snatIp; private String grafanaWorkspaceDomain; private String grafanaWorkspaceDomainStatus; private Boolean commercial; private String grafanaWorkspaceName; private String grafanaVersion; private Float gmtCreate; private String userId; private String maxAccount; private String regionId; private String protocol; private Boolean shareSynced; private String ntmId; private String personalDomain; private String personalDomainPrefix; private String resourceGroupId; private String deployType; private String privateIp; private String privateDomain; private List<TagsItem> tags; private List<String> upgradeVersion; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getGrafanaWorkspaceEdition() { return this.grafanaWorkspaceEdition; } public void setGrafanaWorkspaceEdition(String grafanaWorkspaceEdition) { this.grafanaWorkspaceEdition = grafanaWorkspaceEdition; } public Float getEndTime() { return this.endTime; } public void setEndTime(Float endTime) { this.endTime = endTime; } public String getGrafanaWorkspaceId() { return this.grafanaWorkspaceId; } public void setGrafanaWorkspaceId(String grafanaWorkspaceId) { this.grafanaWorkspaceId = grafanaWorkspaceId; } public String getGrafanaWorkspaceIp() { return this.grafanaWorkspaceIp; } public void setGrafanaWorkspaceIp(String grafanaWorkspaceIp) { this.grafanaWorkspaceIp = grafanaWorkspaceIp; } public String getSnatIp() { return this.snatIp; } public void setSnatIp(String snatIp) { this.snatIp = snatIp; } public String getGrafanaWorkspaceDomain() { return this.grafanaWorkspaceDomain; } public void setGrafanaWorkspaceDomain(String grafanaWorkspaceDomain) { this.grafanaWorkspaceDomain = grafanaWorkspaceDomain; } public String getGrafanaWorkspaceDomainStatus() { return this.grafanaWorkspaceDomainStatus; } public void setGrafanaWorkspaceDomainStatus(String grafanaWorkspaceDomainStatus) { this.grafanaWorkspaceDomainStatus = grafanaWorkspaceDomainStatus; } public Boolean getCommercial() { return this.commercial; } public void setCommercial(Boolean commercial) { this.commercial = commercial; } public String getGrafanaWorkspaceName() { return this.grafanaWorkspaceName; } public void setGrafanaWorkspaceName(String grafanaWorkspaceName) { this.grafanaWorkspaceName = grafanaWorkspaceName; } public String getGrafanaVersion() { return this.grafanaVersion; } public void setGrafanaVersion(String grafanaVersion) { this.grafanaVersion = grafanaVersion; } public Float getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(Float gmtCreate) { this.gmtCreate = gmtCreate; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public String getMaxAccount() { return this.maxAccount; } public void setMaxAccount(String maxAccount) { this.maxAccount = maxAccount; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getBizProtocol() { return this.protocol; } public void setBizProtocol(String protocol) { this.protocol = protocol; } public Boolean getShareSynced() { return this.shareSynced; } public void setShareSynced(Boolean shareSynced) { this.shareSynced = shareSynced; } public String getNtmId() { return this.ntmId; } public void setNtmId(String ntmId) { this.ntmId = ntmId; } public String getPersonalDomain() { return this.personalDomain; } public void setPersonalDomain(String personalDomain) { this.personalDomain = personalDomain; } public String getPersonalDomainPrefix() { return this.personalDomainPrefix; } public void setPersonalDomainPrefix(String personalDomainPrefix) { this.personalDomainPrefix = personalDomainPrefix; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } public String getDeployType() { return this.deployType; } public void setDeployType(String deployType) { this.deployType = deployType; } public String getPrivateIp() { return this.privateIp; } public void setPrivateIp(String privateIp) { this.privateIp = privateIp; } public String getPrivateDomain() { return this.privateDomain; } public void setPrivateDomain(String privateDomain) { this.privateDomain = privateDomain; } public List<TagsItem> getTags() { return this.tags; } public void setTags(List<TagsItem> tags) { this.tags = tags; } public List<String> getUpgradeVersion() { return this.upgradeVersion; } public void setUpgradeVersion(List<String> upgradeVersion) { this.upgradeVersion = upgradeVersion; } public static class TagsItem { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } @Override public GetGrafanaWorkspaceResponse getInstance(UnmarshallerContext context) { return GetGrafanaWorkspaceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetIntegrationStateRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetIntegrationStateRequest extends RpcAcsRequest<GetIntegrationStateResponse> { private String integration; private String clusterId; public GetIntegrationStateRequest() { super("ARMS", "2019-08-08", "GetIntegrationState", "arms"); 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 getIntegration() { return this.integration; } public void setIntegration(String integration) { this.integration = integration; if(integration != null){ putQueryParameter("Integration", integration); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<GetIntegrationStateResponse> getResponseClass() { return GetIntegrationStateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetIntegrationStateResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetIntegrationStateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetIntegrationStateResponse extends AcsResponse { private String requestId; private Boolean state; private Integer code; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getState() { return this.state; } public void setState(Boolean state) { this.state = state; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public GetIntegrationStateResponse getInstance(UnmarshallerContext context) { return GetIntegrationStateResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetManagedPrometheusStatusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetManagedPrometheusStatusRequest extends RpcAcsRequest<GetManagedPrometheusStatusResponse> { private String clusterId; private String clusterType; private String resourceGroupId; private String vpcId; public GetManagedPrometheusStatusRequest() { super("ARMS", "2019-08-08", "GetManagedPrometheusStatus", "arms"); 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 getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public String getClusterType() { return this.clusterType; } public void setClusterType(String clusterType) { this.clusterType = clusterType; if(clusterType != null){ putQueryParameter("ClusterType", clusterType); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public String getVpcId() { return this.vpcId; } public void setVpcId(String vpcId) { this.vpcId = vpcId; if(vpcId != null){ putQueryParameter("VpcId", vpcId); } } @Override public Class<GetManagedPrometheusStatusResponse> getResponseClass() { return GetManagedPrometheusStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetManagedPrometheusStatusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetManagedPrometheusStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetManagedPrometheusStatusResponse extends AcsResponse { private String requestId; private String data; private Boolean success; private String message; private Integer code; 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 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 Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } @Override public GetManagedPrometheusStatusResponse getInstance(UnmarshallerContext context) { return GetManagedPrometheusStatusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetMultipleTraceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetMultipleTraceRequest extends RpcAcsRequest<GetMultipleTraceResponse> { private List<String> traceIDss; private Long pageSize; private Long endTime; private Long startTime; private Long pageNumber; public GetMultipleTraceRequest() { super("ARMS", "2019-08-08", "GetMultipleTrace", "arms"); 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 List<String> getTraceIDss() { return this.traceIDss; } public void setTraceIDss(List<String> traceIDss) { this.traceIDss = traceIDss; if (traceIDss != null) { for (int i = 0; i < traceIDss.size(); i++) { putQueryParameter("TraceIDs." + (i + 1) , traceIDss.get(i)); } } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } 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 Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } @Override public Class<GetMultipleTraceResponse> getResponseClass() { return GetMultipleTraceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetMultipleTraceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetMultipleTraceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetMultipleTraceResponse extends AcsResponse { private String requestId; private List<MultiCallChainInfo> multiCallChainInfos; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<MultiCallChainInfo> getMultiCallChainInfos() { return this.multiCallChainInfos; } public void setMultiCallChainInfos(List<MultiCallChainInfo> multiCallChainInfos) { this.multiCallChainInfos = multiCallChainInfos; } public static class MultiCallChainInfo { private String traceID; private List<Span> spans; public String getTraceID() { return this.traceID; } public void setTraceID(String traceID) { this.traceID = traceID; } public List<Span> getSpans() { return this.spans; } public void setSpans(List<Span> spans) { this.spans = spans; } public static class Span { private String spanId; private String operationName; private String resultCode; private Long timestamp; private Integer rpcType; private String serviceIp; private Boolean haveStack; private String parentSpanId; private Long duration; private String rpcId; private String serviceName; private String traceID; private List<TagEntry> tagEntryList; private List<LogEvent> logEventList; public String getSpanId() { return this.spanId; } public void setSpanId(String spanId) { this.spanId = spanId; } public String getOperationName() { return this.operationName; } public void setOperationName(String operationName) { this.operationName = operationName; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public Long getTimestamp() { return this.timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } public Integer getRpcType() { return this.rpcType; } public void setRpcType(Integer rpcType) { this.rpcType = rpcType; } public String getServiceIp() { return this.serviceIp; } public void setServiceIp(String serviceIp) { this.serviceIp = serviceIp; } public Boolean getHaveStack() { return this.haveStack; } public void setHaveStack(Boolean haveStack) { this.haveStack = haveStack; } public String getParentSpanId() { return this.parentSpanId; } public void setParentSpanId(String parentSpanId) { this.parentSpanId = parentSpanId; } public Long getDuration() { return this.duration; } public void setDuration(Long duration) { this.duration = duration; } public String getRpcId() { return this.rpcId; } public void setRpcId(String rpcId) { this.rpcId = rpcId; } public String getServiceName() { return this.serviceName; } public void setServiceName(String serviceName) { this.serviceName = serviceName; } public String getTraceID() { return this.traceID; } public void setTraceID(String traceID) { this.traceID = traceID; } public List<TagEntry> getTagEntryList() { return this.tagEntryList; } public void setTagEntryList(List<TagEntry> tagEntryList) { this.tagEntryList = tagEntryList; } public List<LogEvent> getLogEventList() { return this.logEventList; } public void setLogEventList(List<LogEvent> logEventList) { this.logEventList = logEventList; } public static class TagEntry { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } public static class LogEvent { private Long timestamp; private List<TagEntry2> tagEntryList1; public Long getTimestamp() { return this.timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } public List<TagEntry2> getTagEntryList1() { return this.tagEntryList1; } public void setTagEntryList1(List<TagEntry2> tagEntryList1) { this.tagEntryList1 = tagEntryList1; } public static class TagEntry2 { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } } } @Override public GetMultipleTraceResponse getInstance(UnmarshallerContext context) { return GetMultipleTraceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetOnCallSchedulesDetailRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetOnCallSchedulesDetailRequest extends RpcAcsRequest<GetOnCallSchedulesDetailResponse> { private String endTime; private Long id; private String startTime; public GetOnCallSchedulesDetailRequest() { super("ARMS", "2019-08-08", "GetOnCallSchedulesDetail", "arms"); setMethod(MethodType.GET); 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 Long getId() { return this.id; } public void setId(Long id) { this.id = id; if(id != null){ putQueryParameter("Id", id.toString()); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime); } } @Override public Class<GetOnCallSchedulesDetailResponse> getResponseClass() { return GetOnCallSchedulesDetailResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetOnCallSchedulesDetailResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetOnCallSchedulesDetailResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetOnCallSchedulesDetailResponse extends AcsResponse { @Override public GetOnCallSchedulesDetailResponse getInstance(UnmarshallerContext context) { return GetOnCallSchedulesDetailResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetPrometheusApiTokenRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetPrometheusApiTokenRequest extends RpcAcsRequest<GetPrometheusApiTokenResponse> { public GetPrometheusApiTokenRequest() { super("ARMS", "2019-08-08", "GetPrometheusApiToken", "arms"); 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) {} } @Override public Class<GetPrometheusApiTokenResponse> getResponseClass() { return GetPrometheusApiTokenResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetPrometheusApiTokenResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetPrometheusApiTokenResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetPrometheusApiTokenResponse extends AcsResponse { private String token; private String requestId; public String getToken() { return this.token; } public void setToken(String token) { this.token = token; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public GetPrometheusApiTokenResponse getInstance(UnmarshallerContext context) { return GetPrometheusApiTokenResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetPrometheusGlobalViewRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetPrometheusGlobalViewRequest extends RpcAcsRequest<GetPrometheusGlobalViewResponse> { private String globalViewClusterId; public GetPrometheusGlobalViewRequest() { super("ARMS", "2019-08-08", "GetPrometheusGlobalView", "arms"); 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 getGlobalViewClusterId() { return this.globalViewClusterId; } public void setGlobalViewClusterId(String globalViewClusterId) { this.globalViewClusterId = globalViewClusterId; if(globalViewClusterId != null){ putQueryParameter("GlobalViewClusterId", globalViewClusterId); } } @Override public Class<GetPrometheusGlobalViewResponse> getResponseClass() { return GetPrometheusGlobalViewResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetPrometheusGlobalViewResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetPrometheusGlobalViewResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetPrometheusGlobalViewResponse extends AcsResponse { private String data; private String requestId; private Integer code; private String message; public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public GetPrometheusGlobalViewResponse getInstance(UnmarshallerContext context) { return GetPrometheusGlobalViewResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetPrometheusInstanceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetPrometheusInstanceRequest extends RpcAcsRequest<GetPrometheusInstanceResponse> { private String clusterId; public GetPrometheusInstanceRequest() { super("ARMS", "2019-08-08", "GetPrometheusInstance", "arms"); 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 getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<GetPrometheusInstanceResponse> getResponseClass() { return GetPrometheusInstanceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetPrometheusInstanceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetPrometheusInstanceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetPrometheusInstanceResponse extends AcsResponse { private String requestId; private String message; private Integer code; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String clusterId; private String regionId; private String userId; private String clusterName; private String clusterType; private String vpcId; private String vSwitchId; private String securityGroupId; private String subClustersJson; private String remoteReadIntraUrl; private String remoteReadInterUrl; private String remoteWriteIntraUrl; private String remoteWriteInterUrl; private String pushGatewayIntraUrl; private String pushGatewayInterUrl; private String httpApiIntraUrl; private String httpApiInterUrl; private String authToken; private String accessType; private String paymentType; private Integer storageDuration; private Integer archiveDuration; private String grafanaInstanceId; private String resourceGroupId; private String resourceType; private String enableAuthToken; private Boolean enableAuthFreeRead; private String authFreeReadPolicy; private Boolean enableAuthFreeWrite; private String authFreeWritePolicy; private String product; private String dbInstanceStatus; private String version; private String paymentTypeUpdateTime; private Map<Object,Object> extraInfo; private List<TagsItem> tags; private List<String> supportAuthTypes; public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public String getClusterName() { return this.clusterName; } public void setClusterName(String clusterName) { this.clusterName = clusterName; } public String getClusterType() { return this.clusterType; } public void setClusterType(String clusterType) { this.clusterType = clusterType; } public String getVpcId() { return this.vpcId; } public void setVpcId(String vpcId) { this.vpcId = vpcId; } public String getVSwitchId() { return this.vSwitchId; } public void setVSwitchId(String vSwitchId) { this.vSwitchId = vSwitchId; } public String getSecurityGroupId() { return this.securityGroupId; } public void setSecurityGroupId(String securityGroupId) { this.securityGroupId = securityGroupId; } public String getSubClustersJson() { return this.subClustersJson; } public void setSubClustersJson(String subClustersJson) { this.subClustersJson = subClustersJson; } public String getRemoteReadIntraUrl() { return this.remoteReadIntraUrl; } public void setRemoteReadIntraUrl(String remoteReadIntraUrl) { this.remoteReadIntraUrl = remoteReadIntraUrl; } public String getRemoteReadInterUrl() { return this.remoteReadInterUrl; } public void setRemoteReadInterUrl(String remoteReadInterUrl) { this.remoteReadInterUrl = remoteReadInterUrl; } public String getRemoteWriteIntraUrl() { return this.remoteWriteIntraUrl; } public void setRemoteWriteIntraUrl(String remoteWriteIntraUrl) { this.remoteWriteIntraUrl = remoteWriteIntraUrl; } public String getRemoteWriteInterUrl() { return this.remoteWriteInterUrl; } public void setRemoteWriteInterUrl(String remoteWriteInterUrl) { this.remoteWriteInterUrl = remoteWriteInterUrl; } public String getPushGatewayIntraUrl() { return this.pushGatewayIntraUrl; } public void setPushGatewayIntraUrl(String pushGatewayIntraUrl) { this.pushGatewayIntraUrl = pushGatewayIntraUrl; } public String getPushGatewayInterUrl() { return this.pushGatewayInterUrl; } public void setPushGatewayInterUrl(String pushGatewayInterUrl) { this.pushGatewayInterUrl = pushGatewayInterUrl; } public String getHttpApiIntraUrl() { return this.httpApiIntraUrl; } public void setHttpApiIntraUrl(String httpApiIntraUrl) { this.httpApiIntraUrl = httpApiIntraUrl; } public String getHttpApiInterUrl() { return this.httpApiInterUrl; } public void setHttpApiInterUrl(String httpApiInterUrl) { this.httpApiInterUrl = httpApiInterUrl; } public String getAuthToken() { return this.authToken; } public void setAuthToken(String authToken) { this.authToken = authToken; } public String getAccessType() { return this.accessType; } public void setAccessType(String accessType) { this.accessType = accessType; } public String getPaymentType() { return this.paymentType; } public void setPaymentType(String paymentType) { this.paymentType = paymentType; } public Integer getStorageDuration() { return this.storageDuration; } public void setStorageDuration(Integer storageDuration) { this.storageDuration = storageDuration; } public Integer getArchiveDuration() { return this.archiveDuration; } public void setArchiveDuration(Integer archiveDuration) { this.archiveDuration = archiveDuration; } public String getGrafanaInstanceId() { return this.grafanaInstanceId; } public void setGrafanaInstanceId(String grafanaInstanceId) { this.grafanaInstanceId = grafanaInstanceId; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; } public String getEnableAuthToken() { return this.enableAuthToken; } public void setEnableAuthToken(String enableAuthToken) { this.enableAuthToken = enableAuthToken; } public Boolean getEnableAuthFreeRead() { return this.enableAuthFreeRead; } public void setEnableAuthFreeRead(Boolean enableAuthFreeRead) { this.enableAuthFreeRead = enableAuthFreeRead; } public String getAuthFreeReadPolicy() { return this.authFreeReadPolicy; } public void setAuthFreeReadPolicy(String authFreeReadPolicy) { this.authFreeReadPolicy = authFreeReadPolicy; } public Boolean getEnableAuthFreeWrite() { return this.enableAuthFreeWrite; } public void setEnableAuthFreeWrite(Boolean enableAuthFreeWrite) { this.enableAuthFreeWrite = enableAuthFreeWrite; } public String getAuthFreeWritePolicy() { return this.authFreeWritePolicy; } public void setAuthFreeWritePolicy(String authFreeWritePolicy) { this.authFreeWritePolicy = authFreeWritePolicy; } public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; } public String getDbInstanceStatus() { return this.dbInstanceStatus; } public void setDbInstanceStatus(String dbInstanceStatus) { this.dbInstanceStatus = dbInstanceStatus; } public String getVersion() { return this.version; } public void setVersion(String version) { this.version = version; } public String getPaymentTypeUpdateTime() { return this.paymentTypeUpdateTime; } public void setPaymentTypeUpdateTime(String paymentTypeUpdateTime) { this.paymentTypeUpdateTime = paymentTypeUpdateTime; } public Map<Object,Object> getExtraInfo() { return this.extraInfo; } public void setExtraInfo(Map<Object,Object> extraInfo) { this.extraInfo = extraInfo; } public List<TagsItem> getTags() { return this.tags; } public void setTags(List<TagsItem> tags) { this.tags = tags; } public List<String> getSupportAuthTypes() { return this.supportAuthTypes; } public void setSupportAuthTypes(List<String> supportAuthTypes) { this.supportAuthTypes = supportAuthTypes; } public static class TagsItem { private String tagKey; private String tagValue; public String getTagKey() { return this.tagKey; } public void setTagKey(String tagKey) { this.tagKey = tagKey; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } } } @Override public GetPrometheusInstanceResponse getInstance(UnmarshallerContext context) { return GetPrometheusInstanceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetPrometheusIntegrationRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetPrometheusIntegrationRequest extends RpcAcsRequest<GetPrometheusIntegrationResponse> { private Long instanceId; private String integrationType; private String clusterId; public GetPrometheusIntegrationRequest() { super("ARMS", "2019-08-08", "GetPrometheusIntegration", "arms"); 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 getInstanceId() { return this.instanceId; } public void setInstanceId(Long instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId.toString()); } } public String getIntegrationType() { return this.integrationType; } public void setIntegrationType(String integrationType) { this.integrationType = integrationType; if(integrationType != null){ putQueryParameter("IntegrationType", integrationType); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<GetPrometheusIntegrationResponse> getResponseClass() { return GetPrometheusIntegrationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetPrometheusIntegrationResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetPrometheusIntegrationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetPrometheusIntegrationResponse extends AcsResponse { private String requestId; private Integer code; private String message; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String clusterId; private Long instanceId; private Boolean showDescribe; private Boolean needUpgrade; private String instanceName; private String integrationType; private String exporterType; private String version; private String target; private Boolean canDelete; private Boolean canEditor; private String status; private String describe; private String showLog; private String namespace; private String containerName; private String param; public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; } public Long getInstanceId() { return this.instanceId; } public void setInstanceId(Long instanceId) { this.instanceId = instanceId; } public Boolean getShowDescribe() { return this.showDescribe; } public void setShowDescribe(Boolean showDescribe) { this.showDescribe = showDescribe; } public Boolean getNeedUpgrade() { return this.needUpgrade; } public void setNeedUpgrade(Boolean needUpgrade) { this.needUpgrade = needUpgrade; } public String getInstanceName() { return this.instanceName; } public void setInstanceName(String instanceName) { this.instanceName = instanceName; } public String getIntegrationType() { return this.integrationType; } public void setIntegrationType(String integrationType) { this.integrationType = integrationType; } public String getExporterType() { return this.exporterType; } public void setExporterType(String exporterType) { this.exporterType = exporterType; } public String getVersion() { return this.version; } public void setVersion(String version) { this.version = version; } public String getTarget() { return this.target; } public void setTarget(String target) { this.target = target; } public Boolean getCanDelete() { return this.canDelete; } public void setCanDelete(Boolean canDelete) { this.canDelete = canDelete; } public Boolean getCanEditor() { return this.canEditor; } public void setCanEditor(Boolean canEditor) { this.canEditor = canEditor; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getDescribe() { return this.describe; } public void setDescribe(String describe) { this.describe = describe; } public String getShowLog() { return this.showLog; } public void setShowLog(String showLog) { this.showLog = showLog; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public String getContainerName() { return this.containerName; } public void setContainerName(String containerName) { this.containerName = containerName; } public String getParam() { return this.param; } public void setParam(String param) { this.param = param; } } @Override public GetPrometheusIntegrationResponse getInstance(UnmarshallerContext context) { return GetPrometheusIntegrationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetPrometheusMonitoringRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetPrometheusMonitoringRequest extends RpcAcsRequest<GetPrometheusMonitoringResponse> { private String clusterId; private String type; private String monitoringName; public GetPrometheusMonitoringRequest() { super("ARMS", "2019-08-08", "GetPrometheusMonitoring", "arms"); 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 getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } public String getMonitoringName() { return this.monitoringName; } public void setMonitoringName(String monitoringName) { this.monitoringName = monitoringName; if(monitoringName != null){ putQueryParameter("MonitoringName", monitoringName); } } @Override public Class<GetPrometheusMonitoringResponse> getResponseClass() { return GetPrometheusMonitoringResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetPrometheusMonitoringResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetPrometheusMonitoringResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetPrometheusMonitoringResponse extends AcsResponse { private String requestId; private Integer code; private String message; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String clusterId; private String monitoringName; private String type; private String status; private String configYaml; public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; } public String getMonitoringName() { return this.monitoringName; } public void setMonitoringName(String monitoringName) { this.monitoringName = monitoringName; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getConfigYaml() { return this.configYaml; } public void setConfigYaml(String configYaml) { this.configYaml = configYaml; } } @Override public GetPrometheusMonitoringResponse getInstance(UnmarshallerContext context) { return GetPrometheusMonitoringResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRecordingRuleRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetRecordingRuleRequest extends RpcAcsRequest<GetRecordingRuleResponse> { private String clusterId; public GetRecordingRuleRequest() { super("ARMS", "2019-08-08", "GetRecordingRule", "arms"); 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 getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<GetRecordingRuleResponse> getResponseClass() { return GetRecordingRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRecordingRuleResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetRecordingRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetRecordingRuleResponse extends AcsResponse { private String requestId; private String data; private Integer code; private String 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 Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public GetRecordingRuleResponse getInstance(UnmarshallerContext context) { return GetRecordingRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRetcodeAppByPidRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetRetcodeAppByPidRequest extends RpcAcsRequest<GetRetcodeAppByPidResponse> { private String pid; private List<Tags> tagss; public GetRetcodeAppByPidRequest() { super("ARMS", "2019-08-08", "GetRetcodeAppByPid", "arms"); setMethod(MethodType.GET); 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 getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } public List<Tags> getTagss() { return this.tagss; } public void setTagss(List<Tags> tagss) { this.tagss = tagss; if (tagss != null) { for (int depth1 = 0; depth1 < tagss.size(); depth1++) { putQueryParameter("Tags." + (depth1 + 1) + ".Value" , tagss.get(depth1).getValue()); putQueryParameter("Tags." + (depth1 + 1) + ".Key" , tagss.get(depth1).getKey()); } } } public static class Tags { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<GetRetcodeAppByPidResponse> getResponseClass() { return GetRetcodeAppByPidResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRetcodeAppByPidResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetRetcodeAppByPidResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetRetcodeAppByPidResponse extends AcsResponse { private String requestId; private RetcodeApp retcodeApp; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public RetcodeApp getRetcodeApp() { return this.retcodeApp; } public void setRetcodeApp(RetcodeApp retcodeApp) { this.retcodeApp = retcodeApp; } public static class RetcodeApp { private String appName; private String retcodeAppType; private String appId; private String pid; private String resourceGroupId; private List<TagsItem> tags; public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public String getRetcodeAppType() { return this.retcodeAppType; } public void setRetcodeAppType(String retcodeAppType) { this.retcodeAppType = retcodeAppType; } public String getAppId() { return this.appId; } public void setAppId(String appId) { this.appId = appId; } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } public List<TagsItem> getTags() { return this.tags; } public void setTags(List<TagsItem> tags) { this.tags = tags; } public static class TagsItem { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } @Override public GetRetcodeAppByPidResponse getInstance(UnmarshallerContext context) { return GetRetcodeAppByPidResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRetcodeDataByQueryRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetRetcodeDataByQueryRequest extends RpcAcsRequest<GetRetcodeDataByQueryResponse> { private String query; private String pid; private Long from; private Long to; public GetRetcodeDataByQueryRequest() { super("ARMS", "2019-08-08", "GetRetcodeDataByQuery", "arms"); 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 getQuery() { return this.query; } public void setQuery(String query) { this.query = query; if(query != null){ putQueryParameter("Query", query); } } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } public Long getFrom() { return this.from; } public void setFrom(Long from) { this.from = from; if(from != null){ putQueryParameter("From", from.toString()); } } public Long getTo() { return this.to; } public void setTo(Long to) { this.to = to; if(to != null){ putQueryParameter("To", to.toString()); } } @Override public Class<GetRetcodeDataByQueryResponse> getResponseClass() { return GetRetcodeDataByQueryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRetcodeDataByQueryResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetRetcodeDataByQueryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetRetcodeDataByQueryResponse extends AcsResponse { private String requestId; private String code; private String message; private Boolean success; private String data; 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 String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } @Override public GetRetcodeDataByQueryResponse getInstance(UnmarshallerContext context) { return GetRetcodeDataByQueryResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRetcodeLogstoreRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetRetcodeLogstoreRequest extends RpcAcsRequest<GetRetcodeLogstoreResponse> { private String pid; public GetRetcodeLogstoreRequest() { super("ARMS", "2019-08-08", "GetRetcodeLogstore", "arms"); 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 getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } @Override public Class<GetRetcodeLogstoreResponse> getResponseClass() { return GetRetcodeLogstoreResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRetcodeLogstoreResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetRetcodeLogstoreResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetRetcodeLogstoreResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String status; private String message; private RetcodeSLSConfig retcodeSLSConfig; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public RetcodeSLSConfig getRetcodeSLSConfig() { return this.retcodeSLSConfig; } public void setRetcodeSLSConfig(RetcodeSLSConfig retcodeSLSConfig) { this.retcodeSLSConfig = retcodeSLSConfig; } public static class RetcodeSLSConfig { private String regionId; private String project; private String logstore; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getProject() { return this.project; } public void setProject(String project) { this.project = project; } public String getLogstore() { return this.logstore; } public void setLogstore(String logstore) { this.logstore = logstore; } } } @Override public GetRetcodeLogstoreResponse getInstance(UnmarshallerContext context) { return GetRetcodeLogstoreResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRetcodeShareUrlRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetRetcodeShareUrlRequest extends RpcAcsRequest<GetRetcodeShareUrlResponse> { private String pid; public GetRetcodeShareUrlRequest() { super("ARMS", "2019-08-08", "GetRetcodeShareUrl", "arms"); 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 getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } @Override public Class<GetRetcodeShareUrlResponse> getResponseClass() { return GetRetcodeShareUrlResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRetcodeShareUrlResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetRetcodeShareUrlResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetRetcodeShareUrlResponse extends AcsResponse { private String url; private String requestId; public String getUrl() { return this.url; } public void setUrl(String url) { this.url = url; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public GetRetcodeShareUrlResponse getInstance(UnmarshallerContext context) { return GetRetcodeShareUrlResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRumAppInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetRumAppInfoRequest extends RpcAcsRequest<GetRumAppInfoResponse> { private String workspace; private String appGroup; private String pid; public GetRumAppInfoRequest() { super("ARMS", "2019-08-08", "GetRumAppInfo", "arms"); setProtocol(ProtocolType.HTTPS); 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 getWorkspace() { return this.workspace; } public void setWorkspace(String workspace) { this.workspace = workspace; if(workspace != null){ putQueryParameter("Workspace", workspace); } } public String getAppGroup() { return this.appGroup; } public void setAppGroup(String appGroup) { this.appGroup = appGroup; if(appGroup != null){ putQueryParameter("AppGroup", appGroup); } } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } @Override public Class<GetRumAppInfoResponse> getResponseClass() { return GetRumAppInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRumAppInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetRumAppInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetRumAppInfoResponse extends AcsResponse { @Override public GetRumAppInfoResponse getInstance(UnmarshallerContext context) { return GetRumAppInfoResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRumAppsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.google.gson.Gson; import com.google.gson.annotations.SerializedName; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetRumAppsRequest extends RpcAcsRequest<GetRumAppsResponse> { private String workspace; private String appType; @SerializedName("tags") private List<Tags> tags; private String resourceGroupId; private String appName; private String appGroup; private String appId; public GetRumAppsRequest() { super("ARMS", "2019-08-08", "GetRumApps", "arms"); setProtocol(ProtocolType.HTTPS); 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 getWorkspace() { return this.workspace; } public void setWorkspace(String workspace) { this.workspace = workspace; if(workspace != null){ putQueryParameter("Workspace", workspace); } } public String getAppType() { return this.appType; } public void setAppType(String appType) { this.appType = appType; if(appType != null){ putQueryParameter("AppType", appType); } } public List<Tags> getTags() { return this.tags; } public void setTags(List<Tags> tags) { this.tags = tags; if (tags != null) { putQueryParameter("Tags" , new Gson().toJson(tags)); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } public String getAppGroup() { return this.appGroup; } public void setAppGroup(String appGroup) { this.appGroup = appGroup; if(appGroup != null){ putQueryParameter("AppGroup", appGroup); } } public String getAppId() { return this.appId; } public void setAppId(String appId) { this.appId = appId; if(appId != null){ putQueryParameter("AppId", appId); } } public static class Tags { @SerializedName("Value") private String value; @SerializedName("Key") private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<GetRumAppsResponse> getResponseClass() { return GetRumAppsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRumAppsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetRumAppsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetRumAppsResponse extends AcsResponse { private String requestId; private Integer code; private Boolean success; private String message; private Integer httpStatusCode; private List<AppListItem> appList; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } 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 Integer getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; } public List<AppListItem> getAppList() { return this.appList; } public void setAppList(List<AppListItem> appList) { this.appList = appList; } public static class AppListItem { private Object createTime; private String name; private String pid; private String type; private String nickName; private String regionId; private String appType; private String status; private String resourceGroupId; private Boolean isSubscription; private String description; private String packageName; private String endpoint; private String slsProject; private String slsLogstore; private List<TagsItem> tags; private List<ServiceDomainConfigsItem> serviceDomainConfigs; public Object getCreateTime() { return this.createTime; } public void setCreateTime(Object createTime) { this.createTime = createTime; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getNickName() { return this.nickName; } public void setNickName(String nickName) { this.nickName = nickName; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getAppType() { return this.appType; } public void setAppType(String appType) { this.appType = appType; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } public Boolean getIsSubscription() { return this.isSubscription; } public void setIsSubscription(Boolean isSubscription) { this.isSubscription = isSubscription; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getPackageName() { return this.packageName; } public void setPackageName(String packageName) { this.packageName = packageName; } public String getEndpoint() { return this.endpoint; } public void setEndpoint(String endpoint) { this.endpoint = endpoint; } public String getSlsProject() { return this.slsProject; } public void setSlsProject(String slsProject) { this.slsProject = slsProject; } public String getSlsLogstore() { return this.slsLogstore; } public void setSlsLogstore(String slsLogstore) { this.slsLogstore = slsLogstore; } public List<TagsItem> getTags() { return this.tags; } public void setTags(List<TagsItem> tags) { this.tags = tags; } public List<ServiceDomainConfigsItem> getServiceDomainConfigs() { return this.serviceDomainConfigs; } public void setServiceDomainConfigs(List<ServiceDomainConfigsItem> serviceDomainConfigs) { this.serviceDomainConfigs = serviceDomainConfigs; } public static class TagsItem { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } public static class ServiceDomainConfigsItem { private String domain; private String description; private String tracing; private List<String> propagatorTypes; public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getTracing() { return this.tracing; } public void setTracing(String tracing) { this.tracing = tracing; } public List<String> getPropagatorTypes() { return this.propagatorTypes; } public void setPropagatorTypes(List<String> propagatorTypes) { this.propagatorTypes = propagatorTypes; } } } @Override public GetRumAppsResponse getInstance(UnmarshallerContext context) { return GetRumAppsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRumDataForPageRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetRumDataForPageRequest extends RpcAcsRequest<GetRumDataForPageResponse> { private String workspace; private String query; private Integer endTime; private String pid; private Integer currentPage; private Integer startTime; private String appGroup; private Integer pageSize; public GetRumDataForPageRequest() { super("ARMS", "2019-08-08", "GetRumDataForPage", "arms"); setProtocol(ProtocolType.HTTPS); 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 getWorkspace() { return this.workspace; } public void setWorkspace(String workspace) { this.workspace = workspace; if(workspace != null){ putQueryParameter("Workspace", workspace); } } public String getQuery() { return this.query; } public void setQuery(String query) { this.query = query; if(query != null){ putQueryParameter("Query", query); } } public Integer getEndTime() { return this.endTime; } public void setEndTime(Integer endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("EndTime", endTime.toString()); } } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putQueryParameter("CurrentPage", currentPage.toString()); } } public Integer getStartTime() { return this.startTime; } public void setStartTime(Integer startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime.toString()); } } public String getAppGroup() { return this.appGroup; } public void setAppGroup(String appGroup) { this.appGroup = appGroup; if(appGroup != null){ putQueryParameter("AppGroup", appGroup); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } @Override public Class<GetRumDataForPageResponse> getResponseClass() { return GetRumDataForPageResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRumDataForPageResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetRumDataForPageResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetRumDataForPageResponse extends AcsResponse { private String requestId; private String code; private String success; private String message; private String httpStatusCode; private Data data; 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 String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String total; private String page; private String pageSize; private String authentication; private String completion; private String preference; private List<Map<Object,Object>> items; public String getTotal() { return this.total; } public void setTotal(String total) { this.total = total; } public String getPage() { return this.page; } public void setPage(String page) { this.page = page; } public String getPageSize() { return this.pageSize; } public void setPageSize(String pageSize) { this.pageSize = pageSize; } public String getAuthentication() { return this.authentication; } public void setAuthentication(String authentication) { this.authentication = authentication; } public String getCompletion() { return this.completion; } public void setCompletion(String completion) { this.completion = completion; } public String getPreference() { return this.preference; } public void setPreference(String preference) { this.preference = preference; } public List<Map<Object,Object>> getItems() { return this.items; } public void setItems(List<Map<Object,Object>> items) { this.items = items; } } @Override public GetRumDataForPageResponse getInstance(UnmarshallerContext context) { return GetRumDataForPageResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRumExceptionStackRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetRumExceptionStackRequest extends RpcAcsRequest<GetRumExceptionStackResponse> { private String sourcemapType; private String exceptionThreadId; private String pid; private String exceptionBinaryImages; private String extraInfo; private String exceptionStack; public GetRumExceptionStackRequest() { super("ARMS", "2019-08-08", "GetRumExceptionStack", "arms"); setProtocol(ProtocolType.HTTPS); 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 getSourcemapType() { return this.sourcemapType; } public void setSourcemapType(String sourcemapType) { this.sourcemapType = sourcemapType; if(sourcemapType != null){ putQueryParameter("SourcemapType", sourcemapType); } } public String getExceptionThreadId() { return this.exceptionThreadId; } public void setExceptionThreadId(String exceptionThreadId) { this.exceptionThreadId = exceptionThreadId; if(exceptionThreadId != null){ putQueryParameter("ExceptionThreadId", exceptionThreadId); } } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } public String getExceptionBinaryImages() { return this.exceptionBinaryImages; } public void setExceptionBinaryImages(String exceptionBinaryImages) { this.exceptionBinaryImages = exceptionBinaryImages; if(exceptionBinaryImages != null){ putQueryParameter("ExceptionBinaryImages", exceptionBinaryImages); } } public String getExtraInfo() { return this.extraInfo; } public void setExtraInfo(String extraInfo) { this.extraInfo = extraInfo; if(extraInfo != null){ putQueryParameter("ExtraInfo", extraInfo); } } public String getExceptionStack() { return this.exceptionStack; } public void setExceptionStack(String exceptionStack) { this.exceptionStack = exceptionStack; if(exceptionStack != null){ putQueryParameter("ExceptionStack", exceptionStack); } } @Override public Class<GetRumExceptionStackResponse> getResponseClass() { return GetRumExceptionStackResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRumExceptionStackResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetRumExceptionStackResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetRumExceptionStackResponse extends AcsResponse { private String requestId; private String code; private String success; private String message; private String httpStatusCode; private Data data; 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 String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String threadId; private String crashReason; private String crashAddress; private String moduleName; private String uuid; private String binaryImages; private List<ThreadInfoListItem> threadInfoList; private List<String> lines; public String getThreadId() { return this.threadId; } public void setThreadId(String threadId) { this.threadId = threadId; } public String getCrashReason() { return this.crashReason; } public void setCrashReason(String crashReason) { this.crashReason = crashReason; } public String getCrashAddress() { return this.crashAddress; } public void setCrashAddress(String crashAddress) { this.crashAddress = crashAddress; } public String getModuleName() { return this.moduleName; } public void setModuleName(String moduleName) { this.moduleName = moduleName; } public String getUuid() { return this.uuid; } public void setUuid(String uuid) { this.uuid = uuid; } public String getBinaryImages() { return this.binaryImages; } public void setBinaryImages(String binaryImages) { this.binaryImages = binaryImages; } public List<ThreadInfoListItem> getThreadInfoList() { return this.threadInfoList; } public void setThreadInfoList(List<ThreadInfoListItem> threadInfoList) { this.threadInfoList = threadInfoList; } public List<String> getLines() { return this.lines; } public void setLines(List<String> lines) { this.lines = lines; } public static class ThreadInfoListItem { private String threadTag; private String threadDetail; public String getThreadTag() { return this.threadTag; } public void setThreadTag(String threadTag) { this.threadTag = threadTag; } public String getThreadDetail() { return this.threadDetail; } public void setThreadDetail(String threadDetail) { this.threadDetail = threadDetail; } } } @Override public GetRumExceptionStackResponse getInstance(UnmarshallerContext context) { return GetRumExceptionStackResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRumOcuStatisticDataRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.google.gson.Gson; import com.google.gson.annotations.SerializedName; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetRumOcuStatisticDataRequest extends RpcAcsRequest<GetRumOcuStatisticDataResponse> { private Long endTime; private Long startTime; @SerializedName("filter") private List<Filter> filter; private Integer pageSize; private Integer page; private String queryType; @SerializedName("group") private List<String> group; public GetRumOcuStatisticDataRequest() { super("ARMS", "2019-08-08", "GetRumOcuStatisticData", "arms"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.GET); 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 List<Filter> getFilter() { return this.filter; } public void setFilter(List<Filter> filter) { this.filter = filter; if (filter != null) { putQueryParameter("Filter" , new Gson().toJson(filter)); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Integer getPage() { return this.page; } public void setPage(Integer page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } public String getQueryType() { return this.queryType; } public void setQueryType(String queryType) { this.queryType = queryType; if(queryType != null){ putQueryParameter("QueryType", queryType); } } public List<String> getGroup() { return this.group; } public void setGroup(List<String> group) { this.group = group; if (group != null) { putQueryParameter("Group" , new Gson().toJson(group)); } } public static class Filter { @SerializedName("OpType") private String opType; @SerializedName("Value") private Object value; @SerializedName("Key") private String key; public String getOpType() { return this.opType; } public void setOpType(String opType) { this.opType = opType; } public Object getValue() { return this.value; } public void setValue(Object value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<GetRumOcuStatisticDataResponse> getResponseClass() { return GetRumOcuStatisticDataResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRumOcuStatisticDataResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetRumOcuStatisticDataResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetRumOcuStatisticDataResponse extends AcsResponse { private String requestId; private Long code; private String message; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getCode() { return this.code; } public void setCode(Long code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer total; private Integer page; private Integer pageSize; private Boolean complete; private List<Map<Object,Object>> items; public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public Integer getPage() { return this.page; } public void setPage(Integer page) { this.page = page; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Boolean getComplete() { return this.complete; } public void setComplete(Boolean complete) { this.complete = complete; } public List<Map<Object,Object>> getItems() { return this.items; } public void setItems(List<Map<Object,Object>> items) { this.items = items; } } @Override public GetRumOcuStatisticDataResponse getInstance(UnmarshallerContext context) { return GetRumOcuStatisticDataResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRumUploadFilesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetRumUploadFilesRequest extends RpcAcsRequest<GetRumUploadFilesResponse> { private String versionId; private String appType; private String pid; public GetRumUploadFilesRequest() { super("ARMS", "2019-08-08", "GetRumUploadFiles", "arms"); setProtocol(ProtocolType.HTTPS); 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 getVersionId() { return this.versionId; } public void setVersionId(String versionId) { this.versionId = versionId; if(versionId != null){ putQueryParameter("VersionId", versionId); } } public String getAppType() { return this.appType; } public void setAppType(String appType) { this.appType = appType; if(appType != null){ putQueryParameter("AppType", appType); } } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } @Override public Class<GetRumUploadFilesResponse> getResponseClass() { return GetRumUploadFilesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetRumUploadFilesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetRumUploadFilesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetRumUploadFilesResponse extends AcsResponse { private String requestId; private Integer code; private String message; private Integer httpStatusCode; private Boolean success; private List<DataItem> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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 List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String fileName; private String uuid; private String size; private Object lastModifiedTime; private String versionId; public String getFileName() { return this.fileName; } public void setFileName(String fileName) { this.fileName = fileName; } public String getUuid() { return this.uuid; } public void setUuid(String uuid) { this.uuid = uuid; } public String getSize() { return this.size; } public void setSize(String size) { this.size = size; } public Object getLastModifiedTime() { return this.lastModifiedTime; } public void setLastModifiedTime(Object lastModifiedTime) { this.lastModifiedTime = lastModifiedTime; } public String getVersionId() { return this.versionId; } public void setVersionId(String versionId) { this.versionId = versionId; } } @Override public GetRumUploadFilesResponse getInstance(UnmarshallerContext context) { return GetRumUploadFilesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetSourceMapInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetSourceMapInfoRequest extends RpcAcsRequest<GetSourceMapInfoResponse> { private String edition; private String iD; private String keyword; private Boolean ascendingSequence; private String orderField; public GetSourceMapInfoRequest() { super("ARMS", "2019-08-08", "GetSourceMapInfo", "arms"); 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 getEdition() { return this.edition; } public void setEdition(String edition) { this.edition = edition; if(edition != null){ putQueryParameter("Edition", edition); } } public String getID() { return this.iD; } public void setID(String iD) { this.iD = iD; if(iD != null){ putQueryParameter("ID", iD); } } public String getKeyword() { return this.keyword; } public void setKeyword(String keyword) { this.keyword = keyword; if(keyword != null){ putQueryParameter("Keyword", keyword); } } public Boolean getAscendingSequence() { return this.ascendingSequence; } public void setAscendingSequence(Boolean ascendingSequence) { this.ascendingSequence = ascendingSequence; if(ascendingSequence != null){ putQueryParameter("AscendingSequence", ascendingSequence.toString()); } } public String getOrderField() { return this.orderField; } public void setOrderField(String orderField) { this.orderField = orderField; if(orderField != null){ putQueryParameter("OrderField", orderField); } } @Override public Class<GetSourceMapInfoResponse> getResponseClass() { return GetSourceMapInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetSourceMapInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetSourceMapInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetSourceMapInfoResponse extends AcsResponse { private String requestId; private List<Data> sourceMapList; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<Data> getSourceMapList() { return this.sourceMapList; } public void setSourceMapList(List<Data> sourceMapList) { this.sourceMapList = sourceMapList; } public static class Data { private String fid; private String fileName; private String size; private String uploadTime; private String version; public String getFid() { return this.fid; } public void setFid(String fid) { this.fid = fid; } public String getFileName() { return this.fileName; } public void setFileName(String fileName) { this.fileName = fileName; } public String getSize() { return this.size; } public void setSize(String size) { this.size = size; } public String getUploadTime() { return this.uploadTime; } public void setUploadTime(String uploadTime) { this.uploadTime = uploadTime; } public String getVersion() { return this.version; } public void setVersion(String version) { this.version = version; } } @Override public GetSourceMapInfoResponse getInstance(UnmarshallerContext context) { return GetSourceMapInfoResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetStackRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetStackRequest extends RpcAcsRequest<GetStackResponse> { private String traceID; private Long endTime; private String pid; private Long startTime; private String spanID; private String rpcID; public GetStackRequest() { super("ARMS", "2019-08-08", "GetStack", "arms"); 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 getTraceID() { return this.traceID; } public void setTraceID(String traceID) { this.traceID = traceID; if(traceID != null){ putQueryParameter("TraceID", traceID); } } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("EndTime", endTime.toString()); } } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime.toString()); } } public String getSpanID() { return this.spanID; } public void setSpanID(String spanID) { this.spanID = spanID; if(spanID != null){ putQueryParameter("SpanID", spanID); } } public String getRpcID() { return this.rpcID; } public void setRpcID(String rpcID) { this.rpcID = rpcID; if(rpcID != null){ putQueryParameter("RpcID", rpcID); } } @Override public Class<GetStackResponse> getResponseClass() { return GetStackResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetStackResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetStackResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetStackResponse extends AcsResponse { private String requestId; private List<StackInfoItem> stackInfo; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<StackInfoItem> getStackInfo() { return this.stackInfo; } public void setStackInfo(List<StackInfoItem> stackInfo) { this.stackInfo = stackInfo; } public static class StackInfoItem { private Long startTime; private String exception; private String api; private String line; private Long duration; private String rpcId; private String serviceName; private String callCount; private ExtInfo extInfo; public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; } public String getException() { return this.exception; } public void setException(String exception) { this.exception = exception; } public String getApi() { return this.api; } public void setApi(String api) { this.api = api; } public String getLine() { return this.line; } public void setLine(String line) { this.line = line; } public Long getDuration() { return this.duration; } public void setDuration(Long duration) { this.duration = duration; } public String getRpcId() { return this.rpcId; } public void setRpcId(String rpcId) { this.rpcId = rpcId; } public String getServiceName() { return this.serviceName; } public void setServiceName(String serviceName) { this.serviceName = serviceName; } public String getCallCount() { return this.callCount; } public void setCallCount(String callCount) { this.callCount = callCount; } public ExtInfo getExtInfo() { return this.extInfo; } public void setExtInfo(ExtInfo extInfo) { this.extInfo = extInfo; } public static class ExtInfo { private String type; private String info; public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getInfo() { return this.info; } public void setInfo(String info) { this.info = info; } } } @Override public GetStackResponse getInstance(UnmarshallerContext context) { return GetStackResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetSyntheticMonitorsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.google.gson.Gson; import com.google.gson.annotations.SerializedName; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetSyntheticMonitorsRequest extends RpcAcsRequest<GetSyntheticMonitorsResponse> { @SerializedName("filter") private Filter filter; public GetSyntheticMonitorsRequest() { super("ARMS", "2019-08-08", "GetSyntheticMonitors", "arms"); setMethod(MethodType.GET); 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 Filter getFilter() { return this.filter; } public void setFilter(Filter filter) { this.filter = filter; if (filter != null) { putQueryParameter("Filter" , new Gson().toJson(filter)); } } public static class Filter { @SerializedName("TaskType") private Integer taskType; @SerializedName("MonitorCategory") private Integer monitorCategory; @SerializedName("Network") private Integer network; public Integer getTaskType() { return this.taskType; } public void setTaskType(Integer taskType) { this.taskType = taskType; } public Integer getMonitorCategory() { return this.monitorCategory; } public void setMonitorCategory(Integer monitorCategory) { this.monitorCategory = monitorCategory; } public Integer getNetwork() { return this.network; } public void setNetwork(Integer network) { this.network = network; } } @Override public Class<GetSyntheticMonitorsResponse> getResponseClass() { return GetSyntheticMonitorsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetSyntheticMonitorsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetSyntheticMonitorsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetSyntheticMonitorsResponse extends AcsResponse { private String requestId; private Long code; private String message; private List<DataItem> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getCode() { return this.code; } public void setCode(Long code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String country; private String region; private String city; private String cityCode; private String operator; private String operatorCode; private Integer clientType; private Boolean canBeSelected; private String available; private Integer ipv6; public String getCountry() { return this.country; } public void setCountry(String country) { this.country = country; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public String getCity() { return this.city; } public void setCity(String city) { this.city = city; } public String getCityCode() { return this.cityCode; } public void setCityCode(String cityCode) { this.cityCode = cityCode; } public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } public String getOperatorCode() { return this.operatorCode; } public void setOperatorCode(String operatorCode) { this.operatorCode = operatorCode; } public Integer getClientType() { return this.clientType; } public void setClientType(Integer clientType) { this.clientType = clientType; } public Boolean getCanBeSelected() { return this.canBeSelected; } public void setCanBeSelected(Boolean canBeSelected) { this.canBeSelected = canBeSelected; } public String getAvailable() { return this.available; } public void setAvailable(String available) { this.available = available; } public Integer getIpv6() { return this.ipv6; } public void setIpv6(Integer ipv6) { this.ipv6 = ipv6; } } @Override public GetSyntheticMonitorsResponse getInstance(UnmarshallerContext context) { return GetSyntheticMonitorsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetSyntheticTaskDetailRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetSyntheticTaskDetailRequest extends RpcAcsRequest<GetSyntheticTaskDetailResponse> { private String taskId; public GetSyntheticTaskDetailRequest() { super("ARMS", "2019-08-08", "GetSyntheticTaskDetail", "arms"); 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 getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; if(taskId != null){ putQueryParameter("TaskId", taskId); } } @Override public Class<GetSyntheticTaskDetailResponse> getResponseClass() { return GetSyntheticTaskDetailResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetSyntheticTaskDetailResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetSyntheticTaskDetailResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetSyntheticTaskDetailResponse extends AcsResponse { private String requestId; private TaskDetail taskDetail; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public TaskDetail getTaskDetail() { return this.taskDetail; } public void setTaskDetail(TaskDetail taskDetail) { this.taskDetail = taskDetail; } public static class TaskDetail { private Long taskId; private String taskName; private String url; private Long taskType; private Long intervalTime; private Long intervalType; private Long ipType; private String monitorListString; private List<MonitorListItem> monitorList; private ExtendInterval extendInterval; private Download download; private Net net; private Nav nav; private Protocol protocol; private CommonParam commonParam; public Long getTaskId() { return this.taskId; } public void setTaskId(Long taskId) { this.taskId = taskId; } public String getTaskName() { return this.taskName; } public void setTaskName(String taskName) { this.taskName = taskName; } public String getUrl() { return this.url; } public void setUrl(String url) { this.url = url; } public Long getTaskType() { return this.taskType; } public void setTaskType(Long taskType) { this.taskType = taskType; } public Long getIntervalTime() { return this.intervalTime; } public void setIntervalTime(Long intervalTime) { this.intervalTime = intervalTime; } public Long getIntervalType() { return this.intervalType; } public void setIntervalType(Long intervalType) { this.intervalType = intervalType; } public Long getIpType() { return this.ipType; } public void setIpType(Long ipType) { this.ipType = ipType; } public String getMonitorListString() { return this.monitorListString; } public void setMonitorListString(String monitorListString) { this.monitorListString = monitorListString; } public List<MonitorListItem> getMonitorList() { return this.monitorList; } public void setMonitorList(List<MonitorListItem> monitorList) { this.monitorList = monitorList; } public ExtendInterval getExtendInterval() { return this.extendInterval; } public void setExtendInterval(ExtendInterval extendInterval) { this.extendInterval = extendInterval; } public Download getDownload() { return this.download; } public void setDownload(Download download) { this.download = download; } public Net getNet() { return this.net; } public void setNet(Net net) { this.net = net; } public Nav getNav() { return this.nav; } public void setNav(Nav nav) { this.nav = nav; } public Protocol getBizProtocol() { return this.protocol; } public void setBizProtocol(Protocol protocol) { this.protocol = protocol; } public CommonParam getCommonParam() { return this.commonParam; } public void setCommonParam(CommonParam commonParam) { this.commonParam = commonParam; } public static class MonitorListItem { private Long cityCode; private Long netServiceId; private Long monitorType; private Long sendCount; public Long getCityCode() { return this.cityCode; } public void setCityCode(Long cityCode) { this.cityCode = cityCode; } public Long getNetServiceId() { return this.netServiceId; } public void setNetServiceId(Long netServiceId) { this.netServiceId = netServiceId; } public Long getMonitorType() { return this.monitorType; } public void setMonitorType(Long monitorType) { this.monitorType = monitorType; } public Long getSendCount() { return this.sendCount; } public void setSendCount(Long sendCount) { this.sendCount = sendCount; } } public static class ExtendInterval { private String startTime; private String endTime; private Long startHour; private Long startMinute; private Long endhour; private Long endMinute; private List<Long> days; public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; } public Long getStartHour() { return this.startHour; } public void setStartHour(Long startHour) { this.startHour = startHour; } public Long getStartMinute() { return this.startMinute; } public void setStartMinute(Long startMinute) { this.startMinute = startMinute; } public Long getEndhour() { return this.endhour; } public void setEndhour(Long endhour) { this.endhour = endhour; } public Long getEndMinute() { return this.endMinute; } public void setEndMinute(Long endMinute) { this.endMinute = endMinute; } public List<Long> getDays() { return this.days; } public void setDays(List<Long> days) { this.days = days; } } public static class Download { private Long downloadTransmissionSize; private Long downloadCustomHost; private String downloadCustomHostIp; private String whiteList; private Long downloadKernel; private String quickProtocol; private Long monitorTimeout; private Long connectionTimeout; private Long verifyWay; private String validateKeywords; private Long downloadRedirect; private String downloadCustomHeaderContent; public Long getDownloadTransmissionSize() { return this.downloadTransmissionSize; } public void setDownloadTransmissionSize(Long downloadTransmissionSize) { this.downloadTransmissionSize = downloadTransmissionSize; } public Long getDownloadCustomHost() { return this.downloadCustomHost; } public void setDownloadCustomHost(Long downloadCustomHost) { this.downloadCustomHost = downloadCustomHost; } public String getDownloadCustomHostIp() { return this.downloadCustomHostIp; } public void setDownloadCustomHostIp(String downloadCustomHostIp) { this.downloadCustomHostIp = downloadCustomHostIp; } public String getWhiteList() { return this.whiteList; } public void setWhiteList(String whiteList) { this.whiteList = whiteList; } public Long getDownloadKernel() { return this.downloadKernel; } public void setDownloadKernel(Long downloadKernel) { this.downloadKernel = downloadKernel; } public String getQuickProtocol() { return this.quickProtocol; } public void setQuickProtocol(String quickProtocol) { this.quickProtocol = quickProtocol; } public Long getMonitorTimeout() { return this.monitorTimeout; } public void setMonitorTimeout(Long monitorTimeout) { this.monitorTimeout = monitorTimeout; } public Long getConnectionTimeout() { return this.connectionTimeout; } public void setConnectionTimeout(Long connectionTimeout) { this.connectionTimeout = connectionTimeout; } public Long getVerifyWay() { return this.verifyWay; } public void setVerifyWay(Long verifyWay) { this.verifyWay = verifyWay; } public String getValidateKeywords() { return this.validateKeywords; } public void setValidateKeywords(String validateKeywords) { this.validateKeywords = validateKeywords; } public Long getDownloadRedirect() { return this.downloadRedirect; } public void setDownloadRedirect(Long downloadRedirect) { this.downloadRedirect = downloadRedirect; } public String getDownloadCustomHeaderContent() { return this.downloadCustomHeaderContent; } public void setDownloadCustomHeaderContent(String downloadCustomHeaderContent) { this.downloadCustomHeaderContent = downloadCustomHeaderContent; } } public static class Net { private Long netIcmpSwitch; private Long netIcmpActive; private Long netIcmpTimeout; private Long netIcmpInterval; private Long netIcmpNum; private Long netIcmpSize; private Long netIcmpDataCut; private String netDnsQueryMethod; private Long netDnsSwitch; private Long netTraceRouteSwitch; private Long netTraceRouteTimeout; private Long netTraceRouteNum; private String whiteList; private String netDnsNs; private Long netDigSwitch; private Long netDnsServer; private String netDnsTimeout; public Long getNetIcmpSwitch() { return this.netIcmpSwitch; } public void setNetIcmpSwitch(Long netIcmpSwitch) { this.netIcmpSwitch = netIcmpSwitch; } public Long getNetIcmpActive() { return this.netIcmpActive; } public void setNetIcmpActive(Long netIcmpActive) { this.netIcmpActive = netIcmpActive; } public Long getNetIcmpTimeout() { return this.netIcmpTimeout; } public void setNetIcmpTimeout(Long netIcmpTimeout) { this.netIcmpTimeout = netIcmpTimeout; } public Long getNetIcmpInterval() { return this.netIcmpInterval; } public void setNetIcmpInterval(Long netIcmpInterval) { this.netIcmpInterval = netIcmpInterval; } public Long getNetIcmpNum() { return this.netIcmpNum; } public void setNetIcmpNum(Long netIcmpNum) { this.netIcmpNum = netIcmpNum; } public Long getNetIcmpSize() { return this.netIcmpSize; } public void setNetIcmpSize(Long netIcmpSize) { this.netIcmpSize = netIcmpSize; } public Long getNetIcmpDataCut() { return this.netIcmpDataCut; } public void setNetIcmpDataCut(Long netIcmpDataCut) { this.netIcmpDataCut = netIcmpDataCut; } public String getNetDnsQueryMethod() { return this.netDnsQueryMethod; } public void setNetDnsQueryMethod(String netDnsQueryMethod) { this.netDnsQueryMethod = netDnsQueryMethod; } public Long getNetDnsSwitch() { return this.netDnsSwitch; } public void setNetDnsSwitch(Long netDnsSwitch) { this.netDnsSwitch = netDnsSwitch; } public Long getNetTraceRouteSwitch() { return this.netTraceRouteSwitch; } public void setNetTraceRouteSwitch(Long netTraceRouteSwitch) { this.netTraceRouteSwitch = netTraceRouteSwitch; } public Long getNetTraceRouteTimeout() { return this.netTraceRouteTimeout; } public void setNetTraceRouteTimeout(Long netTraceRouteTimeout) { this.netTraceRouteTimeout = netTraceRouteTimeout; } public Long getNetTraceRouteNum() { return this.netTraceRouteNum; } public void setNetTraceRouteNum(Long netTraceRouteNum) { this.netTraceRouteNum = netTraceRouteNum; } public String getWhiteList() { return this.whiteList; } public void setWhiteList(String whiteList) { this.whiteList = whiteList; } public String getNetDnsNs() { return this.netDnsNs; } public void setNetDnsNs(String netDnsNs) { this.netDnsNs = netDnsNs; } public Long getNetDigSwitch() { return this.netDigSwitch; } public void setNetDigSwitch(Long netDigSwitch) { this.netDigSwitch = netDigSwitch; } public Long getNetDnsServer() { return this.netDnsServer; } public void setNetDnsServer(Long netDnsServer) { this.netDnsServer = netDnsServer; } public String getNetDnsTimeout() { return this.netDnsTimeout; } public void setNetDnsTimeout(String netDnsTimeout) { this.netDnsTimeout = netDnsTimeout; } } public static class Nav { private Long navDisableCache; private Long navReturnElement; private Long navRedirect; private Long navDisableCompression; private Long navAutomaticScrolling; private Long navIgnoreCertificateError; private Long filterInvalidIP; private Long executeApplet; private Long executeActiveX; private Long executeScript; private Long quicVersion; private String quicDomain; private Long requestHeader; private Long navCustomHost; private String navCustomHostIp; private String navCustomHeader; private String navCustomHeaderContent; private String elementBlacklist; private String processName; private String verifyStringBlacklist; private String verifyStringWhitelist; private Long monitorTimeout; private Long waitCompletionTime; private Long slowElementThreshold; private String dnsHijackWhitelist; private String pageTampering; private Long flowHijackJumpTimes; private String flowHijackLogo; public Long getNavDisableCache() { return this.navDisableCache; } public void setNavDisableCache(Long navDisableCache) { this.navDisableCache = navDisableCache; } public Long getNavReturnElement() { return this.navReturnElement; } public void setNavReturnElement(Long navReturnElement) { this.navReturnElement = navReturnElement; } public Long getNavRedirect() { return this.navRedirect; } public void setNavRedirect(Long navRedirect) { this.navRedirect = navRedirect; } public Long getNavDisableCompression() { return this.navDisableCompression; } public void setNavDisableCompression(Long navDisableCompression) { this.navDisableCompression = navDisableCompression; } public Long getNavAutomaticScrolling() { return this.navAutomaticScrolling; } public void setNavAutomaticScrolling(Long navAutomaticScrolling) { this.navAutomaticScrolling = navAutomaticScrolling; } public Long getNavIgnoreCertificateError() { return this.navIgnoreCertificateError; } public void setNavIgnoreCertificateError(Long navIgnoreCertificateError) { this.navIgnoreCertificateError = navIgnoreCertificateError; } public Long getFilterInvalidIP() { return this.filterInvalidIP; } public void setFilterInvalidIP(Long filterInvalidIP) { this.filterInvalidIP = filterInvalidIP; } public Long getExecuteApplet() { return this.executeApplet; } public void setExecuteApplet(Long executeApplet) { this.executeApplet = executeApplet; } public Long getExecuteActiveX() { return this.executeActiveX; } public void setExecuteActiveX(Long executeActiveX) { this.executeActiveX = executeActiveX; } public Long getExecuteScript() { return this.executeScript; } public void setExecuteScript(Long executeScript) { this.executeScript = executeScript; } public Long getQuicVersion() { return this.quicVersion; } public void setQuicVersion(Long quicVersion) { this.quicVersion = quicVersion; } public String getQuicDomain() { return this.quicDomain; } public void setQuicDomain(String quicDomain) { this.quicDomain = quicDomain; } public Long getRequestHeader() { return this.requestHeader; } public void setRequestHeader(Long requestHeader) { this.requestHeader = requestHeader; } public Long getNavCustomHost() { return this.navCustomHost; } public void setNavCustomHost(Long navCustomHost) { this.navCustomHost = navCustomHost; } public String getNavCustomHostIp() { return this.navCustomHostIp; } public void setNavCustomHostIp(String navCustomHostIp) { this.navCustomHostIp = navCustomHostIp; } public String getNavCustomHeader() { return this.navCustomHeader; } public void setNavCustomHeader(String navCustomHeader) { this.navCustomHeader = navCustomHeader; } public String getNavCustomHeaderContent() { return this.navCustomHeaderContent; } public void setNavCustomHeaderContent(String navCustomHeaderContent) { this.navCustomHeaderContent = navCustomHeaderContent; } public String getElementBlacklist() { return this.elementBlacklist; } public void setElementBlacklist(String elementBlacklist) { this.elementBlacklist = elementBlacklist; } public String getProcessName() { return this.processName; } public void setProcessName(String processName) { this.processName = processName; } public String getVerifyStringBlacklist() { return this.verifyStringBlacklist; } public void setVerifyStringBlacklist(String verifyStringBlacklist) { this.verifyStringBlacklist = verifyStringBlacklist; } public String getVerifyStringWhitelist() { return this.verifyStringWhitelist; } public void setVerifyStringWhitelist(String verifyStringWhitelist) { this.verifyStringWhitelist = verifyStringWhitelist; } public Long getMonitorTimeout() { return this.monitorTimeout; } public void setMonitorTimeout(Long monitorTimeout) { this.monitorTimeout = monitorTimeout; } public Long getWaitCompletionTime() { return this.waitCompletionTime; } public void setWaitCompletionTime(Long waitCompletionTime) { this.waitCompletionTime = waitCompletionTime; } public Long getSlowElementThreshold() { return this.slowElementThreshold; } public void setSlowElementThreshold(Long slowElementThreshold) { this.slowElementThreshold = slowElementThreshold; } public String getDnsHijackWhitelist() { return this.dnsHijackWhitelist; } public void setDnsHijackWhitelist(String dnsHijackWhitelist) { this.dnsHijackWhitelist = dnsHijackWhitelist; } public String getPageTampering() { return this.pageTampering; } public void setPageTampering(String pageTampering) { this.pageTampering = pageTampering; } public Long getFlowHijackJumpTimes() { return this.flowHijackJumpTimes; } public void setFlowHijackJumpTimes(Long flowHijackJumpTimes) { this.flowHijackJumpTimes = flowHijackJumpTimes; } public String getFlowHijackLogo() { return this.flowHijackLogo; } public void setFlowHijackLogo(String flowHijackLogo) { this.flowHijackLogo = flowHijackLogo; } } public static class Protocol { private Long characterEncoding; private Long verifyWay; private String verifyContent; private Long receivedDataSize; private Long protocolMonitorTimeout; private Long protocolConnectionTimeout; private Long customHost; private String customHostIp; private RequestContent requestContent; public Long getCharacterEncoding() { return this.characterEncoding; } public void setCharacterEncoding(Long characterEncoding) { this.characterEncoding = characterEncoding; } public Long getVerifyWay() { return this.verifyWay; } public void setVerifyWay(Long verifyWay) { this.verifyWay = verifyWay; } public String getVerifyContent() { return this.verifyContent; } public void setVerifyContent(String verifyContent) { this.verifyContent = verifyContent; } public Long getReceivedDataSize() { return this.receivedDataSize; } public void setReceivedDataSize(Long receivedDataSize) { this.receivedDataSize = receivedDataSize; } public Long getProtocolMonitorTimeout() { return this.protocolMonitorTimeout; } public void setProtocolMonitorTimeout(Long protocolMonitorTimeout) { this.protocolMonitorTimeout = protocolMonitorTimeout; } public Long getProtocolConnectionTimeout() { return this.protocolConnectionTimeout; } public void setProtocolConnectionTimeout(Long protocolConnectionTimeout) { this.protocolConnectionTimeout = protocolConnectionTimeout; } public Long getCustomHost() { return this.customHost; } public void setCustomHost(Long customHost) { this.customHost = customHost; } public String getCustomHostIp() { return this.customHostIp; } public void setCustomHostIp(String customHostIp) { this.customHostIp = customHostIp; } public RequestContent getRequestContent() { return this.requestContent; } public void setRequestContent(RequestContent requestContent) { this.requestContent = requestContent; } public static class RequestContent { private String method; private List<HeaderItem> header; private Body body; public String getBizMethod() { return this.method; } public void setBizMethod(String method) { this.method = method; } public List<HeaderItem> getHeader() { return this.header; } public void setHeader(List<HeaderItem> header) { this.header = header; } public Body getBody() { return this.body; } public void setBody(Body body) { this.body = body; } public static class HeaderItem { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } public static class Body { private String mode; private String raw; private String language; private Formdata formdata; private Urlencoded urlencoded; public String getMode() { return this.mode; } public void setMode(String mode) { this.mode = mode; } public String getRaw() { return this.raw; } public void setRaw(String raw) { this.raw = raw; } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; } public Formdata getFormdata() { return this.formdata; } public void setFormdata(Formdata formdata) { this.formdata = formdata; } public Urlencoded getUrlencoded() { return this.urlencoded; } public void setUrlencoded(Urlencoded urlencoded) { this.urlencoded = urlencoded; } public static class Formdata { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } public static class Urlencoded { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } } } public static class CommonParam { private Long alarmFlag; private String alertPolicyId; private String alertNotifierId; private String startExecutionTime; private String monitorSamples; private List<AlertListItem> alertList; public Long getAlarmFlag() { return this.alarmFlag; } public void setAlarmFlag(Long alarmFlag) { this.alarmFlag = alarmFlag; } public String getAlertPolicyId() { return this.alertPolicyId; } public void setAlertPolicyId(String alertPolicyId) { this.alertPolicyId = alertPolicyId; } public String getAlertNotifierId() { return this.alertNotifierId; } public void setAlertNotifierId(String alertNotifierId) { this.alertNotifierId = alertNotifierId; } public String getStartExecutionTime() { return this.startExecutionTime; } public void setStartExecutionTime(String startExecutionTime) { this.startExecutionTime = startExecutionTime; } public String getMonitorSamples() { return this.monitorSamples; } public void setMonitorSamples(String monitorSamples) { this.monitorSamples = monitorSamples; } public List<AlertListItem> getAlertList() { return this.alertList; } public void setAlertList(List<AlertListItem> alertList) { this.alertList = alertList; } public static class AlertListItem { private String name; private String generalAlert; private String seriousAlert; private String isCritical; private String symbols; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getGeneralAlert() { return this.generalAlert; } public void setGeneralAlert(String generalAlert) { this.generalAlert = generalAlert; } public String getSeriousAlert() { return this.seriousAlert; } public void setSeriousAlert(String seriousAlert) { this.seriousAlert = seriousAlert; } public String getIsCritical() { return this.isCritical; } public void setIsCritical(String isCritical) { this.isCritical = isCritical; } public String getSymbols() { return this.symbols; } public void setSymbols(String symbols) { this.symbols = symbols; } } } } @Override public GetSyntheticTaskDetailResponse getInstance(UnmarshallerContext context) { return GetSyntheticTaskDetailResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetSyntheticTaskListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetSyntheticTaskListRequest extends RpcAcsRequest<GetSyntheticTaskListResponse> { private String taskType; private String taskName; private Long pageNum; private String url; private String taskStatus; private Long pageSize; private String order; private String direction; public GetSyntheticTaskListRequest() { super("ARMS", "2019-08-08", "GetSyntheticTaskList", "arms"); 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 getTaskType() { return this.taskType; } public void setTaskType(String taskType) { this.taskType = taskType; if(taskType != null){ putQueryParameter("TaskType", taskType); } } public String getTaskName() { return this.taskName; } public void setTaskName(String taskName) { this.taskName = taskName; if(taskName != null){ putQueryParameter("TaskName", taskName); } } public Long getPageNum() { return this.pageNum; } public void setPageNum(Long pageNum) { this.pageNum = pageNum; if(pageNum != null){ putQueryParameter("PageNum", pageNum.toString()); } } public String getUrl() { return this.url; } public void setUrl(String url) { this.url = url; if(url != null){ putQueryParameter("Url", url); } } public String getTaskStatus() { return this.taskStatus; } public void setTaskStatus(String taskStatus) { this.taskStatus = taskStatus; if(taskStatus != null){ putQueryParameter("TaskStatus", taskStatus); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getOrder() { return this.order; } public void setOrder(String order) { this.order = order; if(order != null){ putQueryParameter("Order", order); } } public String getDirection() { return this.direction; } public void setDirection(String direction) { this.direction = direction; if(direction != null){ putQueryParameter("Direction", direction); } } @Override public Class<GetSyntheticTaskListResponse> getResponseClass() { return GetSyntheticTaskListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetSyntheticTaskListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetSyntheticTaskListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetSyntheticTaskListResponse extends AcsResponse { private String requestId; private PageInfo pageInfo; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public PageInfo getPageInfo() { return this.pageInfo; } public void setPageInfo(PageInfo pageInfo) { this.pageInfo = pageInfo; } public static class PageInfo { private Long total; private Long size; private String pages; private String prepage; private String nextPage; private Boolean isFirstPage; private Boolean isLastPage; private Boolean hasPreviousPage; private String hasNextPage; private String navigatePageNums; private String navigateFirstPage; private String navigateLastPage; private List<ListItem> list; public Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public Long getSize() { return this.size; } public void setSize(Long size) { this.size = size; } public String getPages() { return this.pages; } public void setPages(String pages) { this.pages = pages; } public String getPrepage() { return this.prepage; } public void setPrepage(String prepage) { this.prepage = prepage; } public String getNextPage() { return this.nextPage; } public void setNextPage(String nextPage) { this.nextPage = nextPage; } public Boolean getIsFirstPage() { return this.isFirstPage; } public void setIsFirstPage(Boolean isFirstPage) { this.isFirstPage = isFirstPage; } public Boolean getIsLastPage() { return this.isLastPage; } public void setIsLastPage(Boolean isLastPage) { this.isLastPage = isLastPage; } public Boolean getHasPreviousPage() { return this.hasPreviousPage; } public void setHasPreviousPage(Boolean hasPreviousPage) { this.hasPreviousPage = hasPreviousPage; } public String getHasNextPage() { return this.hasNextPage; } public void setHasNextPage(String hasNextPage) { this.hasNextPage = hasNextPage; } public String getNavigatePageNums() { return this.navigatePageNums; } public void setNavigatePageNums(String navigatePageNums) { this.navigatePageNums = navigatePageNums; } public String getNavigateFirstPage() { return this.navigateFirstPage; } public void setNavigateFirstPage(String navigateFirstPage) { this.navigateFirstPage = navigateFirstPage; } public String getNavigateLastPage() { return this.navigateLastPage; } public void setNavigateLastPage(String navigateLastPage) { this.navigateLastPage = navigateLastPage; } public List<ListItem> getList() { return this.list; } public void setList(List<ListItem> list) { this.list = list; } public static class ListItem { private String taskId; private String taskName; private String url; private Long taskType; private String taskTypeName; private Long monitorNumber; private String taskStatus; private Float usable; private String createTime; public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; } public String getTaskName() { return this.taskName; } public void setTaskName(String taskName) { this.taskName = taskName; } public String getUrl() { return this.url; } public void setUrl(String url) { this.url = url; } public Long getTaskType() { return this.taskType; } public void setTaskType(Long taskType) { this.taskType = taskType; } public String getTaskTypeName() { return this.taskTypeName; } public void setTaskTypeName(String taskTypeName) { this.taskTypeName = taskTypeName; } public Long getMonitorNumber() { return this.monitorNumber; } public void setMonitorNumber(Long monitorNumber) { this.monitorNumber = monitorNumber; } public String getTaskStatus() { return this.taskStatus; } public void setTaskStatus(String taskStatus) { this.taskStatus = taskStatus; } public Float getUsable() { return this.usable; } public void setUsable(Float usable) { this.usable = usable; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } } } @Override public GetSyntheticTaskListResponse getInstance(UnmarshallerContext context) { return GetSyntheticTaskListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetSyntheticTaskMonitorsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetSyntheticTaskMonitorsRequest extends RpcAcsRequest<GetSyntheticTaskMonitorsResponse> { public GetSyntheticTaskMonitorsRequest() { super("ARMS", "2019-08-08", "GetSyntheticTaskMonitors", "arms"); 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) {} } @Override public Class<GetSyntheticTaskMonitorsResponse> getResponseClass() { return GetSyntheticTaskMonitorsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetSyntheticTaskMonitorsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetSyntheticTaskMonitorsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetSyntheticTaskMonitorsResponse extends AcsResponse { private String requestId; private String code; private String msg; private List<DataItem> data; 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 String getMsg() { return this.msg; } public void setMsg(String msg) { this.msg = msg; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private Long clientType; private Long cityCode; private String city; private String district; private Long netServiceId; private String netServiceName; private Long busy; public Long getClientType() { return this.clientType; } public void setClientType(Long clientType) { this.clientType = clientType; } public Long getCityCode() { return this.cityCode; } public void setCityCode(Long cityCode) { this.cityCode = cityCode; } public String getCity() { return this.city; } public void setCity(String city) { this.city = city; } public String getDistrict() { return this.district; } public void setDistrict(String district) { this.district = district; } public Long getNetServiceId() { return this.netServiceId; } public void setNetServiceId(Long netServiceId) { this.netServiceId = netServiceId; } public String getNetServiceName() { return this.netServiceName; } public void setNetServiceName(String netServiceName) { this.netServiceName = netServiceName; } public Long getBusy() { return this.busy; } public void setBusy(Long busy) { this.busy = busy; } } @Override public GetSyntheticTaskMonitorsResponse getInstance(UnmarshallerContext context) { return GetSyntheticTaskMonitorsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetTimingSyntheticTaskRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetTimingSyntheticTaskRequest extends RpcAcsRequest<GetTimingSyntheticTaskResponse> { private String taskId; public GetTimingSyntheticTaskRequest() { super("ARMS", "2019-08-08", "GetTimingSyntheticTask", "arms"); setMethod(MethodType.GET); 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 getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; if(taskId != null){ putQueryParameter("TaskId", taskId); } } @Override public Class<GetTimingSyntheticTaskResponse> getResponseClass() { return GetTimingSyntheticTaskResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetTimingSyntheticTaskResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetTimingSyntheticTaskResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetTimingSyntheticTaskResponse extends AcsResponse { private String requestId; private Long code; private String message; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getCode() { return this.code; } public void setCode(Long code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String taskId; private String regionId; private String name; private Integer taskType; private Long monitorCategory; private String frequency; private String status; private String resourceGroupId; private List<Monitor> monitors; private List<AvailableAssertion> availableAssertions; private List<Tag> tags; private MonitorConf monitorConf; private CustomPeriod customPeriod; private CommonSetting commonSetting; public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Integer getTaskType() { return this.taskType; } public void setTaskType(Integer taskType) { this.taskType = taskType; } public Long getMonitorCategory() { return this.monitorCategory; } public void setMonitorCategory(Long monitorCategory) { this.monitorCategory = monitorCategory; } public String getFrequency() { return this.frequency; } public void setFrequency(String frequency) { this.frequency = frequency; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } public List<Monitor> getMonitors() { return this.monitors; } public void setMonitors(List<Monitor> monitors) { this.monitors = monitors; } public List<AvailableAssertion> getAvailableAssertions() { return this.availableAssertions; } public void setAvailableAssertions(List<AvailableAssertion> availableAssertions) { this.availableAssertions = availableAssertions; } public List<Tag> getTags() { return this.tags; } public void setTags(List<Tag> tags) { this.tags = tags; } public MonitorConf getMonitorConf() { return this.monitorConf; } public void setMonitorConf(MonitorConf monitorConf) { this.monitorConf = monitorConf; } public CustomPeriod getCustomPeriod() { return this.customPeriod; } public void setCustomPeriod(CustomPeriod customPeriod) { this.customPeriod = customPeriod; } public CommonSetting getCommonSetting() { return this.commonSetting; } public void setCommonSetting(CommonSetting commonSetting) { this.commonSetting = commonSetting; } public static class Monitor { private String cityCode; private String operatorCode; private Integer clientType; public String getCityCode() { return this.cityCode; } public void setCityCode(String cityCode) { this.cityCode = cityCode; } public String getOperatorCode() { return this.operatorCode; } public void setOperatorCode(String operatorCode) { this.operatorCode = operatorCode; } public Integer getClientType() { return this.clientType; } public void setClientType(Integer clientType) { this.clientType = clientType; } } public static class AvailableAssertion { private String type; private String target; private String operator; private String expect; public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getTarget() { return this.target; } public void setTarget(String target) { this.target = target; } public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } public String getExpect() { return this.expect; } public void setExpect(String expect) { this.expect = expect; } } public static class Tag { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } public static class MonitorConf { private NetICMP netICMP; private NetTCP netTCP; private NetDNS netDNS; private ApiHTTP apiHTTP; private FileDownload fileDownload; private Website website; private Stream stream; public NetICMP getNetICMP() { return this.netICMP; } public void setNetICMP(NetICMP netICMP) { this.netICMP = netICMP; } public NetTCP getNetTCP() { return this.netTCP; } public void setNetTCP(NetTCP netTCP) { this.netTCP = netTCP; } public NetDNS getNetDNS() { return this.netDNS; } public void setNetDNS(NetDNS netDNS) { this.netDNS = netDNS; } public ApiHTTP getApiHTTP() { return this.apiHTTP; } public void setApiHTTP(ApiHTTP apiHTTP) { this.apiHTTP = apiHTTP; } public FileDownload getFileDownload() { return this.fileDownload; } public void setFileDownload(FileDownload fileDownload) { this.fileDownload = fileDownload; } public Website getWebsite() { return this.website; } public void setWebsite(Website website) { this.website = website; } public Stream getStream() { return this.stream; } public void setStream(Stream stream) { this.stream = stream; } public static class NetICMP { private String targetUrl; private Integer interval; private Integer packageNum; private Integer packageSize; private Boolean splitPackage; private Long timeout; private Boolean tracertEnable; private Integer tracertNumMax; private Long tracertTimeout; public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public Integer getInterval() { return this.interval; } public void setInterval(Integer interval) { this.interval = interval; } public Integer getPackageNum() { return this.packageNum; } public void setPackageNum(Integer packageNum) { this.packageNum = packageNum; } public Integer getPackageSize() { return this.packageSize; } public void setPackageSize(Integer packageSize) { this.packageSize = packageSize; } public Boolean getSplitPackage() { return this.splitPackage; } public void setSplitPackage(Boolean splitPackage) { this.splitPackage = splitPackage; } public Long getTimeout() { return this.timeout; } public void setTimeout(Long timeout) { this.timeout = timeout; } public Boolean getTracertEnable() { return this.tracertEnable; } public void setTracertEnable(Boolean tracertEnable) { this.tracertEnable = tracertEnable; } public Integer getTracertNumMax() { return this.tracertNumMax; } public void setTracertNumMax(Integer tracertNumMax) { this.tracertNumMax = tracertNumMax; } public Long getTracertTimeout() { return this.tracertTimeout; } public void setTracertTimeout(Long tracertTimeout) { this.tracertTimeout = tracertTimeout; } } public static class NetTCP { private String targetUrl; private Integer connectTimes; private Long interval; private Long timeout; private Boolean tracertEnable; private Integer tracertNumMax; private Long tracertTimeout; public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public Integer getConnectTimes() { return this.connectTimes; } public void setConnectTimes(Integer connectTimes) { this.connectTimes = connectTimes; } public Long getInterval() { return this.interval; } public void setInterval(Long interval) { this.interval = interval; } public Long getTimeout() { return this.timeout; } public void setTimeout(Long timeout) { this.timeout = timeout; } public Boolean getTracertEnable() { return this.tracertEnable; } public void setTracertEnable(Boolean tracertEnable) { this.tracertEnable = tracertEnable; } public Integer getTracertNumMax() { return this.tracertNumMax; } public void setTracertNumMax(Integer tracertNumMax) { this.tracertNumMax = tracertNumMax; } public Long getTracertTimeout() { return this.tracertTimeout; } public void setTracertTimeout(Long tracertTimeout) { this.tracertTimeout = tracertTimeout; } } public static class NetDNS { private String targetUrl; private Integer dnsServerIpType; private String nsServer; private Integer queryMethod; private Long timeout; public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public Integer getDnsServerIpType() { return this.dnsServerIpType; } public void setDnsServerIpType(Integer dnsServerIpType) { this.dnsServerIpType = dnsServerIpType; } public String getNsServer() { return this.nsServer; } public void setNsServer(String nsServer) { this.nsServer = nsServer; } public Integer getQueryMethod() { return this.queryMethod; } public void setQueryMethod(Integer queryMethod) { this.queryMethod = queryMethod; } public Long getTimeout() { return this.timeout; } public void setTimeout(Long timeout) { this.timeout = timeout; } } public static class ApiHTTP { private String targetUrl; private String method; private Map<Object,Object> requestHeaders; private Long connectTimeout; private Long timeout; private Boolean checkCert; private Integer protocolAlpnProtocol; private RequestBody requestBody; public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public String getBizMethod() { return this.method; } public void setBizMethod(String method) { this.method = method; } public Map<Object,Object> getRequestHeaders() { return this.requestHeaders; } public void setRequestHeaders(Map<Object,Object> requestHeaders) { this.requestHeaders = requestHeaders; } public Long getConnectTimeout() { return this.connectTimeout; } public void setConnectTimeout(Long connectTimeout) { this.connectTimeout = connectTimeout; } public Long getTimeout() { return this.timeout; } public void setTimeout(Long timeout) { this.timeout = timeout; } public Boolean getCheckCert() { return this.checkCert; } public void setCheckCert(Boolean checkCert) { this.checkCert = checkCert; } public Integer getProtocolAlpnProtocol() { return this.protocolAlpnProtocol; } public void setProtocolAlpnProtocol(Integer protocolAlpnProtocol) { this.protocolAlpnProtocol = protocolAlpnProtocol; } public RequestBody getRequestBody() { return this.requestBody; } public void setRequestBody(RequestBody requestBody) { this.requestBody = requestBody; } public static class RequestBody { private String content; private String type; public String getContent() { return this.content; } public void setContent(String content) { this.content = content; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } } } public static class FileDownload { private String targetUrl; private Long downloadKernel; private Long quickProtocol; private Long connectionTimeout; private Map<Object,Object> customHeaderContent; private Integer ignoreCertificateStatusError; private Integer ignoreCertificateUntrustworthyError; private Integer ignoreInvalidHostError; private Long monitorTimeout; private Integer redirection; private Long transmissionSize; private Integer ignoreCertificateCanceledError; private Integer ignoreCertificateAuthError; private Integer ignoreCertificateOutOfDateError; private Integer ignoreCertificateUsingError; private Integer verifyWay; private String validateKeywords; private String whiteList; public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public Long getDownloadKernel() { return this.downloadKernel; } public void setDownloadKernel(Long downloadKernel) { this.downloadKernel = downloadKernel; } public Long getQuickProtocol() { return this.quickProtocol; } public void setQuickProtocol(Long quickProtocol) { this.quickProtocol = quickProtocol; } public Long getConnectionTimeout() { return this.connectionTimeout; } public void setConnectionTimeout(Long connectionTimeout) { this.connectionTimeout = connectionTimeout; } public Map<Object,Object> getCustomHeaderContent() { return this.customHeaderContent; } public void setCustomHeaderContent(Map<Object,Object> customHeaderContent) { this.customHeaderContent = customHeaderContent; } public Integer getIgnoreCertificateStatusError() { return this.ignoreCertificateStatusError; } public void setIgnoreCertificateStatusError(Integer ignoreCertificateStatusError) { this.ignoreCertificateStatusError = ignoreCertificateStatusError; } public Integer getIgnoreCertificateUntrustworthyError() { return this.ignoreCertificateUntrustworthyError; } public void setIgnoreCertificateUntrustworthyError(Integer ignoreCertificateUntrustworthyError) { this.ignoreCertificateUntrustworthyError = ignoreCertificateUntrustworthyError; } public Integer getIgnoreInvalidHostError() { return this.ignoreInvalidHostError; } public void setIgnoreInvalidHostError(Integer ignoreInvalidHostError) { this.ignoreInvalidHostError = ignoreInvalidHostError; } public Long getMonitorTimeout() { return this.monitorTimeout; } public void setMonitorTimeout(Long monitorTimeout) { this.monitorTimeout = monitorTimeout; } public Integer getRedirection() { return this.redirection; } public void setRedirection(Integer redirection) { this.redirection = redirection; } public Long getTransmissionSize() { return this.transmissionSize; } public void setTransmissionSize(Long transmissionSize) { this.transmissionSize = transmissionSize; } public Integer getIgnoreCertificateCanceledError() { return this.ignoreCertificateCanceledError; } public void setIgnoreCertificateCanceledError(Integer ignoreCertificateCanceledError) { this.ignoreCertificateCanceledError = ignoreCertificateCanceledError; } public Integer getIgnoreCertificateAuthError() { return this.ignoreCertificateAuthError; } public void setIgnoreCertificateAuthError(Integer ignoreCertificateAuthError) { this.ignoreCertificateAuthError = ignoreCertificateAuthError; } public Integer getIgnoreCertificateOutOfDateError() { return this.ignoreCertificateOutOfDateError; } public void setIgnoreCertificateOutOfDateError(Integer ignoreCertificateOutOfDateError) { this.ignoreCertificateOutOfDateError = ignoreCertificateOutOfDateError; } public Integer getIgnoreCertificateUsingError() { return this.ignoreCertificateUsingError; } public void setIgnoreCertificateUsingError(Integer ignoreCertificateUsingError) { this.ignoreCertificateUsingError = ignoreCertificateUsingError; } public Integer getVerifyWay() { return this.verifyWay; } public void setVerifyWay(Integer verifyWay) { this.verifyWay = verifyWay; } public String getValidateKeywords() { return this.validateKeywords; } public void setValidateKeywords(String validateKeywords) { this.validateKeywords = validateKeywords; } public String getWhiteList() { return this.whiteList; } public void setWhiteList(String whiteList) { this.whiteList = whiteList; } } public static class Website { private String targetUrl; private Integer automaticScrolling; private Integer customHeader; private Map<Object,Object> customHeaderContent; private Integer disableCache; private Integer disableCompression; private Integer filterInvalidIP; private Integer ignoreCertificateError; private Integer monitorTimeout; private Integer redirection; private Long slowElementThreshold; private Long waitCompletionTime; private String verifyStringBlacklist; private String verifyStringWhitelist; private String elementBlacklist; private String dNSHijackWhitelist; private String pageTamper; private Integer flowHijackJumpTimes; private String flowHijackLogo; public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public Integer getAutomaticScrolling() { return this.automaticScrolling; } public void setAutomaticScrolling(Integer automaticScrolling) { this.automaticScrolling = automaticScrolling; } public Integer getCustomHeader() { return this.customHeader; } public void setCustomHeader(Integer customHeader) { this.customHeader = customHeader; } public Map<Object,Object> getCustomHeaderContent() { return this.customHeaderContent; } public void setCustomHeaderContent(Map<Object,Object> customHeaderContent) { this.customHeaderContent = customHeaderContent; } public Integer getDisableCache() { return this.disableCache; } public void setDisableCache(Integer disableCache) { this.disableCache = disableCache; } public Integer getDisableCompression() { return this.disableCompression; } public void setDisableCompression(Integer disableCompression) { this.disableCompression = disableCompression; } public Integer getFilterInvalidIP() { return this.filterInvalidIP; } public void setFilterInvalidIP(Integer filterInvalidIP) { this.filterInvalidIP = filterInvalidIP; } public Integer getIgnoreCertificateError() { return this.ignoreCertificateError; } public void setIgnoreCertificateError(Integer ignoreCertificateError) { this.ignoreCertificateError = ignoreCertificateError; } public Integer getMonitorTimeout() { return this.monitorTimeout; } public void setMonitorTimeout(Integer monitorTimeout) { this.monitorTimeout = monitorTimeout; } public Integer getRedirection() { return this.redirection; } public void setRedirection(Integer redirection) { this.redirection = redirection; } public Long getSlowElementThreshold() { return this.slowElementThreshold; } public void setSlowElementThreshold(Long slowElementThreshold) { this.slowElementThreshold = slowElementThreshold; } public Long getWaitCompletionTime() { return this.waitCompletionTime; } public void setWaitCompletionTime(Long waitCompletionTime) { this.waitCompletionTime = waitCompletionTime; } public String getVerifyStringBlacklist() { return this.verifyStringBlacklist; } public void setVerifyStringBlacklist(String verifyStringBlacklist) { this.verifyStringBlacklist = verifyStringBlacklist; } public String getVerifyStringWhitelist() { return this.verifyStringWhitelist; } public void setVerifyStringWhitelist(String verifyStringWhitelist) { this.verifyStringWhitelist = verifyStringWhitelist; } public String getElementBlacklist() { return this.elementBlacklist; } public void setElementBlacklist(String elementBlacklist) { this.elementBlacklist = elementBlacklist; } public String getDNSHijackWhitelist() { return this.dNSHijackWhitelist; } public void setDNSHijackWhitelist(String dNSHijackWhitelist) { this.dNSHijackWhitelist = dNSHijackWhitelist; } public String getPageTamper() { return this.pageTamper; } public void setPageTamper(String pageTamper) { this.pageTamper = pageTamper; } public Integer getFlowHijackJumpTimes() { return this.flowHijackJumpTimes; } public void setFlowHijackJumpTimes(Integer flowHijackJumpTimes) { this.flowHijackJumpTimes = flowHijackJumpTimes; } public String getFlowHijackLogo() { return this.flowHijackLogo; } public void setFlowHijackLogo(String flowHijackLogo) { this.flowHijackLogo = flowHijackLogo; } } public static class Stream { private String targetUrl; private Integer streamType; private Integer streamMonitorTimeout; private Integer streamAddressType; private Integer playerType; private Map<Object,Object> customHeaderContent; private String whiteList; public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public Integer getStreamType() { return this.streamType; } public void setStreamType(Integer streamType) { this.streamType = streamType; } public Integer getStreamMonitorTimeout() { return this.streamMonitorTimeout; } public void setStreamMonitorTimeout(Integer streamMonitorTimeout) { this.streamMonitorTimeout = streamMonitorTimeout; } public Integer getStreamAddressType() { return this.streamAddressType; } public void setStreamAddressType(Integer streamAddressType) { this.streamAddressType = streamAddressType; } public Integer getPlayerType() { return this.playerType; } public void setPlayerType(Integer playerType) { this.playerType = playerType; } public Map<Object,Object> getCustomHeaderContent() { return this.customHeaderContent; } public void setCustomHeaderContent(Map<Object,Object> customHeaderContent) { this.customHeaderContent = customHeaderContent; } public String getWhiteList() { return this.whiteList; } public void setWhiteList(String whiteList) { this.whiteList = whiteList; } } } public static class CustomPeriod { private Long endHour; private Long startHour; public Long getEndHour() { return this.endHour; } public void setEndHour(Long endHour) { this.endHour = endHour; } public Long getStartHour() { return this.startHour; } public void setStartHour(Long startHour) { this.startHour = startHour; } } public static class CommonSetting { private Integer ipType; private Integer monitorSamples; private Boolean isOpenTrace; private Integer traceClientType; private String xtraceRegion; private CustomHost customHost; private CustomVPCSetting customVPCSetting; private CustomPrometheusSetting customPrometheusSetting; public Integer getIpType() { return this.ipType; } public void setIpType(Integer ipType) { this.ipType = ipType; } public Integer getMonitorSamples() { return this.monitorSamples; } public void setMonitorSamples(Integer monitorSamples) { this.monitorSamples = monitorSamples; } public Boolean getIsOpenTrace() { return this.isOpenTrace; } public void setIsOpenTrace(Boolean isOpenTrace) { this.isOpenTrace = isOpenTrace; } public Integer getTraceClientType() { return this.traceClientType; } public void setTraceClientType(Integer traceClientType) { this.traceClientType = traceClientType; } public String getXtraceRegion() { return this.xtraceRegion; } public void setXtraceRegion(String xtraceRegion) { this.xtraceRegion = xtraceRegion; } public CustomHost getCustomHost() { return this.customHost; } public void setCustomHost(CustomHost customHost) { this.customHost = customHost; } public CustomVPCSetting getCustomVPCSetting() { return this.customVPCSetting; } public void setCustomVPCSetting(CustomVPCSetting customVPCSetting) { this.customVPCSetting = customVPCSetting; } public CustomPrometheusSetting getCustomPrometheusSetting() { return this.customPrometheusSetting; } public void setCustomPrometheusSetting(CustomPrometheusSetting customPrometheusSetting) { this.customPrometheusSetting = customPrometheusSetting; } public static class CustomHost { private Integer selectType; private List<Host> hosts; public Integer getSelectType() { return this.selectType; } public void setSelectType(Integer selectType) { this.selectType = selectType; } public List<Host> getHosts() { return this.hosts; } public void setHosts(List<Host> hosts) { this.hosts = hosts; } public static class Host { private String domain; private Integer ipType; private List<String> ips; public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; } public Integer getIpType() { return this.ipType; } public void setIpType(Integer ipType) { this.ipType = ipType; } public List<String> getIps() { return this.ips; } public void setIps(List<String> ips) { this.ips = ips; } } } public static class CustomVPCSetting { private String regionId; private String vpcId; private String vSwitchId; private String secureGroupId; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getVpcId() { return this.vpcId; } public void setVpcId(String vpcId) { this.vpcId = vpcId; } public String getVSwitchId() { return this.vSwitchId; } public void setVSwitchId(String vSwitchId) { this.vSwitchId = vSwitchId; } public String getSecureGroupId() { return this.secureGroupId; } public void setSecureGroupId(String secureGroupId) { this.secureGroupId = secureGroupId; } } public static class CustomPrometheusSetting { private Map<Object,Object> prometheusLabels; private String prometheusClusterId; private String prometheusClusterRegion; public Map<Object,Object> getPrometheusLabels() { return this.prometheusLabels; } public void setPrometheusLabels(Map<Object,Object> prometheusLabels) { this.prometheusLabels = prometheusLabels; } public String getPrometheusClusterId() { return this.prometheusClusterId; } public void setPrometheusClusterId(String prometheusClusterId) { this.prometheusClusterId = prometheusClusterId; } public String getPrometheusClusterRegion() { return this.prometheusClusterRegion; } public void setPrometheusClusterRegion(String prometheusClusterRegion) { this.prometheusClusterRegion = prometheusClusterRegion; } } } } @Override public GetTimingSyntheticTaskResponse getInstance(UnmarshallerContext context) { return GetTimingSyntheticTaskResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetTraceAppConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetTraceAppConfigRequest extends RpcAcsRequest<GetTraceAppConfigResponse> { private String pid; public GetTraceAppConfigRequest() { super("ARMS", "2019-08-08", "GetTraceAppConfig", "arms"); setProtocol(ProtocolType.HTTPS); 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 getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } @Override public Class<GetTraceAppConfigResponse> getResponseClass() { return GetTraceAppConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetTraceAppConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetTraceAppConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetTraceAppConfigResponse extends AcsResponse { private String requestId; private String data; private String message; private Long code; private Boolean success; 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 getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Long getCode() { return this.code; } public void setCode(Long code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } @Override public GetTraceAppConfigResponse getInstance(UnmarshallerContext context) { return GetTraceAppConfigResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetTraceAppRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetTraceAppRequest extends RpcAcsRequest<GetTraceAppResponse> { private String pid; private List<Tags> tagss; public GetTraceAppRequest() { super("ARMS", "2019-08-08", "GetTraceApp", "arms"); 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 getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } public List<Tags> getTagss() { return this.tagss; } public void setTagss(List<Tags> tagss) { this.tagss = tagss; if (tagss != null) { for (int depth1 = 0; depth1 < tagss.size(); depth1++) { putQueryParameter("Tags." + (depth1 + 1) + ".Value" , tagss.get(depth1).getValue()); putQueryParameter("Tags." + (depth1 + 1) + ".Key" , tagss.get(depth1).getKey()); } } } public static class Tags { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<GetTraceAppResponse> getResponseClass() { return GetTraceAppResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetTraceAppResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetTraceAppResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetTraceAppResponse extends AcsResponse { private String requestId; private TraceApp traceApp; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public TraceApp getTraceApp() { return this.traceApp; } public void setTraceApp(TraceApp traceApp) { this.traceApp = traceApp; } public static class TraceApp { private String type; private String appName; private Long updateTime; private Boolean show; private Long createTime; private String pid; private Long appId; private String userId; private String regionId; private String source; private String resourceGroupId; private String clusterId; private String language; private List<TagsItem> tags; private List<String> labels; public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public Long getUpdateTime() { return this.updateTime; } public void setUpdateTime(Long updateTime) { this.updateTime = updateTime; } public Boolean getShow() { return this.show; } public void setShow(Boolean show) { this.show = show; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; } public Long getAppId() { return this.appId; } public void setAppId(Long appId) { this.appId = appId; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getSource() { return this.source; } public void setSource(String source) { this.source = source; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; } public List<TagsItem> getTags() { return this.tags; } public void setTags(List<TagsItem> tags) { this.tags = tags; } public List<String> getLabels() { return this.labels; } public void setLabels(List<String> labels) { this.labels = labels; } public static class TagsItem { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } @Override public GetTraceAppResponse getInstance(UnmarshallerContext context) { return GetTraceAppResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetTraceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class GetTraceRequest extends RpcAcsRequest<GetTraceResponse> { private String traceID; private Long pageSize; private Long endTime; private Long startTime; private Long pageNumber; public GetTraceRequest() { super("ARMS", "2019-08-08", "GetTrace", "arms"); 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 getTraceID() { return this.traceID; } public void setTraceID(String traceID) { this.traceID = traceID; if(traceID != null){ putQueryParameter("TraceID", traceID); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } 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 Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } @Override public Class<GetTraceResponse> getResponseClass() { return GetTraceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/GetTraceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.GetTraceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetTraceResponse extends AcsResponse { private String requestId; private List<Span> spans; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<Span> getSpans() { return this.spans; } public void setSpans(List<Span> spans) { this.spans = spans; } public static class Span { private String spanId; private String operationName; private String resultCode; private Long timestamp; private Integer rpcType; private String serviceIp; private Boolean haveStack; private String parentSpanId; private Long duration; private String rpcId; private String serviceName; private String traceID; private List<TagEntry> tagEntryList; private List<LogEvent> logEventList; private List<Map<Object,Object>> children; public String getSpanId() { return this.spanId; } public void setSpanId(String spanId) { this.spanId = spanId; } public String getOperationName() { return this.operationName; } public void setOperationName(String operationName) { this.operationName = operationName; } public String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public Long getTimestamp() { return this.timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } public Integer getRpcType() { return this.rpcType; } public void setRpcType(Integer rpcType) { this.rpcType = rpcType; } public String getServiceIp() { return this.serviceIp; } public void setServiceIp(String serviceIp) { this.serviceIp = serviceIp; } public Boolean getHaveStack() { return this.haveStack; } public void setHaveStack(Boolean haveStack) { this.haveStack = haveStack; } public String getParentSpanId() { return this.parentSpanId; } public void setParentSpanId(String parentSpanId) { this.parentSpanId = parentSpanId; } public Long getDuration() { return this.duration; } public void setDuration(Long duration) { this.duration = duration; } public String getRpcId() { return this.rpcId; } public void setRpcId(String rpcId) { this.rpcId = rpcId; } public String getServiceName() { return this.serviceName; } public void setServiceName(String serviceName) { this.serviceName = serviceName; } public String getTraceID() { return this.traceID; } public void setTraceID(String traceID) { this.traceID = traceID; } public List<TagEntry> getTagEntryList() { return this.tagEntryList; } public void setTagEntryList(List<TagEntry> tagEntryList) { this.tagEntryList = tagEntryList; } public List<LogEvent> getLogEventList() { return this.logEventList; } public void setLogEventList(List<LogEvent> logEventList) { this.logEventList = logEventList; } public List<Map<Object,Object>> getChildren() { return this.children; } public void setChildren(List<Map<Object,Object>> children) { this.children = children; } public static class TagEntry { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } public static class LogEvent { private Long timestamp; private List<TagEntry2> tagEntryList1; public Long getTimestamp() { return this.timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } public List<TagEntry2> getTagEntryList1() { return this.tagEntryList1; } public void setTagEntryList1(List<TagEntry2> tagEntryList1) { this.tagEntryList1 = tagEntryList1; } public static class TagEntry2 { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } } @Override public GetTraceResponse getInstance(UnmarshallerContext context) { return GetTraceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ImportAppAlertRulesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class ImportAppAlertRulesRequest extends RpcAcsRequest<ImportAppAlertRulesResponse> { private Boolean isAutoStart; private List<Tags> tagss; private String contactGroupIds; private String pids; private String templageAlertConfig; private String templateAlertId; public ImportAppAlertRulesRequest() { super("ARMS", "2019-08-08", "ImportAppAlertRules", "arms"); 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 Boolean getIsAutoStart() { return this.isAutoStart; } public void setIsAutoStart(Boolean isAutoStart) { this.isAutoStart = isAutoStart; if(isAutoStart != null){ putQueryParameter("IsAutoStart", isAutoStart.toString()); } } public List<Tags> getTagss() { return this.tagss; } public void setTagss(List<Tags> tagss) { this.tagss = tagss; if (tagss != null) { for (int depth1 = 0; depth1 < tagss.size(); depth1++) { putQueryParameter("Tags." + (depth1 + 1) + ".Value" , tagss.get(depth1).getValue()); putQueryParameter("Tags." + (depth1 + 1) + ".Key" , tagss.get(depth1).getKey()); } } } public String getContactGroupIds() { return this.contactGroupIds; } public void setContactGroupIds(String contactGroupIds) { this.contactGroupIds = contactGroupIds; if(contactGroupIds != null){ putQueryParameter("ContactGroupIds", contactGroupIds); } } public String getPids() { return this.pids; } public void setPids(String pids) { this.pids = pids; if(pids != null){ putQueryParameter("Pids", pids); } } public String getTemplageAlertConfig() { return this.templageAlertConfig; } public void setTemplageAlertConfig(String templageAlertConfig) { this.templageAlertConfig = templageAlertConfig; if(templageAlertConfig != null){ putQueryParameter("TemplageAlertConfig", templageAlertConfig); } } public String getTemplateAlertId() { return this.templateAlertId; } public void setTemplateAlertId(String templateAlertId) { this.templateAlertId = templateAlertId; if(templateAlertId != null){ putQueryParameter("TemplateAlertId", templateAlertId); } } public static class Tags { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<ImportAppAlertRulesResponse> getResponseClass() { return ImportAppAlertRulesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ImportAppAlertRulesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.ImportAppAlertRulesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ImportAppAlertRulesResponse extends AcsResponse { private String data; private String requestId; public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public ImportAppAlertRulesResponse getInstance(UnmarshallerContext context) { return ImportAppAlertRulesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/InitEnvironmentRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class InitEnvironmentRequest extends RpcAcsRequest<InitEnvironmentResponse> { private String aliyunLang; private Boolean createAuthToken; private String environmentId; private String managedType; public InitEnvironmentRequest() { super("ARMS", "2019-08-08", "InitEnvironment", "arms"); 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 getAliyunLang() { return this.aliyunLang; } public void setAliyunLang(String aliyunLang) { this.aliyunLang = aliyunLang; if(aliyunLang != null){ putQueryParameter("AliyunLang", aliyunLang); } } public Boolean getCreateAuthToken() { return this.createAuthToken; } public void setCreateAuthToken(Boolean createAuthToken) { this.createAuthToken = createAuthToken; if(createAuthToken != null){ putQueryParameter("CreateAuthToken", createAuthToken.toString()); } } public String getEnvironmentId() { return this.environmentId; } public void setEnvironmentId(String environmentId) { this.environmentId = environmentId; if(environmentId != null){ putQueryParameter("EnvironmentId", environmentId); } } public String getManagedType() { return this.managedType; } public void setManagedType(String managedType) { this.managedType = managedType; if(managedType != null){ putQueryParameter("ManagedType", managedType); } } @Override public Class<InitEnvironmentResponse> getResponseClass() { return InitEnvironmentResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/InitEnvironmentResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.InitEnvironmentResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class InitEnvironmentResponse extends AcsResponse { private String requestId; private Integer code; private String data; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public InitEnvironmentResponse getInstance(UnmarshallerContext context) { return InitEnvironmentResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/InstallAddonRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class InstallAddonRequest extends RpcAcsRequest<InstallAddonResponse> { private String addonVersion; private Boolean dryRun; private String aliyunLang; private String values; private String releaseName; private String environmentId; private String name; public InstallAddonRequest() { super("ARMS", "2019-08-08", "InstallAddon", "arms"); 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 getAddonVersion() { return this.addonVersion; } public void setAddonVersion(String addonVersion) { this.addonVersion = addonVersion; if(addonVersion != null){ putQueryParameter("AddonVersion", addonVersion); } } public Boolean getDryRun() { return this.dryRun; } public void setDryRun(Boolean dryRun) { this.dryRun = dryRun; if(dryRun != null){ putQueryParameter("DryRun", dryRun.toString()); } } public String getAliyunLang() { return this.aliyunLang; } public void setAliyunLang(String aliyunLang) { this.aliyunLang = aliyunLang; if(aliyunLang != null){ putQueryParameter("AliyunLang", aliyunLang); } } public String getValues() { return this.values; } public void setValues(String values) { this.values = values; if(values != null){ putQueryParameter("Values", values); } } public String getReleaseName() { return this.releaseName; } public void setReleaseName(String releaseName) { this.releaseName = releaseName; if(releaseName != null){ putQueryParameter("ReleaseName", releaseName); } } public String getEnvironmentId() { return this.environmentId; } public void setEnvironmentId(String environmentId) { this.environmentId = environmentId; if(environmentId != null){ putQueryParameter("EnvironmentId", environmentId); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } @Override public Class<InstallAddonResponse> getResponseClass() { return InstallAddonResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/InstallAddonResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.InstallAddonResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class InstallAddonResponse extends AcsResponse { private String requestId; private Integer code; private Boolean success; private String message; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } 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 Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String addonName; private Long alertRuleCount; private String createTime; private Long dashboardCount; private Long exporterCount; private Boolean haveConfig; private String installUserId; private String language; private String releaseId; private String releaseName; private String scene; private String status; private String updateTime; private String userId; private String version; private String environmentId; private String regionId; private Boolean managed; private List<ConditionsItem> conditions; public String getAddonName() { return this.addonName; } public void setAddonName(String addonName) { this.addonName = addonName; } public Long getAlertRuleCount() { return this.alertRuleCount; } public void setAlertRuleCount(Long alertRuleCount) { this.alertRuleCount = alertRuleCount; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public Long getDashboardCount() { return this.dashboardCount; } public void setDashboardCount(Long dashboardCount) { this.dashboardCount = dashboardCount; } public Long getExporterCount() { return this.exporterCount; } public void setExporterCount(Long exporterCount) { this.exporterCount = exporterCount; } public Boolean getHaveConfig() { return this.haveConfig; } public void setHaveConfig(Boolean haveConfig) { this.haveConfig = haveConfig; } public String getInstallUserId() { return this.installUserId; } public void setInstallUserId(String installUserId) { this.installUserId = installUserId; } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; } public String getReleaseId() { return this.releaseId; } public void setReleaseId(String releaseId) { this.releaseId = releaseId; } public String getReleaseName() { return this.releaseName; } public void setReleaseName(String releaseName) { this.releaseName = releaseName; } public String getScene() { return this.scene; } public void setScene(String scene) { this.scene = scene; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getUpdateTime() { return this.updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public String getVersion() { return this.version; } public void setVersion(String version) { this.version = version; } public String getEnvironmentId() { return this.environmentId; } public void setEnvironmentId(String environmentId) { this.environmentId = environmentId; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public Boolean getManaged() { return this.managed; } public void setManaged(Boolean managed) { this.managed = managed; } public List<ConditionsItem> getConditions() { return this.conditions; } public void setConditions(List<ConditionsItem> conditions) { this.conditions = conditions; } public static class ConditionsItem { private String firstTransitionTime; private String lastTransitionTime; private String message; private String reason; private String status; private String type; public String getFirstTransitionTime() { return this.firstTransitionTime; } public void setFirstTransitionTime(String firstTransitionTime) { this.firstTransitionTime = firstTransitionTime; } public String getLastTransitionTime() { return this.lastTransitionTime; } public void setLastTransitionTime(String lastTransitionTime) { this.lastTransitionTime = lastTransitionTime; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getReason() { return this.reason; } public void setReason(String reason) { this.reason = reason; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } } } @Override public InstallAddonResponse getInstance(UnmarshallerContext context) { return InstallAddonResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/InstallCmsExporterRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class InstallCmsExporterRequest extends RpcAcsRequest<InstallCmsExporterResponse> { private String clusterId; private String directArgs; private String cmsArgs; private Boolean enableTag; public InstallCmsExporterRequest() { super("ARMS", "2019-08-08", "InstallCmsExporter", "arms"); 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 getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public String getDirectArgs() { return this.directArgs; } public void setDirectArgs(String directArgs) { this.directArgs = directArgs; if(directArgs != null){ putQueryParameter("DirectArgs", directArgs); } } public String getCmsArgs() { return this.cmsArgs; } public void setCmsArgs(String cmsArgs) { this.cmsArgs = cmsArgs; if(cmsArgs != null){ putQueryParameter("CmsArgs", cmsArgs); } } public Boolean getEnableTag() { return this.enableTag; } public void setEnableTag(Boolean enableTag) { this.enableTag = enableTag; if(enableTag != null){ putQueryParameter("EnableTag", enableTag.toString()); } } @Override public Class<InstallCmsExporterResponse> getResponseClass() { return InstallCmsExporterResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/InstallCmsExporterResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.InstallCmsExporterResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class InstallCmsExporterResponse extends AcsResponse { private String requestId; private String data; 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; } @Override public InstallCmsExporterResponse getInstance(UnmarshallerContext context) { return InstallCmsExporterResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/InstallEnvironmentFeatureRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class InstallEnvironmentFeatureRequest extends RpcAcsRequest<InstallEnvironmentFeatureResponse> { private String aliyunLang; private String featureName; private String environmentId; private String featureVersion; private String region; private String config; public InstallEnvironmentFeatureRequest() { super("ARMS", "2019-08-08", "InstallEnvironmentFeature", "arms"); 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 getAliyunLang() { return this.aliyunLang; } public void setAliyunLang(String aliyunLang) { this.aliyunLang = aliyunLang; if(aliyunLang != null){ putQueryParameter("AliyunLang", aliyunLang); } } public String getFeatureName() { return this.featureName; } public void setFeatureName(String featureName) { this.featureName = featureName; if(featureName != null){ putQueryParameter("FeatureName", featureName); } } public String getEnvironmentId() { return this.environmentId; } public void setEnvironmentId(String environmentId) { this.environmentId = environmentId; if(environmentId != null){ putQueryParameter("EnvironmentId", environmentId); } } public String getFeatureVersion() { return this.featureVersion; } public void setFeatureVersion(String featureVersion) { this.featureVersion = featureVersion; if(featureVersion != null){ putQueryParameter("FeatureVersion", featureVersion); } } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("Region", region); } } public String getConfig() { return this.config; } public void setConfig(String config) { this.config = config; if(config != null){ putQueryParameter("Config", config); } } @Override public Class<InstallEnvironmentFeatureResponse> getResponseClass() { return InstallEnvironmentFeatureResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/InstallEnvironmentFeatureResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.InstallEnvironmentFeatureResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class InstallEnvironmentFeatureResponse extends AcsResponse { private String requestId; private Integer code; private String message; private Boolean success; private String data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } @Override public InstallEnvironmentFeatureResponse getInstance(UnmarshallerContext context) { return InstallEnvironmentFeatureResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/InstallManagedPrometheusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class InstallManagedPrometheusRequest extends RpcAcsRequest<InstallManagedPrometheusResponse> { private String grafanaInstanceId; private String clusterName; private String securityGroupId; private String clusterId; private String kubeConfig; private String clusterType; private String vSwitchId; private String vcExtraInfo; private String resourceGroupId; private String vpcId; public InstallManagedPrometheusRequest() { super("ARMS", "2019-08-08", "InstallManagedPrometheus", "arms"); 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 getGrafanaInstanceId() { return this.grafanaInstanceId; } public void setGrafanaInstanceId(String grafanaInstanceId) { this.grafanaInstanceId = grafanaInstanceId; if(grafanaInstanceId != null){ putQueryParameter("GrafanaInstanceId", grafanaInstanceId); } } public String getClusterName() { return this.clusterName; } public void setClusterName(String clusterName) { this.clusterName = clusterName; if(clusterName != null){ putQueryParameter("ClusterName", clusterName); } } public String getSecurityGroupId() { return this.securityGroupId; } public void setSecurityGroupId(String securityGroupId) { this.securityGroupId = securityGroupId; if(securityGroupId != null){ putQueryParameter("SecurityGroupId", securityGroupId); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public String getKubeConfig() { return this.kubeConfig; } public void setKubeConfig(String kubeConfig) { this.kubeConfig = kubeConfig; if(kubeConfig != null){ putQueryParameter("KubeConfig", kubeConfig); } } public String getClusterType() { return this.clusterType; } public void setClusterType(String clusterType) { this.clusterType = clusterType; if(clusterType != null){ putQueryParameter("ClusterType", clusterType); } } public String getVSwitchId() { return this.vSwitchId; } public void setVSwitchId(String vSwitchId) { this.vSwitchId = vSwitchId; if(vSwitchId != null){ putQueryParameter("VSwitchId", vSwitchId); } } public String getVcExtraInfo() { return this.vcExtraInfo; } public void setVcExtraInfo(String vcExtraInfo) { this.vcExtraInfo = vcExtraInfo; if(vcExtraInfo != null){ putQueryParameter("VcExtraInfo", vcExtraInfo); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public String getVpcId() { return this.vpcId; } public void setVpcId(String vpcId) { this.vpcId = vpcId; if(vpcId != null){ putQueryParameter("VpcId", vpcId); } } @Override public Class<InstallManagedPrometheusResponse> getResponseClass() { return InstallManagedPrometheusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/InstallManagedPrometheusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.InstallManagedPrometheusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class InstallManagedPrometheusResponse extends AcsResponse { private String requestId; private String data; private Boolean success; private String message; private Integer code; 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 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 Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } @Override public InstallManagedPrometheusResponse getInstance(UnmarshallerContext context) { return InstallManagedPrometheusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ListActivatedAlertsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class ListActivatedAlertsRequest extends RpcAcsRequest<ListActivatedAlertsResponse> { private String filter; private Integer pageSize; private Integer currentPage; public ListActivatedAlertsRequest() { super("ARMS", "2019-08-08", "ListActivatedAlerts", "arms"); 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 getFilter() { return this.filter; } public void setFilter(String filter) { this.filter = filter; if(filter != null){ putQueryParameter("Filter", filter); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putQueryParameter("CurrentPage", currentPage.toString()); } } @Override public Class<ListActivatedAlertsResponse> getResponseClass() { return ListActivatedAlertsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ListActivatedAlertsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.ListActivatedAlertsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListActivatedAlertsResponse extends AcsResponse { private String requestId; private String message; private Page page; 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 Page getPage() { return this.page; } public void setPage(Page page) { this.page = page; } public static class Page { private Integer pageSize; private Integer total; private Integer page; private List<Alert> alerts; 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 Integer getPage() { return this.page; } public void setPage(Integer page) { this.page = page; } public List<Alert> getAlerts() { return this.alerts; } public void setAlerts(List<Alert> alerts) { this.alerts = alerts; } public static class Alert { private String status; private String severity; private String integrationName; private Long createTime; private String message; private String alertType; private String involvedObjectName; private String alertName; private Integer count; private Map<Object,Object> expandFields; private Long endsAt; private String involvedObjectKind; private String integrationType; private Long startsAt; private String alertId; private List<DispatchRule> dispatchRules; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getSeverity() { return this.severity; } public void setSeverity(String severity) { this.severity = severity; } public String getIntegrationName() { return this.integrationName; } public void setIntegrationName(String integrationName) { this.integrationName = integrationName; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getAlertType() { return this.alertType; } public void setAlertType(String alertType) { this.alertType = alertType; } public String getInvolvedObjectName() { return this.involvedObjectName; } public void setInvolvedObjectName(String involvedObjectName) { this.involvedObjectName = involvedObjectName; } public String getAlertName() { return this.alertName; } public void setAlertName(String alertName) { this.alertName = alertName; } public Integer getCount() { return this.count; } public void setCount(Integer count) { this.count = count; } public Map<Object,Object> getExpandFields() { return this.expandFields; } public void setExpandFields(Map<Object,Object> expandFields) { this.expandFields = expandFields; } public Long getEndsAt() { return this.endsAt; } public void setEndsAt(Long endsAt) { this.endsAt = endsAt; } public String getInvolvedObjectKind() { return this.involvedObjectKind; } public void setInvolvedObjectKind(String involvedObjectKind) { this.involvedObjectKind = involvedObjectKind; } public String getIntegrationType() { return this.integrationType; } public void setIntegrationType(String integrationType) { this.integrationType = integrationType; } public Long getStartsAt() { return this.startsAt; } public void setStartsAt(Long startsAt) { this.startsAt = startsAt; } public String getAlertId() { return this.alertId; } public void setAlertId(String alertId) { this.alertId = alertId; } public List<DispatchRule> getDispatchRules() { return this.dispatchRules; } public void setDispatchRules(List<DispatchRule> dispatchRules) { this.dispatchRules = dispatchRules; } public static class DispatchRule { private Integer ruleId; private String ruleName; public Integer getRuleId() { return this.ruleId; } public void setRuleId(Integer ruleId) { this.ruleId = ruleId; } public String getRuleName() { return this.ruleName; } public void setRuleName(String ruleName) { this.ruleName = ruleName; } } } } @Override public ListActivatedAlertsResponse getInstance(UnmarshallerContext context) { return ListActivatedAlertsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ListAddonReleasesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class ListAddonReleasesRequest extends RpcAcsRequest<ListAddonReleasesResponse> { private String environmentId; private String addonName; public ListAddonReleasesRequest() { super("ARMS", "2019-08-08", "ListAddonReleases", "arms"); 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 getEnvironmentId() { return this.environmentId; } public void setEnvironmentId(String environmentId) { this.environmentId = environmentId; if(environmentId != null){ putQueryParameter("EnvironmentId", environmentId); } } public String getAddonName() { return this.addonName; } public void setAddonName(String addonName) { this.addonName = addonName; if(addonName != null){ putQueryParameter("AddonName", addonName); } } @Override public Class<ListAddonReleasesResponse> getResponseClass() { return ListAddonReleasesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ListAddonReleasesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.ListAddonReleasesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListAddonReleasesResponse extends AcsResponse { private String requestId; private Integer code; private Boolean success; private String message; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } 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 Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long total; private List<ReleasesItem> releases; public Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public List<ReleasesItem> getReleases() { return this.releases; } public void setReleases(List<ReleasesItem> releases) { this.releases = releases; } public static class ReleasesItem { private String addonName; private Long alertRuleCount; private String createTime; private Long dashboardCount; private Long exporterCount; private Boolean haveConfig; private String installUserId; private String language; private String releaseId; private String releaseName; private String scene; private String status; private String updateTime; private String userId; private String version; private String environmentId; private String regionId; private Boolean managed; private String nextVersion; private String config; private List<ConditionsItem> conditions; public String getAddonName() { return this.addonName; } public void setAddonName(String addonName) { this.addonName = addonName; } public Long getAlertRuleCount() { return this.alertRuleCount; } public void setAlertRuleCount(Long alertRuleCount) { this.alertRuleCount = alertRuleCount; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public Long getDashboardCount() { return this.dashboardCount; } public void setDashboardCount(Long dashboardCount) { this.dashboardCount = dashboardCount; } public Long getExporterCount() { return this.exporterCount; } public void setExporterCount(Long exporterCount) { this.exporterCount = exporterCount; } public Boolean getHaveConfig() { return this.haveConfig; } public void setHaveConfig(Boolean haveConfig) { this.haveConfig = haveConfig; } public String getInstallUserId() { return this.installUserId; } public void setInstallUserId(String installUserId) { this.installUserId = installUserId; } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; } public String getReleaseId() { return this.releaseId; } public void setReleaseId(String releaseId) { this.releaseId = releaseId; } public String getReleaseName() { return this.releaseName; } public void setReleaseName(String releaseName) { this.releaseName = releaseName; } public String getScene() { return this.scene; } public void setScene(String scene) { this.scene = scene; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getUpdateTime() { return this.updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public String getVersion() { return this.version; } public void setVersion(String version) { this.version = version; } public String getEnvironmentId() { return this.environmentId; } public void setEnvironmentId(String environmentId) { this.environmentId = environmentId; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public Boolean getManaged() { return this.managed; } public void setManaged(Boolean managed) { this.managed = managed; } public String getNextVersion() { return this.nextVersion; } public void setNextVersion(String nextVersion) { this.nextVersion = nextVersion; } public String getConfig() { return this.config; } public void setConfig(String config) { this.config = config; } public List<ConditionsItem> getConditions() { return this.conditions; } public void setConditions(List<ConditionsItem> conditions) { this.conditions = conditions; } public static class ConditionsItem { private String firstTransitionTime; private String lastTransitionTime; private String message; private String reason; private String status; private String type; public String getFirstTransitionTime() { return this.firstTransitionTime; } public void setFirstTransitionTime(String firstTransitionTime) { this.firstTransitionTime = firstTransitionTime; } public String getLastTransitionTime() { return this.lastTransitionTime; } public void setLastTransitionTime(String lastTransitionTime) { this.lastTransitionTime = lastTransitionTime; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getReason() { return this.reason; } public void setReason(String reason) { this.reason = reason; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } } } } @Override public ListAddonReleasesResponse getInstance(UnmarshallerContext context) { return ListAddonReleasesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ListAddonsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class ListAddonsRequest extends RpcAcsRequest<ListAddonsResponse> { private Boolean regexp; private String aliyunLang; private String search; private String category; public ListAddonsRequest() { super("ARMS", "2019-08-08", "ListAddons", "arms"); 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 Boolean getRegexp() { return this.regexp; } public void setRegexp(Boolean regexp) { this.regexp = regexp; if(regexp != null){ putQueryParameter("Regexp", regexp.toString()); } } public String getAliyunLang() { return this.aliyunLang; } public void setAliyunLang(String aliyunLang) { this.aliyunLang = aliyunLang; if(aliyunLang != null){ putQueryParameter("AliyunLang", aliyunLang); } } public String getSearch() { return this.search; } public void setSearch(String search) { this.search = search; if(search != null){ putQueryParameter("Search", search); } } public String getCategory() { return this.category; } public void setCategory(String category) { this.category = category; if(category != null){ putQueryParameter("Category", category); } } @Override public Class<ListAddonsResponse> getResponseClass() { return ListAddonsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ListAddonsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.ListAddonsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListAddonsResponse extends AcsResponse { private String requestId; private Integer code; private String message; private Boolean success; private List<DataItem> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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 alias; private String description; private String icon; private String language; private String name; private Boolean once; private String scene; private String version; private String weight; private String latestReleaseCreateTime; private List<DashboardsItem> dashboards; private List<EnvironmentsItem> environments; private List<String> categories; private List<String> keywords; public String getAlias() { return this.alias; } public void setAlias(String alias) { this.alias = alias; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getIcon() { return this.icon; } public void setIcon(String icon) { this.icon = icon; } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Boolean getOnce() { return this.once; } public void setOnce(Boolean once) { this.once = once; } public String getScene() { return this.scene; } public void setScene(String scene) { this.scene = scene; } public String getVersion() { return this.version; } public void setVersion(String version) { this.version = version; } public String getWeight() { return this.weight; } public void setWeight(String weight) { this.weight = weight; } public String getLatestReleaseCreateTime() { return this.latestReleaseCreateTime; } public void setLatestReleaseCreateTime(String latestReleaseCreateTime) { this.latestReleaseCreateTime = latestReleaseCreateTime; } public List<DashboardsItem> getDashboards() { return this.dashboards; } public void setDashboards(List<DashboardsItem> dashboards) { this.dashboards = dashboards; } public List<EnvironmentsItem> getEnvironments() { return this.environments; } public void setEnvironments(List<EnvironmentsItem> environments) { this.environments = environments; } public List<String> getCategories() { return this.categories; } public void setCategories(List<String> categories) { this.categories = categories; } public List<String> getKeywords() { return this.keywords; } public void setKeywords(List<String> keywords) { this.keywords = keywords; } public static class DashboardsItem { private String description; private String name; private String url; 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; } public String getUrl() { return this.url; } public void setUrl(String url) { this.url = url; } } public static class EnvironmentsItem { private String description; private Boolean enable; private String label; private String name; private Dependencies dependencies; private Policies policies; public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public Boolean getEnable() { return this.enable; } public void setEnable(Boolean enable) { this.enable = enable; } public String getLabel() { return this.label; } public void setLabel(String label) { this.label = label; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Dependencies getDependencies() { return this.dependencies; } public void setDependencies(Dependencies dependencies) { this.dependencies = dependencies; } public Policies getPolicies() { return this.policies; } public void setPolicies(Policies policies) { this.policies = policies; } public static class Dependencies { private Map<Object,Object> features; private List<String> services; private List<String> clusterTypes; public Map<Object,Object> getFeatures() { return this.features; } public void setFeatures(Map<Object,Object> features) { this.features = features; } public List<String> getServices() { return this.services; } public void setServices(List<String> services) { this.services = services; } public List<String> getClusterTypes() { return this.clusterTypes; } public void setClusterTypes(List<String> clusterTypes) { this.clusterTypes = clusterTypes; } } public static class Policies { private String alertDefaultStatus; private Boolean defaultInstall; private String targetAddonName; private Boolean enableServiceAccount; private Boolean needRestartAfterIntegration; private List<ProtocolsItem> protocols; private MetricCheckRule metricCheckRule; public String getAlertDefaultStatus() { return this.alertDefaultStatus; } public void setAlertDefaultStatus(String alertDefaultStatus) { this.alertDefaultStatus = alertDefaultStatus; } public Boolean getDefaultInstall() { return this.defaultInstall; } public void setDefaultInstall(Boolean defaultInstall) { this.defaultInstall = defaultInstall; } public String getTargetAddonName() { return this.targetAddonName; } public void setTargetAddonName(String targetAddonName) { this.targetAddonName = targetAddonName; } public Boolean getEnableServiceAccount() { return this.enableServiceAccount; } public void setEnableServiceAccount(Boolean enableServiceAccount) { this.enableServiceAccount = enableServiceAccount; } public Boolean getNeedRestartAfterIntegration() { return this.needRestartAfterIntegration; } public void setNeedRestartAfterIntegration(Boolean needRestartAfterIntegration) { this.needRestartAfterIntegration = needRestartAfterIntegration; } public List<ProtocolsItem> getProtocols() { return this.protocols; } public void setProtocols(List<ProtocolsItem> protocols) { this.protocols = protocols; } public MetricCheckRule getMetricCheckRule() { return this.metricCheckRule; } public void setMetricCheckRule(MetricCheckRule metricCheckRule) { this.metricCheckRule = metricCheckRule; } public static class ProtocolsItem { private String name; private String label; private String icon; private String description; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getLabel() { return this.label; } public void setLabel(String label) { this.label = label; } public String getIcon() { return this.icon; } public void setIcon(String icon) { this.icon = icon; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } } public static class MetricCheckRule { private List<String> promQL; public List<String> getPromQL() { return this.promQL; } public void setPromQL(List<String> promQL) { this.promQL = promQL; } } } } } @Override public ListAddonsResponse getInstance(UnmarshallerContext context) { return ListAddonsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ListAlertEventsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class ListAlertEventsRequest extends RpcAcsRequest<ListAlertEventsResponse> { private String alertName; private String endTime; private String startTime; private Long size; private String matchingConditions; private Boolean showNotificationPolicies; private Long page; private String status; public ListAlertEventsRequest() { super("ARMS", "2019-08-08", "ListAlertEvents", "arms"); 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 getAlertName() { return this.alertName; } public void setAlertName(String alertName) { this.alertName = alertName; if(alertName != null){ putQueryParameter("AlertName", alertName); } } 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 Long getSize() { return this.size; } public void setSize(Long size) { this.size = size; if(size != null){ putQueryParameter("Size", size.toString()); } } public String getMatchingConditions() { return this.matchingConditions; } public void setMatchingConditions(String matchingConditions) { this.matchingConditions = matchingConditions; if(matchingConditions != null){ putQueryParameter("MatchingConditions", matchingConditions); } } public Boolean getShowNotificationPolicies() { return this.showNotificationPolicies; } public void setShowNotificationPolicies(Boolean showNotificationPolicies) { this.showNotificationPolicies = showNotificationPolicies; if(showNotificationPolicies != null){ putQueryParameter("ShowNotificationPolicies", showNotificationPolicies.toString()); } } public Long getPage() { return this.page; } public void setPage(Long page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; if(status != null){ putQueryParameter("Status", status); } } @Override public Class<ListAlertEventsResponse> getResponseClass() { return ListAlertEventsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ListAlertEventsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.ListAlertEventsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListAlertEventsResponse extends AcsResponse { private String requestId; private PageBean pageBean; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public PageBean getPageBean() { return this.pageBean; } public void setPageBean(PageBean pageBean) { this.pageBean = pageBean; } public static class PageBean { private Long total; private Long page; private Long size; private List<EventsItem> events; public Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public Long getPage() { return this.page; } public void setPage(Long page) { this.page = page; } public Long getSize() { return this.size; } public void setSize(Long size) { this.size = size; } public List<EventsItem> getEvents() { return this.events; } public void setEvents(List<EventsItem> events) { this.events = events; } public static class EventsItem { private String alertName; private String severity; private String status; private String startTime; private String endTime; private String receiveTime; private String integrationName; private String integrationType; private String generatorURL; private String description; private String annotations; private String labels; private String handlerName; private Long triggerCount; private List<AlarmsItem> alarms; private List<NotificationPolicy> notificationPolicies; public String getAlertName() { return this.alertName; } public void setAlertName(String alertName) { this.alertName = alertName; } public String getSeverity() { return this.severity; } public void setSeverity(String severity) { this.severity = severity; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; } public String getReceiveTime() { return this.receiveTime; } public void setReceiveTime(String receiveTime) { this.receiveTime = receiveTime; } public String getIntegrationName() { return this.integrationName; } public void setIntegrationName(String integrationName) { this.integrationName = integrationName; } public String getIntegrationType() { return this.integrationType; } public void setIntegrationType(String integrationType) { this.integrationType = integrationType; } public String getGeneratorURL() { return this.generatorURL; } public void setGeneratorURL(String generatorURL) { this.generatorURL = generatorURL; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getAnnotations() { return this.annotations; } public void setAnnotations(String annotations) { this.annotations = annotations; } public String getLabels() { return this.labels; } public void setLabels(String labels) { this.labels = labels; } public String getHandlerName() { return this.handlerName; } public void setHandlerName(String handlerName) { this.handlerName = handlerName; } public Long getTriggerCount() { return this.triggerCount; } public void setTriggerCount(Long triggerCount) { this.triggerCount = triggerCount; } public List<AlarmsItem> getAlarms() { return this.alarms; } public void setAlarms(List<AlarmsItem> alarms) { this.alarms = alarms; } public List<NotificationPolicy> getNotificationPolicies() { return this.notificationPolicies; } public void setNotificationPolicies(List<NotificationPolicy> notificationPolicies) { this.notificationPolicies = notificationPolicies; } public static class AlarmsItem { private Long alarmId; private String alarmName; private Integer state; private String createTime; public Long getAlarmId() { return this.alarmId; } public void setAlarmId(Long alarmId) { this.alarmId = alarmId; } public String getAlarmName() { return this.alarmName; } public void setAlarmName(String alarmName) { this.alarmName = alarmName; } public Integer getState() { return this.state; } public void setState(Integer state) { this.state = state; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } } public static class NotificationPolicy { private Long id; private String name; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } } } @Override public ListAlertEventsResponse getInstance(UnmarshallerContext context) { return ListAlertEventsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ListAlertsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class ListAlertsRequest extends RpcAcsRequest<ListAlertsResponse> { private String severity; private String owner; private String integrationType; private String alertName; private Boolean showActivities; private String endTime; private Long dispatchRuleId; private String startTime; private Boolean showEvents; private Long size; private Long state; private Long page; public ListAlertsRequest() { super("ARMS", "2019-08-08", "ListAlerts", "arms"); 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 getSeverity() { return this.severity; } public void setSeverity(String severity) { this.severity = severity; if(severity != null){ putQueryParameter("Severity", severity); } } public String getOwner() { return this.owner; } public void setOwner(String owner) { this.owner = owner; if(owner != null){ putQueryParameter("Owner", owner); } } public String getIntegrationType() { return this.integrationType; } public void setIntegrationType(String integrationType) { this.integrationType = integrationType; if(integrationType != null){ putQueryParameter("IntegrationType", integrationType); } } public String getAlertName() { return this.alertName; } public void setAlertName(String alertName) { this.alertName = alertName; if(alertName != null){ putQueryParameter("AlertName", alertName); } } public Boolean getShowActivities() { return this.showActivities; } public void setShowActivities(Boolean showActivities) { this.showActivities = showActivities; if(showActivities != null){ putQueryParameter("ShowActivities", showActivities.toString()); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("EndTime", endTime); } } public Long getDispatchRuleId() { return this.dispatchRuleId; } public void setDispatchRuleId(Long dispatchRuleId) { this.dispatchRuleId = dispatchRuleId; if(dispatchRuleId != null){ putQueryParameter("DispatchRuleId", dispatchRuleId.toString()); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime); } } public Boolean getShowEvents() { return this.showEvents; } public void setShowEvents(Boolean showEvents) { this.showEvents = showEvents; if(showEvents != null){ putQueryParameter("ShowEvents", showEvents.toString()); } } public Long getSize() { return this.size; } public void setSize(Long size) { this.size = size; if(size != null){ putQueryParameter("Size", size.toString()); } } public Long getState() { return this.state; } public void setState(Long state) { this.state = state; if(state != null){ putQueryParameter("State", state.toString()); } } public Long getPage() { return this.page; } public void setPage(Long page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } @Override public Class<ListAlertsResponse> getResponseClass() { return ListAlertsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ListAlertsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.ListAlertsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListAlertsResponse extends AcsResponse { private String requestId; private String message; private PageBean pageBean; 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 PageBean getPageBean() { return this.pageBean; } public void setPageBean(PageBean pageBean) { this.pageBean = pageBean; } public static class PageBean { private Long total; private Long page; private Long size; private List<ListAlertsItem> listAlerts; public Long getTotal() { return this.total; } public void setTotal(Long total) { this.total = total; } public Long getPage() { return this.page; } public void setPage(Long page) { this.page = page; } public Long getSize() { return this.size; } public void setSize(Long size) { this.size = size; } public List<ListAlertsItem> getListAlerts() { return this.listAlerts; } public void setListAlerts(List<ListAlertsItem> listAlerts) { this.listAlerts = listAlerts; } public static class ListAlertsItem { private String alertName; private String severity; private Long state; private Float dispatchRuleId; private String dispatchRuleName; private String createTime; private Long alertId; private String solution; private String owner; private String handler; private Long acknowledgeTime; private Long recoverTime; private String notifyRobots; private String describe; private List<ActivitiesItem> activities; private List<AlertEventsItem> alertEvents; public String getAlertName() { return this.alertName; } public void setAlertName(String alertName) { this.alertName = alertName; } public String getSeverity() { return this.severity; } public void setSeverity(String severity) { this.severity = severity; } public Long getState() { return this.state; } public void setState(Long state) { this.state = state; } public Float getDispatchRuleId() { return this.dispatchRuleId; } public void setDispatchRuleId(Float dispatchRuleId) { this.dispatchRuleId = dispatchRuleId; } public String getDispatchRuleName() { return this.dispatchRuleName; } public void setDispatchRuleName(String dispatchRuleName) { this.dispatchRuleName = dispatchRuleName; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public Long getAlertId() { return this.alertId; } public void setAlertId(Long alertId) { this.alertId = alertId; } public String getSolution() { return this.solution; } public void setSolution(String solution) { this.solution = solution; } public String getOwner() { return this.owner; } public void setOwner(String owner) { this.owner = owner; } public String getHandler() { return this.handler; } public void setHandler(String handler) { this.handler = handler; } public Long getAcknowledgeTime() { return this.acknowledgeTime; } public void setAcknowledgeTime(Long acknowledgeTime) { this.acknowledgeTime = acknowledgeTime; } public Long getRecoverTime() { return this.recoverTime; } public void setRecoverTime(Long recoverTime) { this.recoverTime = recoverTime; } public String getNotifyRobots() { return this.notifyRobots; } public void setNotifyRobots(String notifyRobots) { this.notifyRobots = notifyRobots; } public String getDescribe() { return this.describe; } public void setDescribe(String describe) { this.describe = describe; } public List<ActivitiesItem> getActivities() { return this.activities; } public void setActivities(List<ActivitiesItem> activities) { this.activities = activities; } public List<AlertEventsItem> getAlertEvents() { return this.alertEvents; } public void setAlertEvents(List<AlertEventsItem> alertEvents) { this.alertEvents = alertEvents; } public static class ActivitiesItem { private String time; private Long type; private String handlerName; private String description; private String content; public String getTime() { return this.time; } public void setTime(String time) { this.time = time; } public Long getType() { return this.type; } public void setType(Long type) { this.type = type; } public String getHandlerName() { return this.handlerName; } public void setHandlerName(String handlerName) { this.handlerName = handlerName; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getContent() { return this.content; } public void setContent(String content) { this.content = content; } } public static class AlertEventsItem { private String alertName; private String severity; private String state; private String startTime; private String endTime; private String receiveTime; private String integrationName; private String integrationType; private String generatorURL; private String description; private String annotations; private String labels; public String getAlertName() { return this.alertName; } public void setAlertName(String alertName) { this.alertName = alertName; } public String getSeverity() { return this.severity; } public void setSeverity(String severity) { this.severity = severity; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; } public String getReceiveTime() { return this.receiveTime; } public void setReceiveTime(String receiveTime) { this.receiveTime = receiveTime; } public String getIntegrationName() { return this.integrationName; } public void setIntegrationName(String integrationName) { this.integrationName = integrationName; } public String getIntegrationType() { return this.integrationType; } public void setIntegrationType(String integrationType) { this.integrationType = integrationType; } public String getGeneratorURL() { return this.generatorURL; } public void setGeneratorURL(String generatorURL) { this.generatorURL = generatorURL; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getAnnotations() { return this.annotations; } public void setAnnotations(String annotations) { this.annotations = annotations; } public String getLabels() { return this.labels; } public void setLabels(String labels) { this.labels = labels; } } } } @Override public ListAlertsResponse getInstance(UnmarshallerContext context) { return ListAlertsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ListClusterFromGrafanaRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class ListClusterFromGrafanaRequest extends RpcAcsRequest<ListClusterFromGrafanaResponse> { public ListClusterFromGrafanaRequest() { super("ARMS", "2019-08-08", "ListClusterFromGrafana", "arms"); 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) {} } @Override public Class<ListClusterFromGrafanaResponse> getResponseClass() { return ListClusterFromGrafanaResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ListClusterFromGrafanaResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.ListClusterFromGrafanaResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListClusterFromGrafanaResponse extends AcsResponse { private String requestId; private List<PromCluster> promClusterList; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<PromCluster> getPromClusterList() { return this.promClusterList; } public void setPromClusterList(List<PromCluster> promClusterList) { this.promClusterList = promClusterList; } public static class PromCluster { private Long updateTime; private Long createTime; private String userId; private String options; private Boolean isControllerInstalled; private String agentStatus; private String extra; private Long installTime; private String regionId; private String controllerId; private String pluginsJsonArray; private String clusterType; private String clusterName; private String stateJson; private Long lastHeartBeatTime; private Integer nodeNum; private Long id; private String clusterId; public Long getUpdateTime() { return this.updateTime; } public void setUpdateTime(Long updateTime) { this.updateTime = updateTime; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public String getOptions() { return this.options; } public void setOptions(String options) { this.options = options; } public Boolean getIsControllerInstalled() { return this.isControllerInstalled; } public void setIsControllerInstalled(Boolean isControllerInstalled) { this.isControllerInstalled = isControllerInstalled; } public String getAgentStatus() { return this.agentStatus; } public void setAgentStatus(String agentStatus) { this.agentStatus = agentStatus; } public String getExtra() { return this.extra; } public void setExtra(String extra) { this.extra = extra; } public Long getInstallTime() { return this.installTime; } public void setInstallTime(Long installTime) { this.installTime = installTime; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getControllerId() { return this.controllerId; } public void setControllerId(String controllerId) { this.controllerId = controllerId; } public String getPluginsJsonArray() { return this.pluginsJsonArray; } public void setPluginsJsonArray(String pluginsJsonArray) { this.pluginsJsonArray = pluginsJsonArray; } public String getClusterType() { return this.clusterType; } public void setClusterType(String clusterType) { this.clusterType = clusterType; } public String getClusterName() { return this.clusterName; } public void setClusterName(String clusterName) { this.clusterName = clusterName; } public String getStateJson() { return this.stateJson; } public void setStateJson(String stateJson) { this.stateJson = stateJson; } public Long getLastHeartBeatTime() { return this.lastHeartBeatTime; } public void setLastHeartBeatTime(Long lastHeartBeatTime) { this.lastHeartBeatTime = lastHeartBeatTime; } public Integer getNodeNum() { return this.nodeNum; } public void setNodeNum(Integer nodeNum) { this.nodeNum = nodeNum; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; } } @Override public ListClusterFromGrafanaResponse getInstance(UnmarshallerContext context) { return ListClusterFromGrafanaResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ListCmsInstancesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class ListCmsInstancesRequest extends RpcAcsRequest<ListCmsInstancesResponse> { private String typeFilter; private String clusterId; public ListCmsInstancesRequest() { super("ARMS", "2019-08-08", "ListCmsInstances", "arms"); 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 getTypeFilter() { return this.typeFilter; } public void setTypeFilter(String typeFilter) { this.typeFilter = typeFilter; if(typeFilter != null){ putQueryParameter("TypeFilter", typeFilter); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<ListCmsInstancesResponse> getResponseClass() { return ListCmsInstancesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ListCmsInstancesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.ListCmsInstancesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListCmsInstancesResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Boolean enableTag; private List<ProductsItem> products; public Boolean getEnableTag() { return this.enableTag; } public void setEnableTag(Boolean enableTag) { this.enableTag = enableTag; } public List<ProductsItem> getProducts() { return this.products; } public void setProducts(List<ProductsItem> products) { this.products = products; } public static class ProductsItem { private String descr; private String instance; private String prod; private String name; private String id; private String state; private String time; private String type; private String url; private String source; public String getDescr() { return this.descr; } public void setDescr(String descr) { this.descr = descr; } public String getInstance() { return this.instance; } public void setInstance(String instance) { this.instance = instance; } public String getProd() { return this.prod; } public void setProd(String prod) { this.prod = prod; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getTime() { return this.time; } public void setTime(String time) { this.time = time; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getUrl() { return this.url; } public void setUrl(String url) { this.url = url; } public String getSource() { return this.source; } public void setSource(String source) { this.source = source; } } } @Override public ListCmsInstancesResponse getInstance(UnmarshallerContext context) { return ListCmsInstancesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }