index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeAutomateResponseConfigCounterRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeAutomateResponseConfigCounterRequest extends RpcAcsRequest<DescribeAutomateResponseConfigCounterResponse> { private Long roleFor; private Integer roleType; public DescribeAutomateResponseConfigCounterRequest() { super("cloud-siem", "2022-06-16", "DescribeAutomateResponseConfigCounter", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } @Override public Class<DescribeAutomateResponseConfigCounterResponse> getResponseClass() { return DescribeAutomateResponseConfigCounterResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeAutomateResponseConfigCounterResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeAutomateResponseConfigCounterResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAutomateResponseConfigCounterResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long all; private Long online; public Long getAll() { return this.all; } public void setAll(Long all) { this.all = all; } public Long getOnline() { return this.online; } public void setOnline(Long online) { this.online = online; } } @Override public DescribeAutomateResponseConfigCounterResponse getInstance(UnmarshallerContext context) { return DescribeAutomateResponseConfigCounterResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeAutomateResponseConfigFeatureRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeAutomateResponseConfigFeatureRequest extends RpcAcsRequest<DescribeAutomateResponseConfigFeatureResponse> { private Long roleFor; private String autoResponseType; private Integer roleType; public DescribeAutomateResponseConfigFeatureRequest() { super("cloud-siem", "2022-06-16", "DescribeAutomateResponseConfigFeature", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public String getAutoResponseType() { return this.autoResponseType; } public void setAutoResponseType(String autoResponseType) { this.autoResponseType = autoResponseType; if(autoResponseType != null){ putBodyParameter("AutoResponseType", autoResponseType); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } @Override public Class<DescribeAutomateResponseConfigFeatureResponse> getResponseClass() { return DescribeAutomateResponseConfigFeatureResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeAutomateResponseConfigFeatureResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeAutomateResponseConfigFeatureResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAutomateResponseConfigFeatureResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private List<DataItem> data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String feature; private String dataType; private List<SupportOperator> supportOperators; private List<RightValueEnum> rightValueEnums; public String getFeature() { return this.feature; } public void setFeature(String feature) { this.feature = feature; } public String getDataType() { return this.dataType; } public void setDataType(String dataType) { this.dataType = dataType; } public List<SupportOperator> getSupportOperators() { return this.supportOperators; } public void setSupportOperators(List<SupportOperator> supportOperators) { this.supportOperators = supportOperators; } public List<RightValueEnum> getRightValueEnums() { return this.rightValueEnums; } public void setRightValueEnums(List<RightValueEnum> rightValueEnums) { this.rightValueEnums = rightValueEnums; } public static class SupportOperator { private Boolean hasRightValue; private String operator; private String operatorName; private String operatorDescCn; private String operatorDescEn; private String supportDataType; private Integer index; private List<String> supportTag; public Boolean getHasRightValue() { return this.hasRightValue; } public void setHasRightValue(Boolean hasRightValue) { this.hasRightValue = hasRightValue; } public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } public String getOperatorName() { return this.operatorName; } public void setOperatorName(String operatorName) { this.operatorName = operatorName; } public String getOperatorDescCn() { return this.operatorDescCn; } public void setOperatorDescCn(String operatorDescCn) { this.operatorDescCn = operatorDescCn; } public String getOperatorDescEn() { return this.operatorDescEn; } public void setOperatorDescEn(String operatorDescEn) { this.operatorDescEn = operatorDescEn; } public String getSupportDataType() { return this.supportDataType; } public void setSupportDataType(String supportDataType) { this.supportDataType = supportDataType; } public Integer getIndex() { return this.index; } public void setIndex(Integer index) { this.index = index; } public List<String> getSupportTag() { return this.supportTag; } public void setSupportTag(List<String> supportTag) { this.supportTag = supportTag; } } public static class RightValueEnum { private String value; private String valueMds; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getValueMds() { return this.valueMds; } public void setValueMds(String valueMds) { this.valueMds = valueMds; } } } @Override public DescribeAutomateResponseConfigFeatureResponse getInstance(UnmarshallerContext context) { return DescribeAutomateResponseConfigFeatureResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeAutomateResponseConfigPlayBooksRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeAutomateResponseConfigPlayBooksRequest extends RpcAcsRequest<DescribeAutomateResponseConfigPlayBooksResponse> { private Long roleFor; private String autoResponseType; private Integer roleType; private String entityType; public DescribeAutomateResponseConfigPlayBooksRequest() { super("cloud-siem", "2022-06-16", "DescribeAutomateResponseConfigPlayBooks", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public String getAutoResponseType() { return this.autoResponseType; } public void setAutoResponseType(String autoResponseType) { this.autoResponseType = autoResponseType; if(autoResponseType != null){ putBodyParameter("AutoResponseType", autoResponseType); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public String getEntityType() { return this.entityType; } public void setEntityType(String entityType) { this.entityType = entityType; if(entityType != null){ putBodyParameter("EntityType", entityType); } } @Override public Class<DescribeAutomateResponseConfigPlayBooksResponse> getResponseClass() { return DescribeAutomateResponseConfigPlayBooksResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeAutomateResponseConfigPlayBooksResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeAutomateResponseConfigPlayBooksResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAutomateResponseConfigPlayBooksResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private List<DataItem> data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String uuid; private String description; private String displayName; private String name; private String paramType; public String getUuid() { return this.uuid; } public void setUuid(String uuid) { this.uuid = uuid; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getDisplayName() { return this.displayName; } public void setDisplayName(String displayName) { this.displayName = displayName; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getParamType() { return this.paramType; } public void setParamType(String paramType) { this.paramType = paramType; } } @Override public DescribeAutomateResponseConfigPlayBooksResponse getInstance(UnmarshallerContext context) { return DescribeAutomateResponseConfigPlayBooksResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeCloudSiemAssetsCounterRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeCloudSiemAssetsCounterRequest extends RpcAcsRequest<DescribeCloudSiemAssetsCounterResponse> { private Long roleFor; private Integer roleType; private String incidentUuid; public DescribeCloudSiemAssetsCounterRequest() { super("cloud-siem", "2022-06-16", "DescribeCloudSiemAssetsCounter", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public String getIncidentUuid() { return this.incidentUuid; } public void setIncidentUuid(String incidentUuid) { this.incidentUuid = incidentUuid; if(incidentUuid != null){ putBodyParameter("IncidentUuid", incidentUuid); } } @Override public Class<DescribeCloudSiemAssetsCounterResponse> getResponseClass() { return DescribeCloudSiemAssetsCounterResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeCloudSiemAssetsCounterResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeCloudSiemAssetsCounterResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeCloudSiemAssetsCounterResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private List<DataItem> data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String assetType; private Integer assetNum; public String getAssetType() { return this.assetType; } public void setAssetType(String assetType) { this.assetType = assetType; } public Integer getAssetNum() { return this.assetNum; } public void setAssetNum(Integer assetNum) { this.assetNum = assetNum; } } @Override public DescribeCloudSiemAssetsCounterResponse getInstance(UnmarshallerContext context) { return DescribeCloudSiemAssetsCounterResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeCloudSiemAssetsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeCloudSiemAssetsRequest extends RpcAcsRequest<DescribeCloudSiemAssetsResponse> { private Long roleFor; private String assetName; private Integer pageSize; private Integer roleType; private String assetType; private String assetUuid; private Integer currentPage; private String incidentUuid; public DescribeCloudSiemAssetsRequest() { super("cloud-siem", "2022-06-16", "DescribeCloudSiemAssets", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public String getAssetName() { return this.assetName; } public void setAssetName(String assetName) { this.assetName = assetName; if(assetName != null){ putBodyParameter("AssetName", assetName); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public String getAssetType() { return this.assetType; } public void setAssetType(String assetType) { this.assetType = assetType; if(assetType != null){ putBodyParameter("AssetType", assetType); } } public String getAssetUuid() { return this.assetUuid; } public void setAssetUuid(String assetUuid) { this.assetUuid = assetUuid; if(assetUuid != null){ putBodyParameter("AssetUuid", assetUuid); } } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putBodyParameter("CurrentPage", currentPage.toString()); } } public String getIncidentUuid() { return this.incidentUuid; } public void setIncidentUuid(String incidentUuid) { this.incidentUuid = incidentUuid; if(incidentUuid != null){ putBodyParameter("IncidentUuid", incidentUuid); } } @Override public Class<DescribeCloudSiemAssetsResponse> getResponseClass() { return DescribeCloudSiemAssetsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeCloudSiemAssetsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeCloudSiemAssetsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeCloudSiemAssetsResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<ResponseDataItem> responseData; private PageInfo pageInfo; public List<ResponseDataItem> getResponseData() { return this.responseData; } public void setResponseData(List<ResponseDataItem> responseData) { this.responseData = responseData; } public PageInfo getPageInfo() { return this.pageInfo; } public void setPageInfo(PageInfo pageInfo) { this.pageInfo = pageInfo; } public static class ResponseDataItem { private Long id; private String gmtCreate; private String gmtModified; private Long aliuid; private Long subUserId; private String incidentUuid; private String alertUuid; private String assetName; private String assetType; private String assetId; private String cloudCode; private List<AssetInfoItem> assetInfo; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } public Long getAliuid() { return this.aliuid; } public void setAliuid(Long aliuid) { this.aliuid = aliuid; } public Long getSubUserId() { return this.subUserId; } public void setSubUserId(Long subUserId) { this.subUserId = subUserId; } public String getIncidentUuid() { return this.incidentUuid; } public void setIncidentUuid(String incidentUuid) { this.incidentUuid = incidentUuid; } public String getAlertUuid() { return this.alertUuid; } public void setAlertUuid(String alertUuid) { this.alertUuid = alertUuid; } public String getAssetName() { return this.assetName; } public void setAssetName(String assetName) { this.assetName = assetName; } public String getAssetType() { return this.assetType; } public void setAssetType(String assetType) { this.assetType = assetType; } public String getAssetId() { return this.assetId; } public void setAssetId(String assetId) { this.assetId = assetId; } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; } public List<AssetInfoItem> getAssetInfo() { return this.assetInfo; } public void setAssetInfo(List<AssetInfoItem> assetInfo) { this.assetInfo = assetInfo; } public static class AssetInfoItem { private String key; private String keyName; private String values; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getKeyName() { return this.keyName; } public void setKeyName(String keyName) { this.keyName = keyName; } public String getValues() { return this.values; } public void setValues(String values) { this.values = values; } } } public static class PageInfo { private Integer currentPage; private Integer pageSize; private Long totalCount; public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } } } @Override public DescribeCloudSiemAssetsResponse getInstance(UnmarshallerContext context) { return DescribeCloudSiemAssetsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeCloudSiemEventDetailRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeCloudSiemEventDetailRequest extends RpcAcsRequest<DescribeCloudSiemEventDetailResponse> { private Long roleFor; private Integer roleType; private String incidentUuid; public DescribeCloudSiemEventDetailRequest() { super("cloud-siem", "2022-06-16", "DescribeCloudSiemEventDetail", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public String getIncidentUuid() { return this.incidentUuid; } public void setIncidentUuid(String incidentUuid) { this.incidentUuid = incidentUuid; if(incidentUuid != null){ putBodyParameter("IncidentUuid", incidentUuid); } } @Override public Class<DescribeCloudSiemEventDetailResponse> getResponseClass() { return DescribeCloudSiemEventDetailResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeCloudSiemEventDetailResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeCloudSiemEventDetailResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeCloudSiemEventDetailResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 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 gmtCreate; private String gmtModified; private Long aliuid; private Integer alertNum; private Integer assetNum; private String incidentUuid; private String incidentName; private String incidentNameEn; private String description; private String descriptionEn; private String threatLevel; private Float threatScore; private String extContent; private Integer status; private String referAccount; private String incidentType; private String ruleId; private String remark; private List<AttckStage> attckStages; private List<String> dataSources; private List<String> attCkLabels; public String getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } public Long getAliuid() { return this.aliuid; } public void setAliuid(Long aliuid) { this.aliuid = aliuid; } public Integer getAlertNum() { return this.alertNum; } public void setAlertNum(Integer alertNum) { this.alertNum = alertNum; } public Integer getAssetNum() { return this.assetNum; } public void setAssetNum(Integer assetNum) { this.assetNum = assetNum; } public String getIncidentUuid() { return this.incidentUuid; } public void setIncidentUuid(String incidentUuid) { this.incidentUuid = incidentUuid; } public String getIncidentName() { return this.incidentName; } public void setIncidentName(String incidentName) { this.incidentName = incidentName; } public String getIncidentNameEn() { return this.incidentNameEn; } public void setIncidentNameEn(String incidentNameEn) { this.incidentNameEn = incidentNameEn; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getDescriptionEn() { return this.descriptionEn; } public void setDescriptionEn(String descriptionEn) { this.descriptionEn = descriptionEn; } public String getThreatLevel() { return this.threatLevel; } public void setThreatLevel(String threatLevel) { this.threatLevel = threatLevel; } public Float getThreatScore() { return this.threatScore; } public void setThreatScore(Float threatScore) { this.threatScore = threatScore; } public String getExtContent() { return this.extContent; } public void setExtContent(String extContent) { this.extContent = extContent; } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public String getReferAccount() { return this.referAccount; } public void setReferAccount(String referAccount) { this.referAccount = referAccount; } public String getIncidentType() { return this.incidentType; } public void setIncidentType(String incidentType) { this.incidentType = incidentType; } public String getRuleId() { return this.ruleId; } public void setRuleId(String ruleId) { this.ruleId = ruleId; } public String getRemark() { return this.remark; } public void setRemark(String remark) { this.remark = remark; } public List<AttckStage> getAttckStages() { return this.attckStages; } public void setAttckStages(List<AttckStage> attckStages) { this.attckStages = attckStages; } public List<String> getDataSources() { return this.dataSources; } public void setDataSources(List<String> dataSources) { this.dataSources = dataSources; } public List<String> getAttCkLabels() { return this.attCkLabels; } public void setAttCkLabels(List<String> attCkLabels) { this.attCkLabels = attCkLabels; } public static class AttckStage { private String tacticId; private String tacticName; private Integer alertNum; public String getTacticId() { return this.tacticId; } public void setTacticId(String tacticId) { this.tacticId = tacticId; } public String getTacticName() { return this.tacticName; } public void setTacticName(String tacticName) { this.tacticName = tacticName; } public Integer getAlertNum() { return this.alertNum; } public void setAlertNum(Integer alertNum) { this.alertNum = alertNum; } } } @Override public DescribeCloudSiemEventDetailResponse getInstance(UnmarshallerContext context) { return DescribeCloudSiemEventDetailResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeCloudSiemEventsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeCloudSiemEventsRequest extends RpcAcsRequest<DescribeCloudSiemEventsResponse> { private Long roleFor; private Long startTime; private String eventName; private Integer pageSize; private Integer roleType; private String orderField; private String order; private Long endTime; private Integer currentPage; private List<String> threadLevels; private String entityUuid; private String assetId; private String incidentUuid; private Integer status; public DescribeCloudSiemEventsRequest() { super("cloud-siem", "2022-06-16", "DescribeCloudSiemEvents", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime.toString()); } } public String getEventName() { return this.eventName; } public void setEventName(String eventName) { this.eventName = eventName; if(eventName != null){ putBodyParameter("EventName", eventName); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public String getOrderField() { return this.orderField; } public void setOrderField(String orderField) { this.orderField = orderField; if(orderField != null){ putBodyParameter("OrderField", orderField); } } public String getOrder() { return this.order; } public void setOrder(String order) { this.order = order; if(order != null){ putBodyParameter("Order", order); } } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime.toString()); } } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putBodyParameter("CurrentPage", currentPage.toString()); } } public List<String> getThreadLevels() { return this.threadLevels; } public void setThreadLevels(List<String> threadLevels) { this.threadLevels = threadLevels; if (threadLevels != null) { for (int i = 0; i < threadLevels.size(); i++) { putBodyParameter("ThreadLevel." + (i + 1) , threadLevels.get(i)); } } } public String getEntityUuid() { return this.entityUuid; } public void setEntityUuid(String entityUuid) { this.entityUuid = entityUuid; if(entityUuid != null){ putBodyParameter("EntityUuid", entityUuid); } } public String getAssetId() { return this.assetId; } public void setAssetId(String assetId) { this.assetId = assetId; if(assetId != null){ putBodyParameter("AssetId", assetId); } } public String getIncidentUuid() { return this.incidentUuid; } public void setIncidentUuid(String incidentUuid) { this.incidentUuid = incidentUuid; if(incidentUuid != null){ putBodyParameter("IncidentUuid", incidentUuid); } } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; if(status != null){ putBodyParameter("Status", status.toString()); } } @Override public Class<DescribeCloudSiemEventsResponse> getResponseClass() { return DescribeCloudSiemEventsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeCloudSiemEventsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeCloudSiemEventsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeCloudSiemEventsResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<ResponseDataItem> responseData; private PageInfo pageInfo; public List<ResponseDataItem> getResponseData() { return this.responseData; } public void setResponseData(List<ResponseDataItem> responseData) { this.responseData = responseData; } public PageInfo getPageInfo() { return this.pageInfo; } public void setPageInfo(PageInfo pageInfo) { this.pageInfo = pageInfo; } public static class ResponseDataItem { private String gmtCreate; private String gmtModified; private Long aliuid; private Integer alertNum; private Integer assetNum; private String incidentUuid; private String incidentName; private String incidentNameEn; private String description; private String descriptionEn; private String threatLevel; private Float threatScore; private String extContent; private Integer status; private String referAccount; private String incidentType; private String ruleId; private String remark; private List<AttckStage> attckStages; private List<String> dataSources; private List<String> attCkLabels; public String getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } public Long getAliuid() { return this.aliuid; } public void setAliuid(Long aliuid) { this.aliuid = aliuid; } public Integer getAlertNum() { return this.alertNum; } public void setAlertNum(Integer alertNum) { this.alertNum = alertNum; } public Integer getAssetNum() { return this.assetNum; } public void setAssetNum(Integer assetNum) { this.assetNum = assetNum; } public String getIncidentUuid() { return this.incidentUuid; } public void setIncidentUuid(String incidentUuid) { this.incidentUuid = incidentUuid; } public String getIncidentName() { return this.incidentName; } public void setIncidentName(String incidentName) { this.incidentName = incidentName; } public String getIncidentNameEn() { return this.incidentNameEn; } public void setIncidentNameEn(String incidentNameEn) { this.incidentNameEn = incidentNameEn; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getDescriptionEn() { return this.descriptionEn; } public void setDescriptionEn(String descriptionEn) { this.descriptionEn = descriptionEn; } public String getThreatLevel() { return this.threatLevel; } public void setThreatLevel(String threatLevel) { this.threatLevel = threatLevel; } public Float getThreatScore() { return this.threatScore; } public void setThreatScore(Float threatScore) { this.threatScore = threatScore; } public String getExtContent() { return this.extContent; } public void setExtContent(String extContent) { this.extContent = extContent; } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public String getReferAccount() { return this.referAccount; } public void setReferAccount(String referAccount) { this.referAccount = referAccount; } public String getIncidentType() { return this.incidentType; } public void setIncidentType(String incidentType) { this.incidentType = incidentType; } public String getRuleId() { return this.ruleId; } public void setRuleId(String ruleId) { this.ruleId = ruleId; } public String getRemark() { return this.remark; } public void setRemark(String remark) { this.remark = remark; } public List<AttckStage> getAttckStages() { return this.attckStages; } public void setAttckStages(List<AttckStage> attckStages) { this.attckStages = attckStages; } public List<String> getDataSources() { return this.dataSources; } public void setDataSources(List<String> dataSources) { this.dataSources = dataSources; } public List<String> getAttCkLabels() { return this.attCkLabels; } public void setAttCkLabels(List<String> attCkLabels) { this.attCkLabels = attCkLabels; } public static class AttckStage { private String tacticId; private String tacticName; private Integer alertNum; public String getTacticId() { return this.tacticId; } public void setTacticId(String tacticId) { this.tacticId = tacticId; } public String getTacticName() { return this.tacticName; } public void setTacticName(String tacticName) { this.tacticName = tacticName; } public Integer getAlertNum() { return this.alertNum; } public void setAlertNum(Integer alertNum) { this.alertNum = alertNum; } } } public static class PageInfo { private Integer currentPage; private Integer pageSize; private Long totalCount; public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } } } @Override public DescribeCloudSiemEventsResponse getInstance(UnmarshallerContext context) { return DescribeCloudSiemEventsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeCustomizeRuleCountRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeCustomizeRuleCountRequest extends RpcAcsRequest<DescribeCustomizeRuleCountResponse> { private Long roleFor; private Integer roleType; public DescribeCustomizeRuleCountRequest() { super("cloud-siem", "2022-06-16", "DescribeCustomizeRuleCount", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } @Override public Class<DescribeCustomizeRuleCountResponse> getResponseClass() { return DescribeCustomizeRuleCountResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeCustomizeRuleCountResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeCustomizeRuleCountResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeCustomizeRuleCountResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer inUseRuleNum; private Integer highRuleNum; private Integer mediumRuleNum; private Integer lowRuleNum; private Integer totalRuleNum; private Integer customizeRuleNum; private Integer predefinedRuleNum; private Integer unEventRuleNum; private Integer expertRuleNum; private Integer graphComputingRuleNum; private Integer singleAlertRuleNum; private Integer aggregationRuleNum; public Integer getInUseRuleNum() { return this.inUseRuleNum; } public void setInUseRuleNum(Integer inUseRuleNum) { this.inUseRuleNum = inUseRuleNum; } public Integer getHighRuleNum() { return this.highRuleNum; } public void setHighRuleNum(Integer highRuleNum) { this.highRuleNum = highRuleNum; } public Integer getMediumRuleNum() { return this.mediumRuleNum; } public void setMediumRuleNum(Integer mediumRuleNum) { this.mediumRuleNum = mediumRuleNum; } public Integer getLowRuleNum() { return this.lowRuleNum; } public void setLowRuleNum(Integer lowRuleNum) { this.lowRuleNum = lowRuleNum; } public Integer getTotalRuleNum() { return this.totalRuleNum; } public void setTotalRuleNum(Integer totalRuleNum) { this.totalRuleNum = totalRuleNum; } public Integer getCustomizeRuleNum() { return this.customizeRuleNum; } public void setCustomizeRuleNum(Integer customizeRuleNum) { this.customizeRuleNum = customizeRuleNum; } public Integer getPredefinedRuleNum() { return this.predefinedRuleNum; } public void setPredefinedRuleNum(Integer predefinedRuleNum) { this.predefinedRuleNum = predefinedRuleNum; } public Integer getUnEventRuleNum() { return this.unEventRuleNum; } public void setUnEventRuleNum(Integer unEventRuleNum) { this.unEventRuleNum = unEventRuleNum; } public Integer getExpertRuleNum() { return this.expertRuleNum; } public void setExpertRuleNum(Integer expertRuleNum) { this.expertRuleNum = expertRuleNum; } public Integer getGraphComputingRuleNum() { return this.graphComputingRuleNum; } public void setGraphComputingRuleNum(Integer graphComputingRuleNum) { this.graphComputingRuleNum = graphComputingRuleNum; } public Integer getSingleAlertRuleNum() { return this.singleAlertRuleNum; } public void setSingleAlertRuleNum(Integer singleAlertRuleNum) { this.singleAlertRuleNum = singleAlertRuleNum; } public Integer getAggregationRuleNum() { return this.aggregationRuleNum; } public void setAggregationRuleNum(Integer aggregationRuleNum) { this.aggregationRuleNum = aggregationRuleNum; } } @Override public DescribeCustomizeRuleCountResponse getInstance(UnmarshallerContext context) { return DescribeCustomizeRuleCountResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeCustomizeRuleTestHistogramRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeCustomizeRuleTestHistogramRequest extends RpcAcsRequest<DescribeCustomizeRuleTestHistogramResponse> { private Long roleFor; private Integer roleType; private Long id; public DescribeCustomizeRuleTestHistogramRequest() { super("cloud-siem", "2022-06-16", "DescribeCustomizeRuleTestHistogram", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; if(id != null){ putBodyParameter("Id", id.toString()); } } @Override public Class<DescribeCustomizeRuleTestHistogramResponse> getResponseClass() { return DescribeCustomizeRuleTestHistogramResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeCustomizeRuleTestHistogramResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeCustomizeRuleTestHistogramResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeCustomizeRuleTestHistogramResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private List<DataItem> data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private Long from; private Long to; private Long count; public Long getFrom() { return this.from; } public void setFrom(Long from) { this.from = from; } public Long getTo() { return this.to; } public void setTo(Long to) { this.to = to; } public Long getCount() { return this.count; } public void setCount(Long count) { this.count = count; } } @Override public DescribeCustomizeRuleTestHistogramResponse getInstance(UnmarshallerContext context) { return DescribeCustomizeRuleTestHistogramResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeCustomizeRuleTestRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeCustomizeRuleTestRequest extends RpcAcsRequest<DescribeCustomizeRuleTestResponse> { private Long roleFor; private Integer roleType; private Long id; public DescribeCustomizeRuleTestRequest() { super("cloud-siem", "2022-06-16", "DescribeCustomizeRuleTest", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; if(id != null){ putBodyParameter("Id", id.toString()); } } @Override public Class<DescribeCustomizeRuleTestResponse> getResponseClass() { return DescribeCustomizeRuleTestResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeCustomizeRuleTestResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeCustomizeRuleTestResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeCustomizeRuleTestResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long id; private Integer status; private String simulateData; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public String getSimulateData() { return this.simulateData; } public void setSimulateData(String simulateData) { this.simulateData = simulateData; } } @Override public DescribeCustomizeRuleTestResponse getInstance(UnmarshallerContext context) { return DescribeCustomizeRuleTestResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeDataSourceInstanceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeDataSourceInstanceRequest extends RpcAcsRequest<DescribeDataSourceInstanceResponse> { private String cloudCode; private String accountId; private String dataSourceInstanceId; public DescribeDataSourceInstanceRequest() { super("cloud-siem", "2022-06-16", "DescribeDataSourceInstance", "cloud-siem"); setMethod(MethodType.POST); } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; if(cloudCode != null){ putBodyParameter("CloudCode", cloudCode); } } public String getAccountId() { return this.accountId; } public void setAccountId(String accountId) { this.accountId = accountId; if(accountId != null){ putBodyParameter("AccountId", accountId); } } public String getDataSourceInstanceId() { return this.dataSourceInstanceId; } public void setDataSourceInstanceId(String dataSourceInstanceId) { this.dataSourceInstanceId = dataSourceInstanceId; if(dataSourceInstanceId != null){ putBodyParameter("DataSourceInstanceId", dataSourceInstanceId); } } @Override public Class<DescribeDataSourceInstanceResponse> getResponseClass() { return DescribeDataSourceInstanceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeDataSourceInstanceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeDataSourceInstanceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDataSourceInstanceResponse 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 dataSourceInstanceId; private String accountId; private String cloudCode; private List<DataSourceInstanceParam> dataSourceInstanceParams; public String getDataSourceInstanceId() { return this.dataSourceInstanceId; } public void setDataSourceInstanceId(String dataSourceInstanceId) { this.dataSourceInstanceId = dataSourceInstanceId; } public String getAccountId() { return this.accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; } public List<DataSourceInstanceParam> getDataSourceInstanceParams() { return this.dataSourceInstanceParams; } public void setDataSourceInstanceParams(List<DataSourceInstanceParam> dataSourceInstanceParams) { this.dataSourceInstanceParams = dataSourceInstanceParams; } public static class DataSourceInstanceParam { private String paraCode; private String paraValue; public String getParaCode() { return this.paraCode; } public void setParaCode(String paraCode) { this.paraCode = paraCode; } public String getParaValue() { return this.paraValue; } public void setParaValue(String paraValue) { this.paraValue = paraValue; } } } @Override public DescribeDataSourceInstanceResponse getInstance(UnmarshallerContext context) { return DescribeDataSourceInstanceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeDataSourceParametersRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeDataSourceParametersRequest extends RpcAcsRequest<DescribeDataSourceParametersResponse> { private String dataSourceType; private String cloudCode; public DescribeDataSourceParametersRequest() { super("cloud-siem", "2022-06-16", "DescribeDataSourceParameters", "cloud-siem"); setMethod(MethodType.POST); } public String getDataSourceType() { return this.dataSourceType; } public void setDataSourceType(String dataSourceType) { this.dataSourceType = dataSourceType; if(dataSourceType != null){ putBodyParameter("DataSourceType", dataSourceType); } } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; if(cloudCode != null){ putBodyParameter("CloudCode", cloudCode); } } @Override public Class<DescribeDataSourceParametersResponse> getResponseClass() { return DescribeDataSourceParametersResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeDataSourceParametersResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeDataSourceParametersResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDataSourceParametersResponse extends AcsResponse { private String requestId; private List<DataItem> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String dataSourceType; private Integer paraLevel; private String paraCode; private String paraName; private String paraType; private Integer required; private String formatCheck; private String title; private String hit; private String defaultValue; private Boolean disabled; private Integer canEditted; private String cloudCode; private List<ParamValueItem> paramValue; public String getDataSourceType() { return this.dataSourceType; } public void setDataSourceType(String dataSourceType) { this.dataSourceType = dataSourceType; } public Integer getParaLevel() { return this.paraLevel; } public void setParaLevel(Integer paraLevel) { this.paraLevel = paraLevel; } public String getParaCode() { return this.paraCode; } public void setParaCode(String paraCode) { this.paraCode = paraCode; } public String getParaName() { return this.paraName; } public void setParaName(String paraName) { this.paraName = paraName; } public String getParaType() { return this.paraType; } public void setParaType(String paraType) { this.paraType = paraType; } public Integer getRequired() { return this.required; } public void setRequired(Integer required) { this.required = required; } public String getFormatCheck() { return this.formatCheck; } public void setFormatCheck(String formatCheck) { this.formatCheck = formatCheck; } public String getTitle() { return this.title; } public void setTitle(String title) { this.title = title; } public String getHit() { return this.hit; } public void setHit(String hit) { this.hit = hit; } public String getDefaultValue() { return this.defaultValue; } public void setDefaultValue(String defaultValue) { this.defaultValue = defaultValue; } public Boolean getDisabled() { return this.disabled; } public void setDisabled(Boolean disabled) { this.disabled = disabled; } public Integer getCanEditted() { return this.canEditted; } public void setCanEditted(Integer canEditted) { this.canEditted = canEditted; } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; } public List<ParamValueItem> getParamValue() { return this.paramValue; } public void setParamValue(List<ParamValueItem> paramValue) { this.paramValue = paramValue; } public static class ParamValueItem { private String label; private String value; public String getLabel() { return this.label; } public void setLabel(String label) { this.label = label; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } @Override public DescribeDataSourceParametersResponse getInstance(UnmarshallerContext context) { return DescribeDataSourceParametersResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeDisposeAndPlaybookRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeDisposeAndPlaybookRequest extends RpcAcsRequest<DescribeDisposeAndPlaybookResponse> { private Long roleFor; private Integer pageSize; private Integer roleType; private Integer currentPage; private String entityType; private String entityUuid; private String incidentUuid; public DescribeDisposeAndPlaybookRequest() { super("cloud-siem", "2022-06-16", "DescribeDisposeAndPlaybook", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putBodyParameter("CurrentPage", currentPage.toString()); } } public String getEntityType() { return this.entityType; } public void setEntityType(String entityType) { this.entityType = entityType; if(entityType != null){ putBodyParameter("EntityType", entityType); } } public String getEntityUuid() { return this.entityUuid; } public void setEntityUuid(String entityUuid) { this.entityUuid = entityUuid; if(entityUuid != null){ putBodyParameter("EntityUuid", entityUuid); } } public String getIncidentUuid() { return this.incidentUuid; } public void setIncidentUuid(String incidentUuid) { this.incidentUuid = incidentUuid; if(incidentUuid != null){ putBodyParameter("IncidentUuid", incidentUuid); } } @Override public Class<DescribeDisposeAndPlaybookResponse> getResponseClass() { return DescribeDisposeAndPlaybookResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeDisposeAndPlaybookResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeDisposeAndPlaybookResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDisposeAndPlaybookResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<ResponseDataItem> responseData; private PageInfo pageInfo; public List<ResponseDataItem> getResponseData() { return this.responseData; } public void setResponseData(List<ResponseDataItem> responseData) { this.responseData = responseData; } public PageInfo getPageInfo() { return this.pageInfo; } public void setPageInfo(PageInfo pageInfo) { this.pageInfo = pageInfo; } public static class ResponseDataItem { private Long entityId; private String entityType; private Map<Object,Object> opcodeMap; private Map<Object,Object> entityInfo; private String dispose; private Integer alertNum; private List<PlaybookListItem> playbookList; private List<String> opcodeSet; private List<String> scope; public Long getEntityId() { return this.entityId; } public void setEntityId(Long entityId) { this.entityId = entityId; } public String getEntityType() { return this.entityType; } public void setEntityType(String entityType) { this.entityType = entityType; } public Map<Object,Object> getOpcodeMap() { return this.opcodeMap; } public void setOpcodeMap(Map<Object,Object> opcodeMap) { this.opcodeMap = opcodeMap; } public Map<Object,Object> getEntityInfo() { return this.entityInfo; } public void setEntityInfo(Map<Object,Object> entityInfo) { this.entityInfo = entityInfo; } public String getDispose() { return this.dispose; } public void setDispose(String dispose) { this.dispose = dispose; } public Integer getAlertNum() { return this.alertNum; } public void setAlertNum(Integer alertNum) { this.alertNum = alertNum; } public List<PlaybookListItem> getPlaybookList() { return this.playbookList; } public void setPlaybookList(List<PlaybookListItem> playbookList) { this.playbookList = playbookList; } public List<String> getOpcodeSet() { return this.opcodeSet; } public void setOpcodeSet(List<String> opcodeSet) { this.opcodeSet = opcodeSet; } public List<String> getScope() { return this.scope; } public void setScope(List<String> scope) { this.scope = scope; } public static class PlaybookListItem { private String opCode; private String opLevel; private String description; private String displayName; private String taskConfig; private String name; private String uuid; private Boolean wafPlaybook; private String available; private List<String> paramConfig; public String getOpCode() { return this.opCode; } public void setOpCode(String opCode) { this.opCode = opCode; } public String getOpLevel() { return this.opLevel; } public void setOpLevel(String opLevel) { this.opLevel = opLevel; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getDisplayName() { return this.displayName; } public void setDisplayName(String displayName) { this.displayName = displayName; } public String getTaskConfig() { return this.taskConfig; } public void setTaskConfig(String taskConfig) { this.taskConfig = taskConfig; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getUuid() { return this.uuid; } public void setUuid(String uuid) { this.uuid = uuid; } public Boolean getWafPlaybook() { return this.wafPlaybook; } public void setWafPlaybook(Boolean wafPlaybook) { this.wafPlaybook = wafPlaybook; } public String getAvailable() { return this.available; } public void setAvailable(String available) { this.available = available; } public List<String> getParamConfig() { return this.paramConfig; } public void setParamConfig(List<String> paramConfig) { this.paramConfig = paramConfig; } } } public static class PageInfo { private Integer currentPage; private Integer pageSize; private Long totalCount; public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } } } @Override public DescribeDisposeAndPlaybookResponse getInstance(UnmarshallerContext context) { return DescribeDisposeAndPlaybookResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeDisposeStrategyPlaybookRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeDisposeStrategyPlaybookRequest extends RpcAcsRequest<DescribeDisposeStrategyPlaybookResponse> { private Long roleFor; private Long startTime; private Integer roleType; private Long endTime; public DescribeDisposeStrategyPlaybookRequest() { super("cloud-siem", "2022-06-16", "DescribeDisposeStrategyPlaybook", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime.toString()); } } @Override public Class<DescribeDisposeStrategyPlaybookResponse> getResponseClass() { return DescribeDisposeStrategyPlaybookResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeDisposeStrategyPlaybookResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeDisposeStrategyPlaybookResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDisposeStrategyPlaybookResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private List<DataItem> data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String playbookName; private String playbookUuid; public String getPlaybookName() { return this.playbookName; } public void setPlaybookName(String playbookName) { this.playbookName = playbookName; } public String getPlaybookUuid() { return this.playbookUuid; } public void setPlaybookUuid(String playbookUuid) { this.playbookUuid = playbookUuid; } } @Override public DescribeDisposeStrategyPlaybookResponse getInstance(UnmarshallerContext context) { return DescribeDisposeStrategyPlaybookResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeEntityInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeEntityInfoRequest extends RpcAcsRequest<DescribeEntityInfoResponse> { private String entityIdentity; private Long roleFor; private Long entityId; private Integer roleType; private String sophonTaskId; private String incidentUuid; public DescribeEntityInfoRequest() { super("cloud-siem", "2022-06-16", "DescribeEntityInfo", "cloud-siem"); setMethod(MethodType.POST); } public String getEntityIdentity() { return this.entityIdentity; } public void setEntityIdentity(String entityIdentity) { this.entityIdentity = entityIdentity; if(entityIdentity != null){ putBodyParameter("EntityIdentity", entityIdentity); } } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Long getEntityId() { return this.entityId; } public void setEntityId(Long entityId) { this.entityId = entityId; if(entityId != null){ putBodyParameter("EntityId", entityId.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public String getSophonTaskId() { return this.sophonTaskId; } public void setSophonTaskId(String sophonTaskId) { this.sophonTaskId = sophonTaskId; if(sophonTaskId != null){ putBodyParameter("SophonTaskId", sophonTaskId); } } public String getIncidentUuid() { return this.incidentUuid; } public void setIncidentUuid(String incidentUuid) { this.incidentUuid = incidentUuid; if(incidentUuid != null){ putBodyParameter("IncidentUuid", incidentUuid); } } @Override public Class<DescribeEntityInfoResponse> getResponseClass() { return DescribeEntityInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeEntityInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeEntityInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeEntityInfoResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long entityId; private String entityType; private Map<Object,Object> entityInfo; private Map<Object,Object> tipInfo; public Long getEntityId() { return this.entityId; } public void setEntityId(Long entityId) { this.entityId = entityId; } public String getEntityType() { return this.entityType; } public void setEntityType(String entityType) { this.entityType = entityType; } public Map<Object,Object> getEntityInfo() { return this.entityInfo; } public void setEntityInfo(Map<Object,Object> entityInfo) { this.entityInfo = entityInfo; } public Map<Object,Object> getTipInfo() { return this.tipInfo; } public void setTipInfo(Map<Object,Object> tipInfo) { this.tipInfo = tipInfo; } } @Override public DescribeEntityInfoResponse getInstance(UnmarshallerContext context) { return DescribeEntityInfoResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeEventCountByThreatLevelRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeEventCountByThreatLevelRequest extends RpcAcsRequest<DescribeEventCountByThreatLevelResponse> { private Long roleFor; private Long startTime; private Integer roleType; private Long endTime; public DescribeEventCountByThreatLevelRequest() { super("cloud-siem", "2022-06-16", "DescribeEventCountByThreatLevel", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime.toString()); } } @Override public Class<DescribeEventCountByThreatLevelResponse> getResponseClass() { return DescribeEventCountByThreatLevelResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeEventCountByThreatLevelResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeEventCountByThreatLevelResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeEventCountByThreatLevelResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long eventNum; private Long undealEventNum; private Long highLevelEventNum; private Long mediumLevelEventNum; private Long lowLevelEventNum; public Long getEventNum() { return this.eventNum; } public void setEventNum(Long eventNum) { this.eventNum = eventNum; } public Long getUndealEventNum() { return this.undealEventNum; } public void setUndealEventNum(Long undealEventNum) { this.undealEventNum = undealEventNum; } public Long getHighLevelEventNum() { return this.highLevelEventNum; } public void setHighLevelEventNum(Long highLevelEventNum) { this.highLevelEventNum = highLevelEventNum; } public Long getMediumLevelEventNum() { return this.mediumLevelEventNum; } public void setMediumLevelEventNum(Long mediumLevelEventNum) { this.mediumLevelEventNum = mediumLevelEventNum; } public Long getLowLevelEventNum() { return this.lowLevelEventNum; } public void setLowLevelEventNum(Long lowLevelEventNum) { this.lowLevelEventNum = lowLevelEventNum; } } @Override public DescribeEventCountByThreatLevelResponse getInstance(UnmarshallerContext context) { return DescribeEventCountByThreatLevelResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeEventDisposeRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeEventDisposeRequest extends RpcAcsRequest<DescribeEventDisposeResponse> { private Long roleFor; private Integer pageSize; private Integer roleType; private Integer currentPage; private String incidentUuid; public DescribeEventDisposeRequest() { super("cloud-siem", "2022-06-16", "DescribeEventDispose", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putBodyParameter("CurrentPage", currentPage.toString()); } } public String getIncidentUuid() { return this.incidentUuid; } public void setIncidentUuid(String incidentUuid) { this.incidentUuid = incidentUuid; if(incidentUuid != null){ putBodyParameter("IncidentUuid", incidentUuid); } } @Override public Class<DescribeEventDisposeResponse> getResponseClass() { return DescribeEventDisposeResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeEventDisposeResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeEventDisposeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeEventDisposeResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer status; private String remark; private List<String> eventDispose; private ReceiverInfo receiverInfo; public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public String getRemark() { return this.remark; } public void setRemark(String remark) { this.remark = remark; } public List<String> getEventDispose() { return this.eventDispose; } public void setEventDispose(List<String> eventDispose) { this.eventDispose = eventDispose; } public ReceiverInfo getReceiverInfo() { return this.receiverInfo; } public void setReceiverInfo(ReceiverInfo receiverInfo) { this.receiverInfo = receiverInfo; } public static class ReceiverInfo { private Long id; private String gmtCreate; private String gmtModified; private String incidentUuid; private String messageTitle; private String receiver; private String channel; private Integer status; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } public String getIncidentUuid() { return this.incidentUuid; } public void setIncidentUuid(String incidentUuid) { this.incidentUuid = incidentUuid; } public String getMessageTitle() { return this.messageTitle; } public void setMessageTitle(String messageTitle) { this.messageTitle = messageTitle; } public String getReceiver() { return this.receiver; } public void setReceiver(String receiver) { this.receiver = receiver; } public String getChannel() { return this.channel; } public void setChannel(String channel) { this.channel = channel; } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } } } @Override public DescribeEventDisposeResponse getInstance(UnmarshallerContext context) { return DescribeEventDisposeResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeImportedLogCountRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeImportedLogCountRequest extends RpcAcsRequest<DescribeImportedLogCountResponse> { private String roleFor; private String roleType; public DescribeImportedLogCountRequest() { super("cloud-siem", "2022-06-16", "DescribeImportedLogCount", "cloud-siem"); setMethod(MethodType.POST); } public String getRoleFor() { return this.roleFor; } public void setRoleFor(String roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor); } } public String getRoleType() { return this.roleType; } public void setRoleType(String roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType); } } @Override public Class<DescribeImportedLogCountResponse> getResponseClass() { return DescribeImportedLogCountResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeImportedLogCountResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeImportedLogCountResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeImportedLogCountResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer totalLogCount; private Integer importedLogCount; private Integer unImportedLogCount; public Integer getTotalLogCount() { return this.totalLogCount; } public void setTotalLogCount(Integer totalLogCount) { this.totalLogCount = totalLogCount; } public Integer getImportedLogCount() { return this.importedLogCount; } public void setImportedLogCount(Integer importedLogCount) { this.importedLogCount = importedLogCount; } public Integer getUnImportedLogCount() { return this.unImportedLogCount; } public void setUnImportedLogCount(Integer unImportedLogCount) { this.unImportedLogCount = unImportedLogCount; } } @Override public DescribeImportedLogCountResponse getInstance(UnmarshallerContext context) { return DescribeImportedLogCountResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeLogFieldsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeLogFieldsRequest extends RpcAcsRequest<DescribeLogFieldsResponse> { private Long roleFor; private String logType; private Integer roleType; private String logSource; public DescribeLogFieldsRequest() { super("cloud-siem", "2022-06-16", "DescribeLogFields", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public String getLogType() { return this.logType; } public void setLogType(String logType) { this.logType = logType; if(logType != null){ putBodyParameter("LogType", logType); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public String getLogSource() { return this.logSource; } public void setLogSource(String logSource) { this.logSource = logSource; if(logSource != null){ putBodyParameter("LogSource", logSource); } } @Override public Class<DescribeLogFieldsResponse> getResponseClass() { return DescribeLogFieldsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeLogFieldsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeLogFieldsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeLogFieldsResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private List<DataItem> data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String fieldName; private String fieldDesc; private String logCode; private String activityName; private String fieldType; public String getFieldName() { return this.fieldName; } public void setFieldName(String fieldName) { this.fieldName = fieldName; } public String getFieldDesc() { return this.fieldDesc; } public void setFieldDesc(String fieldDesc) { this.fieldDesc = fieldDesc; } public String getLogCode() { return this.logCode; } public void setLogCode(String logCode) { this.logCode = logCode; } public String getActivityName() { return this.activityName; } public void setActivityName(String activityName) { this.activityName = activityName; } public String getFieldType() { return this.fieldType; } public void setFieldType(String fieldType) { this.fieldType = fieldType; } } @Override public DescribeLogFieldsResponse getInstance(UnmarshallerContext context) { return DescribeLogFieldsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeLogSourceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeLogSourceRequest extends RpcAcsRequest<DescribeLogSourceResponse> { private Long roleFor; private String logType; private Integer roleType; public DescribeLogSourceRequest() { super("cloud-siem", "2022-06-16", "DescribeLogSource", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public String getLogType() { return this.logType; } public void setLogType(String logType) { this.logType = logType; if(logType != null){ putBodyParameter("LogType", logType); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } @Override public Class<DescribeLogSourceResponse> getResponseClass() { return DescribeLogSourceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeLogSourceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeLogSourceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeLogSourceResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private List<DataItem> data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String logSource; private String logSourceName; public String getLogSource() { return this.logSource; } public void setLogSource(String logSource) { this.logSource = logSource; } public String getLogSourceName() { return this.logSourceName; } public void setLogSourceName(String logSourceName) { this.logSourceName = logSourceName; } } @Override public DescribeLogSourceResponse getInstance(UnmarshallerContext context) { return DescribeLogSourceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeLogTypeRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeLogTypeRequest extends RpcAcsRequest<DescribeLogTypeResponse> { private Long roleFor; private Integer roleType; public DescribeLogTypeRequest() { super("cloud-siem", "2022-06-16", "DescribeLogType", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } @Override public Class<DescribeLogTypeResponse> getResponseClass() { return DescribeLogTypeResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeLogTypeResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeLogTypeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeLogTypeResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private List<DataItem> data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String logType; private String logTypeName; public String getLogType() { return this.logType; } public void setLogType(String logType) { this.logType = logType; } public String getLogTypeName() { return this.logTypeName; } public void setLogTypeName(String logTypeName) { this.logTypeName = logTypeName; } } @Override public DescribeLogTypeResponse getInstance(UnmarshallerContext context) { return DescribeLogTypeResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeOperatorsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeOperatorsRequest extends RpcAcsRequest<DescribeOperatorsResponse> { private Long roleFor; private Integer roleType; private String sceneType; public DescribeOperatorsRequest() { super("cloud-siem", "2022-06-16", "DescribeOperators", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public String getSceneType() { return this.sceneType; } public void setSceneType(String sceneType) { this.sceneType = sceneType; if(sceneType != null){ putBodyParameter("SceneType", sceneType); } } @Override public Class<DescribeOperatorsResponse> getResponseClass() { return DescribeOperatorsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeOperatorsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeOperatorsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeOperatorsResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private List<DataItem> data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String operator; private String operatorName; private String operatorDescCn; private String operatorDescEn; private String supportDataType; private Integer index; private List<String> supportTag; public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } public String getOperatorName() { return this.operatorName; } public void setOperatorName(String operatorName) { this.operatorName = operatorName; } public String getOperatorDescCn() { return this.operatorDescCn; } public void setOperatorDescCn(String operatorDescCn) { this.operatorDescCn = operatorDescCn; } public String getOperatorDescEn() { return this.operatorDescEn; } public void setOperatorDescEn(String operatorDescEn) { this.operatorDescEn = operatorDescEn; } public String getSupportDataType() { return this.supportDataType; } public void setSupportDataType(String supportDataType) { this.supportDataType = supportDataType; } public Integer getIndex() { return this.index; } public void setIndex(Integer index) { this.index = index; } public List<String> getSupportTag() { return this.supportTag; } public void setSupportTag(List<String> supportTag) { this.supportTag = supportTag; } } @Override public DescribeOperatorsResponse getInstance(UnmarshallerContext context) { return DescribeOperatorsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeProdCountRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeProdCountRequest extends RpcAcsRequest<DescribeProdCountResponse> { private Long roleFor; private Integer roleType; public DescribeProdCountRequest() { super("cloud-siem", "2022-06-16", "DescribeProdCount", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } @Override public Class<DescribeProdCountResponse> getResponseClass() { return DescribeProdCountResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeProdCountResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeProdCountResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeProdCountResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer aliyunProdCount; private Integer hcloudProdCount; private Integer qcloudProdCount; private Integer idcProdCount; private Integer aliyunImportedCount; private Integer hcloudImportedCount; private Integer qcloudImportedCount; private Integer idcImportedCount; public Integer getAliyunProdCount() { return this.aliyunProdCount; } public void setAliyunProdCount(Integer aliyunProdCount) { this.aliyunProdCount = aliyunProdCount; } public Integer getHcloudProdCount() { return this.hcloudProdCount; } public void setHcloudProdCount(Integer hcloudProdCount) { this.hcloudProdCount = hcloudProdCount; } public Integer getQcloudProdCount() { return this.qcloudProdCount; } public void setQcloudProdCount(Integer qcloudProdCount) { this.qcloudProdCount = qcloudProdCount; } public Integer getIdcProdCount() { return this.idcProdCount; } public void setIdcProdCount(Integer idcProdCount) { this.idcProdCount = idcProdCount; } public Integer getAliyunImportedCount() { return this.aliyunImportedCount; } public void setAliyunImportedCount(Integer aliyunImportedCount) { this.aliyunImportedCount = aliyunImportedCount; } public Integer getHcloudImportedCount() { return this.hcloudImportedCount; } public void setHcloudImportedCount(Integer hcloudImportedCount) { this.hcloudImportedCount = hcloudImportedCount; } public Integer getQcloudImportedCount() { return this.qcloudImportedCount; } public void setQcloudImportedCount(Integer qcloudImportedCount) { this.qcloudImportedCount = qcloudImportedCount; } public Integer getIdcImportedCount() { return this.idcImportedCount; } public void setIdcImportedCount(Integer idcImportedCount) { this.idcImportedCount = idcImportedCount; } } @Override public DescribeProdCountResponse getInstance(UnmarshallerContext context) { return DescribeProdCountResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeScopeUsersRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeScopeUsersRequest extends RpcAcsRequest<DescribeScopeUsersResponse> { private Long roleFor; private Integer roleType; public DescribeScopeUsersRequest() { super("cloud-siem", "2022-06-16", "DescribeScopeUsers", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } @Override public Class<DescribeScopeUsersResponse> getResponseClass() { return DescribeScopeUsersResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeScopeUsersResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeScopeUsersResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeScopeUsersResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private List<DataItem> data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private Long aliUid; private String userName; private String userId; private String cloudCode; private String instanceId; private List<String> domains; public Long getAliUid() { return this.aliUid; } public void setAliUid(Long aliUid) { this.aliUid = aliUid; } public String getUserName() { return this.userName; } public void setUserName(String userName) { this.userName = userName; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public List<String> getDomains() { return this.domains; } public void setDomains(List<String> domains) { this.domains = domains; } } @Override public DescribeScopeUsersResponse getInstance(UnmarshallerContext context) { return DescribeScopeUsersResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeServiceStatusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeServiceStatusRequest extends RpcAcsRequest<DescribeServiceStatusResponse> { public DescribeServiceStatusRequest() { super("cloud-siem", "2022-06-16", "DescribeServiceStatus", "cloud-siem"); setMethod(MethodType.POST); } @Override public Class<DescribeServiceStatusResponse> getResponseClass() { return DescribeServiceStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeServiceStatusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeServiceStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeServiceStatusResponse extends AcsResponse { private Boolean data; private String requestId; public Boolean getData() { return this.data; } public void setData(Boolean data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DescribeServiceStatusResponse getInstance(UnmarshallerContext context) { return DescribeServiceStatusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeStorageRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeStorageRequest extends RpcAcsRequest<DescribeStorageResponse> { private Long roleFor; private Integer roleType; public DescribeStorageRequest() { super("cloud-siem", "2022-06-16", "DescribeStorage", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } @Override public Class<DescribeStorageResponse> getResponseClass() { return DescribeStorageResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeStorageResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeStorageResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeStorageResponse extends AcsResponse { private Boolean data; private String requestId; public Boolean getData() { return this.data; } public void setData(Boolean data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DescribeStorageResponse getInstance(UnmarshallerContext context) { return DescribeStorageResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeUserBuyStatusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeUserBuyStatusRequest extends RpcAcsRequest<DescribeUserBuyStatusResponse> { private Long subUserId; public DescribeUserBuyStatusRequest() { super("cloud-siem", "2022-06-16", "DescribeUserBuyStatus", "cloud-siem"); setMethod(MethodType.POST); } public Long getSubUserId() { return this.subUserId; } public void setSubUserId(Long subUserId) { this.subUserId = subUserId; if(subUserId != null){ putBodyParameter("SubUserId", subUserId.toString()); } } @Override public Class<DescribeUserBuyStatusResponse> getResponseClass() { return DescribeUserBuyStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeUserBuyStatusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeUserBuyStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeUserBuyStatusResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long masterUserId; private String masterUserName; private Long mainUserId; private String mainUserName; private Long subUserId; private String subUserName; private Integer capacity; private String sasInstanceId; private Boolean canBuy; private Long endTime; private Long durationDays; private Integer rdOrder; public Long getMasterUserId() { return this.masterUserId; } public void setMasterUserId(Long masterUserId) { this.masterUserId = masterUserId; } public String getMasterUserName() { return this.masterUserName; } public void setMasterUserName(String masterUserName) { this.masterUserName = masterUserName; } public Long getMainUserId() { return this.mainUserId; } public void setMainUserId(Long mainUserId) { this.mainUserId = mainUserId; } public String getMainUserName() { return this.mainUserName; } public void setMainUserName(String mainUserName) { this.mainUserName = mainUserName; } public Long getSubUserId() { return this.subUserId; } public void setSubUserId(Long subUserId) { this.subUserId = subUserId; } public String getSubUserName() { return this.subUserName; } public void setSubUserName(String subUserName) { this.subUserName = subUserName; } public Integer getCapacity() { return this.capacity; } public void setCapacity(Integer capacity) { this.capacity = capacity; } public String getSasInstanceId() { return this.sasInstanceId; } public void setSasInstanceId(String sasInstanceId) { this.sasInstanceId = sasInstanceId; } public Boolean getCanBuy() { return this.canBuy; } public void setCanBuy(Boolean canBuy) { this.canBuy = canBuy; } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; } public Long getDurationDays() { return this.durationDays; } public void setDurationDays(Long durationDays) { this.durationDays = durationDays; } public Integer getRdOrder() { return this.rdOrder; } public void setRdOrder(Integer rdOrder) { this.rdOrder = rdOrder; } } @Override public DescribeUserBuyStatusResponse getInstance(UnmarshallerContext context) { return DescribeUserBuyStatusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeWafScopeRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeWafScopeRequest extends RpcAcsRequest<DescribeWafScopeResponse> { private Long roleFor; private Long entityId; private Integer roleType; public DescribeWafScopeRequest() { super("cloud-siem", "2022-06-16", "DescribeWafScope", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Long getEntityId() { return this.entityId; } public void setEntityId(Long entityId) { this.entityId = entityId; if(entityId != null){ putBodyParameter("EntityId", entityId.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } @Override public Class<DescribeWafScopeResponse> getResponseClass() { return DescribeWafScopeResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeWafScopeResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeWafScopeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeWafScopeResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private List<DataItem> data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String instanceId; private Long aliuid; private List<String> domains; public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public Long getAliuid() { return this.aliuid; } public void setAliuid(Long aliuid) { this.aliuid = aliuid; } public List<String> getDomains() { return this.domains; } public void setDomains(List<String> domains) { this.domains = domains; } } @Override public DescribeWafScopeResponse getInstance(UnmarshallerContext context) { return DescribeWafScopeResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeWhiteRuleListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeWhiteRuleListRequest extends RpcAcsRequest<DescribeWhiteRuleListResponse> { private Long roleFor; private String alertName; private Integer pageSize; private Integer roleType; private Integer currentPage; private String alertType; private String incidentUuid; public DescribeWhiteRuleListRequest() { super("cloud-siem", "2022-06-16", "DescribeWhiteRuleList", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public String getAlertName() { return this.alertName; } public void setAlertName(String alertName) { this.alertName = alertName; if(alertName != null){ putBodyParameter("AlertName", alertName); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putBodyParameter("CurrentPage", currentPage.toString()); } } public String getAlertType() { return this.alertType; } public void setAlertType(String alertType) { this.alertType = alertType; if(alertType != null){ putBodyParameter("AlertType", alertType); } } public String getIncidentUuid() { return this.incidentUuid; } public void setIncidentUuid(String incidentUuid) { this.incidentUuid = incidentUuid; if(incidentUuid != null){ putBodyParameter("IncidentUuid", incidentUuid); } } @Override public Class<DescribeWhiteRuleListResponse> getResponseClass() { return DescribeWhiteRuleListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/DescribeWhiteRuleListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.DescribeWhiteRuleListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeWhiteRuleListResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<ResponseDataItem> responseData; private PageInfo pageInfo; public List<ResponseDataItem> getResponseData() { return this.responseData; } public void setResponseData(List<ResponseDataItem> responseData) { this.responseData = responseData; } public PageInfo getPageInfo() { return this.pageInfo; } public void setPageInfo(PageInfo pageInfo) { this.pageInfo = pageInfo; } public static class ResponseDataItem { private Long id; private String gmtCreate; private String gmtModified; private Long aliuid; private Long subAliuid; private String alertType; private String alertTypeId; private String alertName; private String alertNameId; private Integer status; private String incidentUuid; private String alertUuid; private Expression expression; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } public Long getAliuid() { return this.aliuid; } public void setAliuid(Long aliuid) { this.aliuid = aliuid; } public Long getSubAliuid() { return this.subAliuid; } public void setSubAliuid(Long subAliuid) { this.subAliuid = subAliuid; } public String getAlertType() { return this.alertType; } public void setAlertType(String alertType) { this.alertType = alertType; } public String getAlertTypeId() { return this.alertTypeId; } public void setAlertTypeId(String alertTypeId) { this.alertTypeId = alertTypeId; } public String getAlertName() { return this.alertName; } public void setAlertName(String alertName) { this.alertName = alertName; } public String getAlertNameId() { return this.alertNameId; } public void setAlertNameId(String alertNameId) { this.alertNameId = alertNameId; } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public String getIncidentUuid() { return this.incidentUuid; } public void setIncidentUuid(String incidentUuid) { this.incidentUuid = incidentUuid; } public String getAlertUuid() { return this.alertUuid; } public void setAlertUuid(String alertUuid) { this.alertUuid = alertUuid; } public Expression getExpression() { return this.expression; } public void setExpression(Expression expression) { this.expression = expression; } public static class Expression { private String logic; private List<Condition> conditions; public String getLogic() { return this.logic; } public void setLogic(String logic) { this.logic = logic; } public List<Condition> getConditions() { return this.conditions; } public void setConditions(List<Condition> conditions) { this.conditions = conditions; } public static class Condition { private Integer itemId; private String operator; private Boolean isNot; private Left left; private Right right; public Integer getItemId() { return this.itemId; } public void setItemId(Integer itemId) { this.itemId = itemId; } public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } public Boolean getIsNot() { return this.isNot; } public void setIsNot(Boolean isNot) { this.isNot = isNot; } public Left getLeft() { return this.left; } public void setLeft(Left left) { this.left = left; } public Right getRight() { return this.right; } public void setRight(Right right) { this.right = right; } public static class Left { private String value; private Boolean isVar; private String type; private String modifier; private Map<Object,Object> modifierParam; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public Boolean getIsVar() { return this.isVar; } public void setIsVar(Boolean isVar) { this.isVar = isVar; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getModifier() { return this.modifier; } public void setModifier(String modifier) { this.modifier = modifier; } public Map<Object,Object> getModifierParam() { return this.modifierParam; } public void setModifierParam(Map<Object,Object> modifierParam) { this.modifierParam = modifierParam; } } public static class Right { private String value; private Boolean isVar; private String type; private String modifier; private Map<Object,Object> modifierParam; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public Boolean getIsVar() { return this.isVar; } public void setIsVar(Boolean isVar) { this.isVar = isVar; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getModifier() { return this.modifier; } public void setModifier(String modifier) { this.modifier = modifier; } public Map<Object,Object> getModifierParam() { return this.modifierParam; } public void setModifierParam(Map<Object,Object> modifierParam) { this.modifierParam = modifierParam; } } } } } public static class PageInfo { private Integer currentPage; private Integer pageSize; private Long totalCount; public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } } } @Override public DescribeWhiteRuleListResponse getInstance(UnmarshallerContext context) { return DescribeWhiteRuleListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/EnableAccessForCloudSiemRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class EnableAccessForCloudSiemRequest extends RpcAcsRequest<EnableAccessForCloudSiemResponse> { private Long roleFor; private Integer autoSubmit; private Integer roleType; public EnableAccessForCloudSiemRequest() { super("cloud-siem", "2022-06-16", "EnableAccessForCloudSiem", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getAutoSubmit() { return this.autoSubmit; } public void setAutoSubmit(Integer autoSubmit) { this.autoSubmit = autoSubmit; if(autoSubmit != null){ putBodyParameter("AutoSubmit", autoSubmit.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } @Override public Class<EnableAccessForCloudSiemResponse> getResponseClass() { return EnableAccessForCloudSiemResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/EnableAccessForCloudSiemResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.EnableAccessForCloudSiemResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class EnableAccessForCloudSiemResponse extends AcsResponse { private Boolean data; private String requestId; public Boolean getData() { return this.data; } public void setData(Boolean data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public EnableAccessForCloudSiemResponse getInstance(UnmarshallerContext context) { return EnableAccessForCloudSiemResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/EnableServiceForCloudSiemRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class EnableServiceForCloudSiemRequest extends RpcAcsRequest<EnableServiceForCloudSiemResponse> { public EnableServiceForCloudSiemRequest() { super("cloud-siem", "2022-06-16", "EnableServiceForCloudSiem", "cloud-siem"); setMethod(MethodType.POST); } @Override public Class<EnableServiceForCloudSiemResponse> getResponseClass() { return EnableServiceForCloudSiemResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/EnableServiceForCloudSiemResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.EnableServiceForCloudSiemResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class EnableServiceForCloudSiemResponse extends AcsResponse { private Boolean data; private String requestId; public Boolean getData() { return this.data; } public void setData(Boolean data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public EnableServiceForCloudSiemResponse getInstance(UnmarshallerContext context) { return EnableServiceForCloudSiemResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/GetCapacityRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetCapacityRequest extends RpcAcsRequest<GetCapacityResponse> { private Long roleFor; private Integer roleType; public GetCapacityRequest() { super("cloud-siem", "2022-06-16", "GetCapacity", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } @Override public Class<GetCapacityResponse> getResponseClass() { return GetCapacityResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/GetCapacityResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.GetCapacityResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetCapacityResponse 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 Double usedCapacity; private Long preservedCapacity; private Boolean existLogStore; public Double getUsedCapacity() { return this.usedCapacity; } public void setUsedCapacity(Double usedCapacity) { this.usedCapacity = usedCapacity; } public Long getPreservedCapacity() { return this.preservedCapacity; } public void setPreservedCapacity(Long preservedCapacity) { this.preservedCapacity = preservedCapacity; } public Boolean getExistLogStore() { return this.existLogStore; } public void setExistLogStore(Boolean existLogStore) { this.existLogStore = existLogStore; } } @Override public GetCapacityResponse getInstance(UnmarshallerContext context) { return GetCapacityResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/GetStorageRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class GetStorageRequest extends RpcAcsRequest<GetStorageResponse> { private Long roleFor; private Integer roleType; public GetStorageRequest() { super("cloud-siem", "2022-06-16", "GetStorage", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } @Override public Class<GetStorageResponse> getResponseClass() { return GetStorageResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/GetStorageResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.GetStorageResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetStorageResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer ttl; private String region; private Boolean displayRegion; private Boolean canOperate; public Integer getTtl() { return this.ttl; } public void setTtl(Integer ttl) { this.ttl = ttl; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public Boolean getDisplayRegion() { return this.displayRegion; } public void setDisplayRegion(Boolean displayRegion) { this.displayRegion = displayRegion; } public Boolean getCanOperate() { return this.canOperate; } public void setCanOperate(Boolean canOperate) { this.canOperate = canOperate; } } @Override public GetStorageResponse getInstance(UnmarshallerContext context) { return GetStorageResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListAccountAccessIdRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListAccountAccessIdRequest extends RpcAcsRequest<ListAccountAccessIdResponse> { private String cloudCode; private Long roleFor; private Integer roleType; public ListAccountAccessIdRequest() { super("cloud-siem", "2022-06-16", "ListAccountAccessId", "cloud-siem"); setMethod(MethodType.POST); } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; if(cloudCode != null){ putBodyParameter("CloudCode", cloudCode); } } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } @Override public Class<ListAccountAccessIdResponse> getResponseClass() { return ListAccountAccessIdResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListAccountAccessIdResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.ListAccountAccessIdResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListAccountAccessIdResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private List<DataItem> data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private Long subUserId; private String accessIdMd5; private String accountStr; private Integer bound; private String accessId; private String accountId; private String cloudCode; public Long getSubUserId() { return this.subUserId; } public void setSubUserId(Long subUserId) { this.subUserId = subUserId; } public String getAccessIdMd5() { return this.accessIdMd5; } public void setAccessIdMd5(String accessIdMd5) { this.accessIdMd5 = accessIdMd5; } public String getAccountStr() { return this.accountStr; } public void setAccountStr(String accountStr) { this.accountStr = accountStr; } public Integer getBound() { return this.bound; } public void setBound(Integer bound) { this.bound = bound; } public String getAccessId() { return this.accessId; } public void setAccessId(String accessId) { this.accessId = accessId; } public String getAccountId() { return this.accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; } } @Override public ListAccountAccessIdResponse getInstance(UnmarshallerContext context) { return ListAccountAccessIdResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListAccountsByLogRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListAccountsByLogRequest extends RpcAcsRequest<ListAccountsByLogResponse> { private String cloudCode; private Long roleFor; private Integer roleType; private List<String> logCodess; private String prodCode; public ListAccountsByLogRequest() { super("cloud-siem", "2022-06-16", "ListAccountsByLog", "cloud-siem"); setMethod(MethodType.POST); } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; if(cloudCode != null){ putBodyParameter("CloudCode", cloudCode); } } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public List<String> getLogCodess() { return this.logCodess; } public void setLogCodess(List<String> logCodess) { this.logCodess = logCodess; if (logCodess != null) { for (int i = 0; i < logCodess.size(); i++) { putBodyParameter("LogCodes." + (i + 1) , logCodess.get(i)); } } } public String getProdCode() { return this.prodCode; } public void setProdCode(String prodCode) { this.prodCode = prodCode; if(prodCode != null){ putBodyParameter("ProdCode", prodCode); } } @Override public Class<ListAccountsByLogResponse> getResponseClass() { return ListAccountsByLogResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListAccountsByLogResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.ListAccountsByLogResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListAccountsByLogResponse extends AcsResponse { private String requestId; private List<DataItem> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private Long subUserId; private Long mainUserId; private String accountId; private String accountName; private Integer imported; private String logCode; private String prodCode; public Long getSubUserId() { return this.subUserId; } public void setSubUserId(Long subUserId) { this.subUserId = subUserId; } public Long getMainUserId() { return this.mainUserId; } public void setMainUserId(Long mainUserId) { this.mainUserId = mainUserId; } public String getAccountId() { return this.accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public Integer getImported() { return this.imported; } public void setImported(Integer imported) { this.imported = imported; } public String getLogCode() { return this.logCode; } public void setLogCode(String logCode) { this.logCode = logCode; } public String getProdCode() { return this.prodCode; } public void setProdCode(String prodCode) { this.prodCode = prodCode; } } @Override public ListAccountsByLogResponse getInstance(UnmarshallerContext context) { return ListAccountsByLogResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListAllProdsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListAllProdsRequest extends RpcAcsRequest<ListAllProdsResponse> { private Long roleFor; private Integer roleType; public ListAllProdsRequest() { super("cloud-siem", "2022-06-16", "ListAllProds", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } @Override public Class<ListAllProdsResponse> getResponseClass() { return ListAllProdsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListAllProdsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.ListAllProdsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListAllProdsResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer totalCount; private Integer pageSize; private Integer currentPage; private List<ProdListItem> prodList; public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; } public List<ProdListItem> getProdList() { return this.prodList; } public void setProdList(List<ProdListItem> prodList) { this.prodList = prodList; } public static class ProdListItem { private String prodCode; private Integer totalLogCount; private Integer importedLogCount; private String modifyTime; private String cloudCode; public String getProdCode() { return this.prodCode; } public void setProdCode(String prodCode) { this.prodCode = prodCode; } public Integer getTotalLogCount() { return this.totalLogCount; } public void setTotalLogCount(Integer totalLogCount) { this.totalLogCount = totalLogCount; } public Integer getImportedLogCount() { return this.importedLogCount; } public void setImportedLogCount(Integer importedLogCount) { this.importedLogCount = importedLogCount; } public String getModifyTime() { return this.modifyTime; } public void setModifyTime(String modifyTime) { this.modifyTime = modifyTime; } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; } } } @Override public ListAllProdsResponse getInstance(UnmarshallerContext context) { return ListAllProdsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListAutomateResponseConfigsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListAutomateResponseConfigsRequest extends RpcAcsRequest<ListAutomateResponseConfigsResponse> { private String actionType; private Long roleFor; private String ruleName; private Long subUserId; private Integer pageSize; private String autoResponseType; private Integer roleType; private Long id; private Integer currentPage; private String playbookUuid; private Integer status; public ListAutomateResponseConfigsRequest() { super("cloud-siem", "2022-06-16", "ListAutomateResponseConfigs", "cloud-siem"); setMethod(MethodType.POST); } public String getActionType() { return this.actionType; } public void setActionType(String actionType) { this.actionType = actionType; if(actionType != null){ putBodyParameter("ActionType", actionType); } } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public String getRuleName() { return this.ruleName; } public void setRuleName(String ruleName) { this.ruleName = ruleName; if(ruleName != null){ putBodyParameter("RuleName", ruleName); } } public Long getSubUserId() { return this.subUserId; } public void setSubUserId(Long subUserId) { this.subUserId = subUserId; if(subUserId != null){ putBodyParameter("SubUserId", subUserId.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public String getAutoResponseType() { return this.autoResponseType; } public void setAutoResponseType(String autoResponseType) { this.autoResponseType = autoResponseType; if(autoResponseType != null){ putBodyParameter("AutoResponseType", autoResponseType); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; if(id != null){ putBodyParameter("Id", id.toString()); } } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putBodyParameter("CurrentPage", currentPage.toString()); } } public String getPlaybookUuid() { return this.playbookUuid; } public void setPlaybookUuid(String playbookUuid) { this.playbookUuid = playbookUuid; if(playbookUuid != null){ putBodyParameter("PlaybookUuid", playbookUuid); } } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; if(status != null){ putBodyParameter("Status", status.toString()); } } @Override public Class<ListAutomateResponseConfigsResponse> getResponseClass() { return ListAutomateResponseConfigsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListAutomateResponseConfigsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.ListAutomateResponseConfigsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListAutomateResponseConfigsResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<ResponseDataItem> responseData; private PageInfo pageInfo; public List<ResponseDataItem> getResponseData() { return this.responseData; } public void setResponseData(List<ResponseDataItem> responseData) { this.responseData = responseData; } public PageInfo getPageInfo() { return this.pageInfo; } public void setPageInfo(PageInfo pageInfo) { this.pageInfo = pageInfo; } public static class ResponseDataItem { private Long id; private String gmtCreate; private String gmtModified; private Long aliuid; private Long subUserId; private String ruleName; private String autoResponseType; private String executionCondition; private String actionType; private String actionConfig; private Integer status; private Integer dataType; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } public Long getAliuid() { return this.aliuid; } public void setAliuid(Long aliuid) { this.aliuid = aliuid; } public Long getSubUserId() { return this.subUserId; } public void setSubUserId(Long subUserId) { this.subUserId = subUserId; } public String getRuleName() { return this.ruleName; } public void setRuleName(String ruleName) { this.ruleName = ruleName; } public String getAutoResponseType() { return this.autoResponseType; } public void setAutoResponseType(String autoResponseType) { this.autoResponseType = autoResponseType; } public String getExecutionCondition() { return this.executionCondition; } public void setExecutionCondition(String executionCondition) { this.executionCondition = executionCondition; } public String getActionType() { return this.actionType; } public void setActionType(String actionType) { this.actionType = actionType; } public String getActionConfig() { return this.actionConfig; } public void setActionConfig(String actionConfig) { this.actionConfig = actionConfig; } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public Integer getDataType() { return this.dataType; } public void setDataType(Integer dataType) { this.dataType = dataType; } } public static class PageInfo { private Integer currentPage; private Integer pageSize; private Long totalCount; public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } } } @Override public ListAutomateResponseConfigsResponse getInstance(UnmarshallerContext context) { return ListAutomateResponseConfigsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListBindAccountRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListBindAccountRequest extends RpcAcsRequest<ListBindAccountResponse> { private String cloudCode; private Long roleFor; private Integer roleType; public ListBindAccountRequest() { super("cloud-siem", "2022-06-16", "ListBindAccount", "cloud-siem"); setMethod(MethodType.POST); } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; if(cloudCode != null){ putBodyParameter("CloudCode", cloudCode); } } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } @Override public Class<ListBindAccountResponse> getResponseClass() { return ListBindAccountResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListBindAccountResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.ListBindAccountResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListBindAccountResponse extends AcsResponse { private String requestId; private List<DataItem> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String accountName; private String accessId; private Long dataSourceCount; private String modifyTime; private String createUser; private Long bindId; private String accountId; private String cloudCode; public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public String getAccessId() { return this.accessId; } public void setAccessId(String accessId) { this.accessId = accessId; } public Long getDataSourceCount() { return this.dataSourceCount; } public void setDataSourceCount(Long dataSourceCount) { this.dataSourceCount = dataSourceCount; } public String getModifyTime() { return this.modifyTime; } public void setModifyTime(String modifyTime) { this.modifyTime = modifyTime; } public String getCreateUser() { return this.createUser; } public void setCreateUser(String createUser) { this.createUser = createUser; } public Long getBindId() { return this.bindId; } public void setBindId(Long bindId) { this.bindId = bindId; } public String getAccountId() { return this.accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; } } @Override public ListBindAccountResponse getInstance(UnmarshallerContext context) { return ListBindAccountResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListBindDataSourcesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListBindDataSourcesRequest extends RpcAcsRequest<ListBindDataSourcesResponse> { private String cloudCode; private String accountId; public ListBindDataSourcesRequest() { super("cloud-siem", "2022-06-16", "ListBindDataSources", "cloud-siem"); setMethod(MethodType.POST); } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; if(cloudCode != null){ putBodyParameter("CloudCode", cloudCode); } } public String getAccountId() { return this.accountId; } public void setAccountId(String accountId) { this.accountId = accountId; if(accountId != null){ putBodyParameter("AccountId", accountId); } } @Override public Class<ListBindDataSourcesResponse> getResponseClass() { return ListBindDataSourcesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListBindDataSourcesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.ListBindDataSourcesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListBindDataSourcesResponse extends AcsResponse { private String requestId; private List<DataItem> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String accountName; private String dataSourceInstanceId; private String dataSourceType; private String dataSourceName; private String dataSourceRemark; private Integer logCount; private Integer taskCount; private String accountId; private String cloudCode; public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } public String getDataSourceInstanceId() { return this.dataSourceInstanceId; } public void setDataSourceInstanceId(String dataSourceInstanceId) { this.dataSourceInstanceId = dataSourceInstanceId; } public String getDataSourceType() { return this.dataSourceType; } public void setDataSourceType(String dataSourceType) { this.dataSourceType = dataSourceType; } public String getDataSourceName() { return this.dataSourceName; } public void setDataSourceName(String dataSourceName) { this.dataSourceName = dataSourceName; } public String getDataSourceRemark() { return this.dataSourceRemark; } public void setDataSourceRemark(String dataSourceRemark) { this.dataSourceRemark = dataSourceRemark; } public Integer getLogCount() { return this.logCount; } public void setLogCount(Integer logCount) { this.logCount = logCount; } public Integer getTaskCount() { return this.taskCount; } public void setTaskCount(Integer taskCount) { this.taskCount = taskCount; } public String getAccountId() { return this.accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; } } @Override public ListBindDataSourcesResponse getInstance(UnmarshallerContext context) { return ListBindDataSourcesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListCloudSiemCustomizeRulesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListCloudSiemCustomizeRulesRequest extends RpcAcsRequest<ListCloudSiemCustomizeRulesResponse> { private Long roleFor; private String ruleName; private Long startTime; private Integer pageSize; private Integer roleType; private String id; private String orderField; private String order; private String ruleType; private Long endTime; private Integer currentPage; private String alertType; private List<String> threatLevels; private Integer status; public ListCloudSiemCustomizeRulesRequest() { super("cloud-siem", "2022-06-16", "ListCloudSiemCustomizeRules", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public String getRuleName() { return this.ruleName; } public void setRuleName(String ruleName) { this.ruleName = ruleName; if(ruleName != null){ putBodyParameter("RuleName", ruleName); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public String getId() { return this.id; } public void setId(String id) { this.id = id; if(id != null){ putBodyParameter("Id", id); } } public String getOrderField() { return this.orderField; } public void setOrderField(String orderField) { this.orderField = orderField; if(orderField != null){ putBodyParameter("OrderField", orderField); } } public String getOrder() { return this.order; } public void setOrder(String order) { this.order = order; if(order != null){ putBodyParameter("Order", order); } } public String getRuleType() { return this.ruleType; } public void setRuleType(String ruleType) { this.ruleType = ruleType; if(ruleType != null){ putBodyParameter("RuleType", ruleType); } } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime.toString()); } } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putBodyParameter("CurrentPage", currentPage.toString()); } } public String getAlertType() { return this.alertType; } public void setAlertType(String alertType) { this.alertType = alertType; if(alertType != null){ putBodyParameter("AlertType", alertType); } } public List<String> getThreatLevels() { return this.threatLevels; } public void setThreatLevels(List<String> threatLevels) { this.threatLevels = threatLevels; if (threatLevels != null) { for (int i = 0; i < threatLevels.size(); i++) { putBodyParameter("ThreatLevel." + (i + 1) , threatLevels.get(i)); } } } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; if(status != null){ putBodyParameter("Status", status.toString()); } } @Override public Class<ListCloudSiemCustomizeRulesResponse> getResponseClass() { return ListCloudSiemCustomizeRulesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListCloudSiemCustomizeRulesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.ListCloudSiemCustomizeRulesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListCloudSiemCustomizeRulesResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<ResponseDataItem> responseData; private PageInfo pageInfo; public List<ResponseDataItem> getResponseData() { return this.responseData; } public void setResponseData(List<ResponseDataItem> responseData) { this.responseData = responseData; } public PageInfo getPageInfo() { return this.pageInfo; } public void setPageInfo(PageInfo pageInfo) { this.pageInfo = pageInfo; } public static class ResponseDataItem { private Long id; private String gmtCreate; private String gmtModified; private Long aliuid; private String ruleName; private String ruleDesc; private String ruleType; private String threatLevel; private String alertType; private String alertTypeMds; private String logType; private String logTypeMds; private String logSource; private String logSourceMds; private String ruleCondition; private String ruleGroup; private String ruleThreshold; private String queryCycle; private String attCk; private Integer eventTransferSwitch; private String eventTransferType; private String eventTransferExt; private Integer status; private Integer dataType; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } public Long getAliuid() { return this.aliuid; } public void setAliuid(Long aliuid) { this.aliuid = aliuid; } public String getRuleName() { return this.ruleName; } public void setRuleName(String ruleName) { this.ruleName = ruleName; } public String getRuleDesc() { return this.ruleDesc; } public void setRuleDesc(String ruleDesc) { this.ruleDesc = ruleDesc; } public String getRuleType() { return this.ruleType; } public void setRuleType(String ruleType) { this.ruleType = ruleType; } public String getThreatLevel() { return this.threatLevel; } public void setThreatLevel(String threatLevel) { this.threatLevel = threatLevel; } public String getAlertType() { return this.alertType; } public void setAlertType(String alertType) { this.alertType = alertType; } public String getAlertTypeMds() { return this.alertTypeMds; } public void setAlertTypeMds(String alertTypeMds) { this.alertTypeMds = alertTypeMds; } public String getLogType() { return this.logType; } public void setLogType(String logType) { this.logType = logType; } public String getLogTypeMds() { return this.logTypeMds; } public void setLogTypeMds(String logTypeMds) { this.logTypeMds = logTypeMds; } public String getLogSource() { return this.logSource; } public void setLogSource(String logSource) { this.logSource = logSource; } public String getLogSourceMds() { return this.logSourceMds; } public void setLogSourceMds(String logSourceMds) { this.logSourceMds = logSourceMds; } public String getRuleCondition() { return this.ruleCondition; } public void setRuleCondition(String ruleCondition) { this.ruleCondition = ruleCondition; } public String getRuleGroup() { return this.ruleGroup; } public void setRuleGroup(String ruleGroup) { this.ruleGroup = ruleGroup; } public String getRuleThreshold() { return this.ruleThreshold; } public void setRuleThreshold(String ruleThreshold) { this.ruleThreshold = ruleThreshold; } public String getQueryCycle() { return this.queryCycle; } public void setQueryCycle(String queryCycle) { this.queryCycle = queryCycle; } public String getAttCk() { return this.attCk; } public void setAttCk(String attCk) { this.attCk = attCk; } public Integer getEventTransferSwitch() { return this.eventTransferSwitch; } public void setEventTransferSwitch(Integer eventTransferSwitch) { this.eventTransferSwitch = eventTransferSwitch; } public String getEventTransferType() { return this.eventTransferType; } public void setEventTransferType(String eventTransferType) { this.eventTransferType = eventTransferType; } public String getEventTransferExt() { return this.eventTransferExt; } public void setEventTransferExt(String eventTransferExt) { this.eventTransferExt = eventTransferExt; } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public Integer getDataType() { return this.dataType; } public void setDataType(Integer dataType) { this.dataType = dataType; } } public static class PageInfo { private Integer currentPage; private Integer pageSize; private Long totalCount; public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } } } @Override public ListCloudSiemCustomizeRulesResponse getInstance(UnmarshallerContext context) { return ListCloudSiemCustomizeRulesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListCloudSiemPredefinedRulesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListCloudSiemPredefinedRulesRequest extends RpcAcsRequest<ListCloudSiemPredefinedRulesResponse> { private Long roleFor; private String attCk; private String ruleName; private Long startTime; private Integer pageSize; private Integer roleType; private String id; private String orderField; private String order; private String ruleType; private Long endTime; private Integer currentPage; private String logSource; private String alertType; private String eventTransferType; private List<String> threatLevels; private Integer status; public ListCloudSiemPredefinedRulesRequest() { super("cloud-siem", "2022-06-16", "ListCloudSiemPredefinedRules", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public String getAttCk() { return this.attCk; } public void setAttCk(String attCk) { this.attCk = attCk; if(attCk != null){ putBodyParameter("AttCk", attCk); } } public String getRuleName() { return this.ruleName; } public void setRuleName(String ruleName) { this.ruleName = ruleName; if(ruleName != null){ putBodyParameter("RuleName", ruleName); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public String getId() { return this.id; } public void setId(String id) { this.id = id; if(id != null){ putBodyParameter("Id", id); } } public String getOrderField() { return this.orderField; } public void setOrderField(String orderField) { this.orderField = orderField; if(orderField != null){ putBodyParameter("OrderField", orderField); } } public String getOrder() { return this.order; } public void setOrder(String order) { this.order = order; if(order != null){ putBodyParameter("Order", order); } } public String getRuleType() { return this.ruleType; } public void setRuleType(String ruleType) { this.ruleType = ruleType; if(ruleType != null){ putBodyParameter("RuleType", ruleType); } } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime.toString()); } } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putBodyParameter("CurrentPage", currentPage.toString()); } } public String getLogSource() { return this.logSource; } public void setLogSource(String logSource) { this.logSource = logSource; if(logSource != null){ putBodyParameter("LogSource", logSource); } } public String getAlertType() { return this.alertType; } public void setAlertType(String alertType) { this.alertType = alertType; if(alertType != null){ putBodyParameter("AlertType", alertType); } } public String getEventTransferType() { return this.eventTransferType; } public void setEventTransferType(String eventTransferType) { this.eventTransferType = eventTransferType; if(eventTransferType != null){ putBodyParameter("EventTransferType", eventTransferType); } } public List<String> getThreatLevels() { return this.threatLevels; } public void setThreatLevels(List<String> threatLevels) { this.threatLevels = threatLevels; if (threatLevels != null) { for (int i = 0; i < threatLevels.size(); i++) { putBodyParameter("ThreatLevel." + (i + 1) , threatLevels.get(i)); } } } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; if(status != null){ putBodyParameter("Status", status.toString()); } } @Override public Class<ListCloudSiemPredefinedRulesResponse> getResponseClass() { return ListCloudSiemPredefinedRulesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListCloudSiemPredefinedRulesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.ListCloudSiemPredefinedRulesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListCloudSiemPredefinedRulesResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<ResponseDataItem> responseData; private PageInfo pageInfo; public List<ResponseDataItem> getResponseData() { return this.responseData; } public void setResponseData(List<ResponseDataItem> responseData) { this.responseData = responseData; } public PageInfo getPageInfo() { return this.pageInfo; } public void setPageInfo(PageInfo pageInfo) { this.pageInfo = pageInfo; } public static class ResponseDataItem { private Long id; private String gmtCreate; private String gmtModified; private String ruleName; private String ruleNameCn; private String ruleNameEn; private String ruleNameMds; private String ruleDescMds; private String threatLevel; private String alertType; private String source; private String eventTransferType; private String attCk; private Integer status; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } public String getRuleName() { return this.ruleName; } public void setRuleName(String ruleName) { this.ruleName = ruleName; } public String getRuleNameCn() { return this.ruleNameCn; } public void setRuleNameCn(String ruleNameCn) { this.ruleNameCn = ruleNameCn; } public String getRuleNameEn() { return this.ruleNameEn; } public void setRuleNameEn(String ruleNameEn) { this.ruleNameEn = ruleNameEn; } public String getRuleNameMds() { return this.ruleNameMds; } public void setRuleNameMds(String ruleNameMds) { this.ruleNameMds = ruleNameMds; } public String getRuleDescMds() { return this.ruleDescMds; } public void setRuleDescMds(String ruleDescMds) { this.ruleDescMds = ruleDescMds; } public String getThreatLevel() { return this.threatLevel; } public void setThreatLevel(String threatLevel) { this.threatLevel = threatLevel; } public String getAlertType() { return this.alertType; } public void setAlertType(String alertType) { this.alertType = alertType; } public String getSource() { return this.source; } public void setSource(String source) { this.source = source; } public String getEventTransferType() { return this.eventTransferType; } public void setEventTransferType(String eventTransferType) { this.eventTransferType = eventTransferType; } public String getAttCk() { return this.attCk; } public void setAttCk(String attCk) { this.attCk = attCk; } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } } public static class PageInfo { private Integer currentPage; private Integer pageSize; private Long totalCount; public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } } } @Override public ListCloudSiemPredefinedRulesResponse getInstance(UnmarshallerContext context) { return ListCloudSiemPredefinedRulesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListCustomizeRuleTestResultRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListCustomizeRuleTestResultRequest extends RpcAcsRequest<ListCustomizeRuleTestResultResponse> { private Long roleFor; private Long startTime; private String verifyType; private Integer pageSize; private Integer roleType; private Long id; private Long endTime; private Integer currentPage; private String detectionRuleId; public ListCustomizeRuleTestResultRequest() { super("cloud-siem", "2022-06-16", "ListCustomizeRuleTestResult", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime.toString()); } } public String getVerifyType() { return this.verifyType; } public void setVerifyType(String verifyType) { this.verifyType = verifyType; if(verifyType != null){ putBodyParameter("VerifyType", verifyType); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; if(id != null){ putBodyParameter("Id", id.toString()); } } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime.toString()); } } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putBodyParameter("CurrentPage", currentPage.toString()); } } public String getDetectionRuleId() { return this.detectionRuleId; } public void setDetectionRuleId(String detectionRuleId) { this.detectionRuleId = detectionRuleId; if(detectionRuleId != null){ putBodyParameter("DetectionRuleId", detectionRuleId); } } @Override public Class<ListCustomizeRuleTestResultResponse> getResponseClass() { return ListCustomizeRuleTestResultResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListCustomizeRuleTestResultResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.ListCustomizeRuleTestResultResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListCustomizeRuleTestResultResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<ResponseDataItem> responseData; private PageInfo pageInfo; public List<ResponseDataItem> getResponseData() { return this.responseData; } public void setResponseData(List<ResponseDataItem> responseData) { this.responseData = responseData; } public PageInfo getPageInfo() { return this.pageInfo; } public void setPageInfo(PageInfo pageInfo) { this.pageInfo = pageInfo; } public static class ResponseDataItem { private String uuid; private String mainUserId; private String subUserId; private String logType; private String logSource; private String alertSrcProd; private String alertSrcProdModule; private String attCk; private String alertDesc; private String onlineStatus; private String eventName; private String level; private String eventType; private String alertDetail; private String logTime; private String verifyType; public String getUuid() { return this.uuid; } public void setUuid(String uuid) { this.uuid = uuid; } public String getMainUserId() { return this.mainUserId; } public void setMainUserId(String mainUserId) { this.mainUserId = mainUserId; } public String getSubUserId() { return this.subUserId; } public void setSubUserId(String subUserId) { this.subUserId = subUserId; } public String getLogType() { return this.logType; } public void setLogType(String logType) { this.logType = logType; } public String getLogSource() { return this.logSource; } public void setLogSource(String logSource) { this.logSource = logSource; } public String getAlertSrcProd() { return this.alertSrcProd; } public void setAlertSrcProd(String alertSrcProd) { this.alertSrcProd = alertSrcProd; } public String getAlertSrcProdModule() { return this.alertSrcProdModule; } public void setAlertSrcProdModule(String alertSrcProdModule) { this.alertSrcProdModule = alertSrcProdModule; } public String getAttCk() { return this.attCk; } public void setAttCk(String attCk) { this.attCk = attCk; } public String getAlertDesc() { return this.alertDesc; } public void setAlertDesc(String alertDesc) { this.alertDesc = alertDesc; } public String getOnlineStatus() { return this.onlineStatus; } public void setOnlineStatus(String onlineStatus) { this.onlineStatus = onlineStatus; } public String getEventName() { return this.eventName; } public void setEventName(String eventName) { this.eventName = eventName; } public String getLevel() { return this.level; } public void setLevel(String level) { this.level = level; } public String getEventType() { return this.eventType; } public void setEventType(String eventType) { this.eventType = eventType; } public String getAlertDetail() { return this.alertDetail; } public void setAlertDetail(String alertDetail) { this.alertDetail = alertDetail; } public String getLogTime() { return this.logTime; } public void setLogTime(String logTime) { this.logTime = logTime; } public String getVerifyType() { return this.verifyType; } public void setVerifyType(String verifyType) { this.verifyType = verifyType; } } public static class PageInfo { private Integer currentPage; private Integer pageSize; private Long totalCount; private Long verifiedCount; public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public Long getVerifiedCount() { return this.verifiedCount; } public void setVerifiedCount(Long verifiedCount) { this.verifiedCount = verifiedCount; } } } @Override public ListCustomizeRuleTestResultResponse getInstance(UnmarshallerContext context) { return ListCustomizeRuleTestResultResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListDataSourceLogsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListDataSourceLogsRequest extends RpcAcsRequest<ListDataSourceLogsResponse> { private String cloudCode; private String accountId; private String dataSourceInstanceId; public ListDataSourceLogsRequest() { super("cloud-siem", "2022-06-16", "ListDataSourceLogs", "cloud-siem"); setMethod(MethodType.POST); } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; if(cloudCode != null){ putBodyParameter("CloudCode", cloudCode); } } public String getAccountId() { return this.accountId; } public void setAccountId(String accountId) { this.accountId = accountId; if(accountId != null){ putBodyParameter("AccountId", accountId); } } public String getDataSourceInstanceId() { return this.dataSourceInstanceId; } public void setDataSourceInstanceId(String dataSourceInstanceId) { this.dataSourceInstanceId = dataSourceInstanceId; if(dataSourceInstanceId != null){ putBodyParameter("DataSourceInstanceId", dataSourceInstanceId); } } @Override public Class<ListDataSourceLogsResponse> getResponseClass() { return ListDataSourceLogsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListDataSourceLogsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.ListDataSourceLogsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListDataSourceLogsResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long subUserId; private String dataSourceInstanceId; private String dataSourceInstanceName; private String dataSourceInstanceRemark; private String accountId; private String cloudCode; private List<DataSourceInstanceLog> dataSourceInstanceLogs; public Long getSubUserId() { return this.subUserId; } public void setSubUserId(Long subUserId) { this.subUserId = subUserId; } public String getDataSourceInstanceId() { return this.dataSourceInstanceId; } public void setDataSourceInstanceId(String dataSourceInstanceId) { this.dataSourceInstanceId = dataSourceInstanceId; } public String getDataSourceInstanceName() { return this.dataSourceInstanceName; } public void setDataSourceInstanceName(String dataSourceInstanceName) { this.dataSourceInstanceName = dataSourceInstanceName; } public String getDataSourceInstanceRemark() { return this.dataSourceInstanceRemark; } public void setDataSourceInstanceRemark(String dataSourceInstanceRemark) { this.dataSourceInstanceRemark = dataSourceInstanceRemark; } public String getAccountId() { return this.accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; } public List<DataSourceInstanceLog> getDataSourceInstanceLogs() { return this.dataSourceInstanceLogs; } public void setDataSourceInstanceLogs(List<DataSourceInstanceLog> dataSourceInstanceLogs) { this.dataSourceInstanceLogs = dataSourceInstanceLogs; } public static class DataSourceInstanceLog { private String logInstanceId; private String logCode; private String logMdsCode; private Integer taskStatus; private List<LogParam> logParams; public String getLogInstanceId() { return this.logInstanceId; } public void setLogInstanceId(String logInstanceId) { this.logInstanceId = logInstanceId; } public String getLogCode() { return this.logCode; } public void setLogCode(String logCode) { this.logCode = logCode; } public String getLogMdsCode() { return this.logMdsCode; } public void setLogMdsCode(String logMdsCode) { this.logMdsCode = logMdsCode; } public Integer getTaskStatus() { return this.taskStatus; } public void setTaskStatus(Integer taskStatus) { this.taskStatus = taskStatus; } public List<LogParam> getLogParams() { return this.logParams; } public void setLogParams(List<LogParam> logParams) { this.logParams = logParams; } public static class LogParam { private String paraCode; private String paraValue; public String getParaCode() { return this.paraCode; } public void setParaCode(String paraCode) { this.paraCode = paraCode; } public String getParaValue() { return this.paraValue; } public void setParaValue(String paraValue) { this.paraValue = paraValue; } } } } @Override public ListDataSourceLogsResponse getInstance(UnmarshallerContext context) { return ListDataSourceLogsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListDataSourceTypesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListDataSourceTypesRequest extends RpcAcsRequest<ListDataSourceTypesResponse> { private String cloudCode; public ListDataSourceTypesRequest() { super("cloud-siem", "2022-06-16", "ListDataSourceTypes", "cloud-siem"); setMethod(MethodType.POST); } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; if(cloudCode != null){ putBodyParameter("CloudCode", cloudCode); } } @Override public Class<ListDataSourceTypesResponse> getResponseClass() { return ListDataSourceTypesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListDataSourceTypesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.ListDataSourceTypesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListDataSourceTypesResponse extends AcsResponse { private String requestId; private List<DataItem> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String dataSourceType; private String cloudCode; public String getDataSourceType() { return this.dataSourceType; } public void setDataSourceType(String dataSourceType) { this.dataSourceType = dataSourceType; } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; } } @Override public ListDataSourceTypesResponse getInstance(UnmarshallerContext context) { return ListDataSourceTypesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListDeliveryRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListDeliveryRequest extends RpcAcsRequest<ListDeliveryResponse> { private Long roleFor; private Integer roleType; public ListDeliveryRequest() { super("cloud-siem", "2022-06-16", "ListDelivery", "cloud-siem"); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } @Override public Class<ListDeliveryResponse> getResponseClass() { return ListDeliveryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListDeliveryResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.ListDeliveryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListDeliveryResponse extends AcsResponse { @Override public ListDeliveryResponse getInstance(UnmarshallerContext context) { return ListDeliveryResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListDisposeStrategyRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListDisposeStrategyRequest extends RpcAcsRequest<ListDisposeStrategyResponse> { private String entityIdentity; private String playbookName; private String playbookTypes; private Long roleFor; private Long startTime; private Integer pageSize; private Integer roleType; private String orderField; private String order; private String sophonTaskId; private Integer effectiveStatus; private Long endTime; private Integer currentPage; private String playbookUuid; private String entityType; private String incidentUuid; public ListDisposeStrategyRequest() { super("cloud-siem", "2022-06-16", "ListDisposeStrategy", "cloud-siem"); setMethod(MethodType.POST); } public String getEntityIdentity() { return this.entityIdentity; } public void setEntityIdentity(String entityIdentity) { this.entityIdentity = entityIdentity; if(entityIdentity != null){ putBodyParameter("EntityIdentity", entityIdentity); } } public String getPlaybookName() { return this.playbookName; } public void setPlaybookName(String playbookName) { this.playbookName = playbookName; if(playbookName != null){ putBodyParameter("PlaybookName", playbookName); } } public String getPlaybookTypes() { return this.playbookTypes; } public void setPlaybookTypes(String playbookTypes) { this.playbookTypes = playbookTypes; if(playbookTypes != null){ putBodyParameter("PlaybookTypes", playbookTypes); } } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putBodyParameter("StartTime", startTime.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public String getOrderField() { return this.orderField; } public void setOrderField(String orderField) { this.orderField = orderField; if(orderField != null){ putBodyParameter("OrderField", orderField); } } public String getOrder() { return this.order; } public void setOrder(String order) { this.order = order; if(order != null){ putBodyParameter("Order", order); } } public String getSophonTaskId() { return this.sophonTaskId; } public void setSophonTaskId(String sophonTaskId) { this.sophonTaskId = sophonTaskId; if(sophonTaskId != null){ putBodyParameter("SophonTaskId", sophonTaskId); } } public Integer getEffectiveStatus() { return this.effectiveStatus; } public void setEffectiveStatus(Integer effectiveStatus) { this.effectiveStatus = effectiveStatus; if(effectiveStatus != null){ putBodyParameter("EffectiveStatus", effectiveStatus.toString()); } } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putBodyParameter("EndTime", endTime.toString()); } } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putBodyParameter("CurrentPage", currentPage.toString()); } } public String getPlaybookUuid() { return this.playbookUuid; } public void setPlaybookUuid(String playbookUuid) { this.playbookUuid = playbookUuid; if(playbookUuid != null){ putBodyParameter("PlaybookUuid", playbookUuid); } } public String getEntityType() { return this.entityType; } public void setEntityType(String entityType) { this.entityType = entityType; if(entityType != null){ putBodyParameter("EntityType", entityType); } } public String getIncidentUuid() { return this.incidentUuid; } public void setIncidentUuid(String incidentUuid) { this.incidentUuid = incidentUuid; if(incidentUuid != null){ putBodyParameter("IncidentUuid", incidentUuid); } } @Override public Class<ListDisposeStrategyResponse> getResponseClass() { return ListDisposeStrategyResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListDisposeStrategyResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.ListDisposeStrategyResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListDisposeStrategyResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<ResponseDataItem> responseData; private PageInfo pageInfo; public List<ResponseDataItem> getResponseData() { return this.responseData; } public void setResponseData(List<ResponseDataItem> responseData) { this.responseData = responseData; } public PageInfo getPageInfo() { return this.pageInfo; } public void setPageInfo(PageInfo pageInfo) { this.pageInfo = pageInfo; } public static class ResponseDataItem { private Long id; private String gmtCreate; private String gmtModified; private Long aliuid; private Long subAliuid; private String incidentName; private String incidentUuid; private String alertUuid; private String sophonTaskId; private String playbookName; private String playbookUuid; private String playbookType; private String taskUrl; private Long entityId; private String entityType; private String taskParam; private String errorMessage; private String finishTime; private Integer effectiveStatus; private Integer status; private List<String> scope; private List<String> entity; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } public Long getAliuid() { return this.aliuid; } public void setAliuid(Long aliuid) { this.aliuid = aliuid; } public Long getSubAliuid() { return this.subAliuid; } public void setSubAliuid(Long subAliuid) { this.subAliuid = subAliuid; } public String getIncidentName() { return this.incidentName; } public void setIncidentName(String incidentName) { this.incidentName = incidentName; } public String getIncidentUuid() { return this.incidentUuid; } public void setIncidentUuid(String incidentUuid) { this.incidentUuid = incidentUuid; } public String getAlertUuid() { return this.alertUuid; } public void setAlertUuid(String alertUuid) { this.alertUuid = alertUuid; } public String getSophonTaskId() { return this.sophonTaskId; } public void setSophonTaskId(String sophonTaskId) { this.sophonTaskId = sophonTaskId; } public String getPlaybookName() { return this.playbookName; } public void setPlaybookName(String playbookName) { this.playbookName = playbookName; } public String getPlaybookUuid() { return this.playbookUuid; } public void setPlaybookUuid(String playbookUuid) { this.playbookUuid = playbookUuid; } public String getPlaybookType() { return this.playbookType; } public void setPlaybookType(String playbookType) { this.playbookType = playbookType; } public String getTaskUrl() { return this.taskUrl; } public void setTaskUrl(String taskUrl) { this.taskUrl = taskUrl; } public Long getEntityId() { return this.entityId; } public void setEntityId(Long entityId) { this.entityId = entityId; } public String getEntityType() { return this.entityType; } public void setEntityType(String entityType) { this.entityType = entityType; } public String getTaskParam() { return this.taskParam; } public void setTaskParam(String taskParam) { this.taskParam = taskParam; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public String getFinishTime() { return this.finishTime; } public void setFinishTime(String finishTime) { this.finishTime = finishTime; } public Integer getEffectiveStatus() { return this.effectiveStatus; } public void setEffectiveStatus(Integer effectiveStatus) { this.effectiveStatus = effectiveStatus; } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public List<String> getScope() { return this.scope; } public void setScope(List<String> scope) { this.scope = scope; } public List<String> getEntity() { return this.entity; } public void setEntity(List<String> entity) { this.entity = entity; } } public static class PageInfo { private Integer currentPage; private Integer pageSize; private Long totalCount; public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } } } @Override public ListDisposeStrategyResponse getInstance(UnmarshallerContext context) { return ListDisposeStrategyResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListEntitiesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListEntitiesRequest extends RpcAcsRequest<ListEntitiesResponse> { private Long roleFor; private String malwareType; private String entityName; private Integer pageSize; private Integer roleType; private Integer currentPage; private String isMalwareEntity; private String entityType; private String entityUuid; private String incidentUuid; public ListEntitiesRequest() { super("cloud-siem", "2022-06-16", "ListEntities", "cloud-siem"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public String getMalwareType() { return this.malwareType; } public void setMalwareType(String malwareType) { this.malwareType = malwareType; if(malwareType != null){ putBodyParameter("MalwareType", malwareType); } } public String getEntityName() { return this.entityName; } public void setEntityName(String entityName) { this.entityName = entityName; if(entityName != null){ putBodyParameter("EntityName", entityName); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putBodyParameter("CurrentPage", currentPage.toString()); } } public String getIsMalwareEntity() { return this.isMalwareEntity; } public void setIsMalwareEntity(String isMalwareEntity) { this.isMalwareEntity = isMalwareEntity; if(isMalwareEntity != null){ putBodyParameter("IsMalwareEntity", isMalwareEntity); } } public String getEntityType() { return this.entityType; } public void setEntityType(String entityType) { this.entityType = entityType; if(entityType != null){ putBodyParameter("EntityType", entityType); } } public String getEntityUuid() { return this.entityUuid; } public void setEntityUuid(String entityUuid) { this.entityUuid = entityUuid; if(entityUuid != null){ putBodyParameter("EntityUuid", entityUuid); } } public String getIncidentUuid() { return this.incidentUuid; } public void setIncidentUuid(String incidentUuid) { this.incidentUuid = incidentUuid; if(incidentUuid != null){ putBodyParameter("IncidentUuid", incidentUuid); } } @Override public Class<ListEntitiesResponse> getResponseClass() { return ListEntitiesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListEntitiesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.ListEntitiesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListEntitiesResponse extends AcsResponse { private Boolean success; private Integer code; private String message; private String requestId; private Data data; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private List<ResponseDataItem> responseData; private PageInfo pageInfo; public List<ResponseDataItem> getResponseData() { return this.responseData; } public void setResponseData(List<ResponseDataItem> responseData) { this.responseData = responseData; } public PageInfo getPageInfo() { return this.pageInfo; } public void setPageInfo(PageInfo pageInfo) { this.pageInfo = pageInfo; } public static class ResponseDataItem { private Long id; private String gmtCreate; private String gmtModified; private Long aliuid; private String incidentUuid; private String alertUuid; private Integer alertNum; private Integer eventNum; private String cloudCode; private String entityType; private String entityName; private String entityInfo; private Long subUserId; private String entityId; private String entityUuid; private String malwareType; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; } public String getGmtModified() { return this.gmtModified; } public void setGmtModified(String gmtModified) { this.gmtModified = gmtModified; } public Long getAliuid() { return this.aliuid; } public void setAliuid(Long aliuid) { this.aliuid = aliuid; } public String getIncidentUuid() { return this.incidentUuid; } public void setIncidentUuid(String incidentUuid) { this.incidentUuid = incidentUuid; } public String getAlertUuid() { return this.alertUuid; } public void setAlertUuid(String alertUuid) { this.alertUuid = alertUuid; } public Integer getAlertNum() { return this.alertNum; } public void setAlertNum(Integer alertNum) { this.alertNum = alertNum; } public Integer getEventNum() { return this.eventNum; } public void setEventNum(Integer eventNum) { this.eventNum = eventNum; } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; } public String getEntityType() { return this.entityType; } public void setEntityType(String entityType) { this.entityType = entityType; } public String getEntityName() { return this.entityName; } public void setEntityName(String entityName) { this.entityName = entityName; } public String getEntityInfo() { return this.entityInfo; } public void setEntityInfo(String entityInfo) { this.entityInfo = entityInfo; } public Long getSubUserId() { return this.subUserId; } public void setSubUserId(Long subUserId) { this.subUserId = subUserId; } public String getEntityId() { return this.entityId; } public void setEntityId(String entityId) { this.entityId = entityId; } public String getEntityUuid() { return this.entityUuid; } public void setEntityUuid(String entityUuid) { this.entityUuid = entityUuid; } public String getMalwareType() { return this.malwareType; } public void setMalwareType(String malwareType) { this.malwareType = malwareType; } } public static class PageInfo { private Integer currentPage; private Integer pageSize; private Long totalCount; public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } } } @Override public ListEntitiesResponse getInstance(UnmarshallerContext context) { return ListEntitiesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListImportedLogsByProdRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListImportedLogsByProdRequest extends RpcAcsRequest<ListImportedLogsByProdResponse> { private String cloudCode; private Long roleFor; private Integer roleType; private String prodCode; public ListImportedLogsByProdRequest() { super("cloud-siem", "2022-06-16", "ListImportedLogsByProd", "cloud-siem"); setMethod(MethodType.POST); } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; if(cloudCode != null){ putBodyParameter("CloudCode", cloudCode); } } public Long getRoleFor() { return this.roleFor; } public void setRoleFor(Long roleFor) { this.roleFor = roleFor; if(roleFor != null){ putBodyParameter("RoleFor", roleFor.toString()); } } public Integer getRoleType() { return this.roleType; } public void setRoleType(Integer roleType) { this.roleType = roleType; if(roleType != null){ putBodyParameter("RoleType", roleType.toString()); } } public String getProdCode() { return this.prodCode; } public void setProdCode(String prodCode) { this.prodCode = prodCode; if(prodCode != null){ putBodyParameter("ProdCode", prodCode); } } @Override public Class<ListImportedLogsByProdResponse> getResponseClass() { return ListImportedLogsByProdResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListImportedLogsByProdResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.ListImportedLogsByProdResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListImportedLogsByProdResponse extends AcsResponse { private String requestId; private List<DataItem> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String prodCode; private String logCode; private String logMdsCode; private Integer importedUserCount; private Integer unImportedUserCount; private Integer totalUserCount; private String modifyTime; private Integer imported; private Integer autoImported; private Integer logType; private String cloudCode; public String getProdCode() { return this.prodCode; } public void setProdCode(String prodCode) { this.prodCode = prodCode; } public String getLogCode() { return this.logCode; } public void setLogCode(String logCode) { this.logCode = logCode; } public String getLogMdsCode() { return this.logMdsCode; } public void setLogMdsCode(String logMdsCode) { this.logMdsCode = logMdsCode; } public Integer getImportedUserCount() { return this.importedUserCount; } public void setImportedUserCount(Integer importedUserCount) { this.importedUserCount = importedUserCount; } public Integer getUnImportedUserCount() { return this.unImportedUserCount; } public void setUnImportedUserCount(Integer unImportedUserCount) { this.unImportedUserCount = unImportedUserCount; } public Integer getTotalUserCount() { return this.totalUserCount; } public void setTotalUserCount(Integer totalUserCount) { this.totalUserCount = totalUserCount; } public String getModifyTime() { return this.modifyTime; } public void setModifyTime(String modifyTime) { this.modifyTime = modifyTime; } public Integer getImported() { return this.imported; } public void setImported(Integer imported) { this.imported = imported; } public Integer getAutoImported() { return this.autoImported; } public void setAutoImported(Integer autoImported) { this.autoImported = autoImported; } public Integer getLogType() { return this.logType; } public void setLogType(Integer logType) { this.logType = logType; } public String getCloudCode() { return this.cloudCode; } public void setCloudCode(String cloudCode) { this.cloudCode = cloudCode; } } @Override public ListImportedLogsByProdResponse getInstance(UnmarshallerContext context) { return ListImportedLogsByProdResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListProjectLogStoresRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListProjectLogStoresRequest extends RpcAcsRequest<ListProjectLogStoresResponse> { private Long subUserId; private String sourceProdCode; private String sourceLogCode; public ListProjectLogStoresRequest() { super("cloud-siem", "2022-06-16", "ListProjectLogStores", "cloud-siem"); setMethod(MethodType.POST); } public Long getSubUserId() { return this.subUserId; } public void setSubUserId(Long subUserId) { this.subUserId = subUserId; if(subUserId != null){ putBodyParameter("SubUserId", subUserId.toString()); } } public String getSourceProdCode() { return this.sourceProdCode; } public void setSourceProdCode(String sourceProdCode) { this.sourceProdCode = sourceProdCode; if(sourceProdCode != null){ putBodyParameter("SourceProdCode", sourceProdCode); } } public String getSourceLogCode() { return this.sourceLogCode; } public void setSourceLogCode(String sourceLogCode) { this.sourceLogCode = sourceLogCode; if(sourceLogCode != null){ putBodyParameter("SourceLogCode", sourceLogCode); } } @Override public Class<ListProjectLogStoresResponse> getResponseClass() { return ListProjectLogStoresResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListProjectLogStoresResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.ListProjectLogStoresResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListProjectLogStoresResponse extends AcsResponse { private String requestId; private List<DataItem> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String project; private String logStore; private String endPoint; private String regionId; private String localName; private Long mainUserId; private Long subUserId; private String subUserName; 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; } public String getEndPoint() { return this.endPoint; } public void setEndPoint(String endPoint) { this.endPoint = endPoint; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getLocalName() { return this.localName; } public void setLocalName(String localName) { this.localName = localName; } public Long getMainUserId() { return this.mainUserId; } public void setMainUserId(Long mainUserId) { this.mainUserId = mainUserId; } public Long getSubUserId() { return this.subUserId; } public void setSubUserId(Long subUserId) { this.subUserId = subUserId; } public String getSubUserName() { return this.subUserName; } public void setSubUserName(String subUserName) { this.subUserName = subUserName; } } @Override public ListProjectLogStoresResponse getInstance(UnmarshallerContext context) { return ListProjectLogStoresResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListRdUsersRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListRdUsersRequest extends RpcAcsRequest<ListRdUsersResponse> { public ListRdUsersRequest() { super("cloud-siem", "2022-06-16", "ListRdUsers", "cloud-siem"); setMethod(MethodType.POST); } @Override public Class<ListRdUsersResponse> getResponseClass() { return ListRdUsersResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model
java-sources/com/aliyun/aliyun-java-sdk-cloud-siem/1.0.8/com/aliyuncs/cloud_siem/model/v20220616/ListRdUsersResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloud_siem.model.v20220616; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloud_siem.transform.v20220616.ListRdUsersResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListRdUsersResponse extends AcsResponse { private String requestId; private List<DataItem> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private Boolean joined; private String joinedTime; private Boolean delegatedOrNot; private Long mainUserId; private Long subUserId; private String subUserName; public Boolean getJoined() { return this.joined; } public void setJoined(Boolean joined) { this.joined = joined; } public String getJoinedTime() { return this.joinedTime; } public void setJoinedTime(String joinedTime) { this.joinedTime = joinedTime; } public Boolean getDelegatedOrNot() { return this.delegatedOrNot; } public void setDelegatedOrNot(Boolean delegatedOrNot) { this.delegatedOrNot = delegatedOrNot; } public Long getMainUserId() { return this.mainUserId; } public void setMainUserId(Long mainUserId) { this.mainUserId = mainUserId; } public Long getSubUserId() { return this.subUserId; } public void setSubUserId(Long subUserId) { this.subUserId = subUserId; } public String getSubUserName() { return this.subUserName; } public void setSubUserName(String subUserName) { this.subUserName = subUserName; } } @Override public ListRdUsersResponse getInstance(UnmarshallerContext context) { return ListRdUsersResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }