index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/DeleteAggregateConfigRulesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.DeleteAggregateConfigRulesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteAggregateConfigRulesResponse extends AcsResponse { private String requestId; private OperateRuleResult operateRuleResult; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public OperateRuleResult getOperateRuleResult() { return this.operateRuleResult; } public void setOperateRuleResult(OperateRuleResult operateRuleResult) { this.operateRuleResult = operateRuleResult; } public static class OperateRuleResult { private List<OperateRuleItem> operateRuleItemList; public List<OperateRuleItem> getOperateRuleItemList() { return this.operateRuleItemList; } public void setOperateRuleItemList(List<OperateRuleItem> operateRuleItemList) { this.operateRuleItemList = operateRuleItemList; } public static class OperateRuleItem { private String errorCode; private Boolean success; private String configRuleId; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getConfigRuleId() { return this.configRuleId; } public void setConfigRuleId(String configRuleId) { this.configRuleId = configRuleId; } } } @Override public DeleteAggregateConfigRulesResponse getInstance(UnmarshallerContext context) { return DeleteAggregateConfigRulesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/DeleteAggregateRemediationsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class DeleteAggregateRemediationsRequest extends RpcAcsRequest<DeleteAggregateRemediationsResponse> { private String remediationIds; private String aggregatorId; public DeleteAggregateRemediationsRequest() { super("Config", "2020-09-07", "DeleteAggregateRemediations", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getRemediationIds() { return this.remediationIds; } public void setRemediationIds(String remediationIds) { this.remediationIds = remediationIds; if(remediationIds != null){ putBodyParameter("RemediationIds", remediationIds); } } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putBodyParameter("AggregatorId", aggregatorId); } } @Override public Class<DeleteAggregateRemediationsResponse> getResponseClass() { return DeleteAggregateRemediationsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/DeleteAggregateRemediationsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.DeleteAggregateRemediationsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteAggregateRemediationsResponse extends AcsResponse { private String requestId; private List<RemediationDeleteResult> remediationDeleteResults; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<RemediationDeleteResult> getRemediationDeleteResults() { return this.remediationDeleteResults; } public void setRemediationDeleteResults(List<RemediationDeleteResult> remediationDeleteResults) { this.remediationDeleteResults = remediationDeleteResults; } public static class RemediationDeleteResult { private String remediationId; private String errorMessage; private Boolean success; public String getRemediationId() { return this.remediationId; } public void setRemediationId(String remediationId) { this.remediationId = remediationId; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } } @Override public DeleteAggregateRemediationsResponse getInstance(UnmarshallerContext context) { return DeleteAggregateRemediationsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/DeleteAggregatorsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class DeleteAggregatorsRequest extends RpcAcsRequest<DeleteAggregatorsResponse> { private String clientToken; private String aggregatorIds; public DeleteAggregatorsRequest() { super("Config", "2020-09-07", "DeleteAggregators", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getClientToken() { return this.clientToken; } public void setClientToken(String clientToken) { this.clientToken = clientToken; if(clientToken != null){ putBodyParameter("ClientToken", clientToken); } } public String getAggregatorIds() { return this.aggregatorIds; } public void setAggregatorIds(String aggregatorIds) { this.aggregatorIds = aggregatorIds; if(aggregatorIds != null){ putBodyParameter("AggregatorIds", aggregatorIds); } } @Override public Class<DeleteAggregatorsResponse> getResponseClass() { return DeleteAggregatorsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/DeleteAggregatorsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.DeleteAggregatorsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteAggregatorsResponse extends AcsResponse { private String requestId; private OperateAggregatorsResult operateAggregatorsResult; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public OperateAggregatorsResult getOperateAggregatorsResult() { return this.operateAggregatorsResult; } public void setOperateAggregatorsResult(OperateAggregatorsResult operateAggregatorsResult) { this.operateAggregatorsResult = operateAggregatorsResult; } public static class OperateAggregatorsResult { private List<OperateAggregatorList> operateAggregators; public List<OperateAggregatorList> getOperateAggregators() { return this.operateAggregators; } public void setOperateAggregators(List<OperateAggregatorList> operateAggregators) { this.operateAggregators = operateAggregators; } public static class OperateAggregatorList { private String errorCode; private Boolean success; private String aggregatorId; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; } } } @Override public DeleteAggregatorsResponse getInstance(UnmarshallerContext context) { return DeleteAggregatorsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/DeleteCompliancePacksRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class DeleteCompliancePacksRequest extends RpcAcsRequest<DeleteCompliancePacksResponse> { private String clientToken; private String compliancePackIds; private Boolean deleteRule; public DeleteCompliancePacksRequest() { super("Config", "2020-09-07", "DeleteCompliancePacks", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getClientToken() { return this.clientToken; } public void setClientToken(String clientToken) { this.clientToken = clientToken; if(clientToken != null){ putBodyParameter("ClientToken", clientToken); } } public String getCompliancePackIds() { return this.compliancePackIds; } public void setCompliancePackIds(String compliancePackIds) { this.compliancePackIds = compliancePackIds; if(compliancePackIds != null){ putBodyParameter("CompliancePackIds", compliancePackIds); } } public Boolean getDeleteRule() { return this.deleteRule; } public void setDeleteRule(Boolean deleteRule) { this.deleteRule = deleteRule; if(deleteRule != null){ putBodyParameter("DeleteRule", deleteRule.toString()); } } @Override public Class<DeleteCompliancePacksResponse> getResponseClass() { return DeleteCompliancePacksResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/DeleteCompliancePacksResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.DeleteCompliancePacksResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteCompliancePacksResponse extends AcsResponse { private String requestId; private OperateCompliancePacksResult operateCompliancePacksResult; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public OperateCompliancePacksResult getOperateCompliancePacksResult() { return this.operateCompliancePacksResult; } public void setOperateCompliancePacksResult(OperateCompliancePacksResult operateCompliancePacksResult) { this.operateCompliancePacksResult = operateCompliancePacksResult; } public static class OperateCompliancePacksResult { private List<OperateCompliancePacksItem> operateCompliancePacks; public List<OperateCompliancePacksItem> getOperateCompliancePacks() { return this.operateCompliancePacks; } public void setOperateCompliancePacks(List<OperateCompliancePacksItem> operateCompliancePacks) { this.operateCompliancePacks = operateCompliancePacks; } public static class OperateCompliancePacksItem { private String compliancePackId; private String errorCode; private Boolean success; public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; } public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } } } @Override public DeleteCompliancePacksResponse getInstance(UnmarshallerContext context) { return DeleteCompliancePacksResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/DeleteConfigDeliveryChannelRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class DeleteConfigDeliveryChannelRequest extends RpcAcsRequest<DeleteConfigDeliveryChannelResponse> { private String deliveryChannelId; public DeleteConfigDeliveryChannelRequest() { super("Config", "2020-09-07", "DeleteConfigDeliveryChannel", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getDeliveryChannelId() { return this.deliveryChannelId; } public void setDeliveryChannelId(String deliveryChannelId) { this.deliveryChannelId = deliveryChannelId; if(deliveryChannelId != null){ putQueryParameter("DeliveryChannelId", deliveryChannelId); } } @Override public Class<DeleteConfigDeliveryChannelResponse> getResponseClass() { return DeleteConfigDeliveryChannelResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/DeleteConfigDeliveryChannelResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.DeleteConfigDeliveryChannelResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteConfigDeliveryChannelResponse extends AcsResponse { private String requestId; private String deliveryChannelId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getDeliveryChannelId() { return this.deliveryChannelId; } public void setDeliveryChannelId(String deliveryChannelId) { this.deliveryChannelId = deliveryChannelId; } @Override public DeleteConfigDeliveryChannelResponse getInstance(UnmarshallerContext context) { return DeleteConfigDeliveryChannelResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/DeleteConfigRulesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class DeleteConfigRulesRequest extends RpcAcsRequest<DeleteConfigRulesResponse> { private String configRuleIds; public DeleteConfigRulesRequest() { super("Config", "2020-09-07", "DeleteConfigRules", "config"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getConfigRuleIds() { return this.configRuleIds; } public void setConfigRuleIds(String configRuleIds) { this.configRuleIds = configRuleIds; if(configRuleIds != null){ putQueryParameter("ConfigRuleIds", configRuleIds); } } @Override public Class<DeleteConfigRulesResponse> getResponseClass() { return DeleteConfigRulesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/DeleteConfigRulesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.DeleteConfigRulesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteConfigRulesResponse extends AcsResponse { private String requestId; private OperateRuleResult operateRuleResult; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public OperateRuleResult getOperateRuleResult() { return this.operateRuleResult; } public void setOperateRuleResult(OperateRuleResult operateRuleResult) { this.operateRuleResult = operateRuleResult; } public static class OperateRuleResult { private List<OperateRuleItem> operateRuleItemList; public List<OperateRuleItem> getOperateRuleItemList() { return this.operateRuleItemList; } public void setOperateRuleItemList(List<OperateRuleItem> operateRuleItemList) { this.operateRuleItemList = operateRuleItemList; } public static class OperateRuleItem { private String errorCode; private Boolean success; private String configRuleId; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getConfigRuleId() { return this.configRuleId; } public void setConfigRuleId(String configRuleId) { this.configRuleId = configRuleId; } } } @Override public DeleteConfigRulesResponse getInstance(UnmarshallerContext context) { return DeleteConfigRulesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/DeleteRemediationsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class DeleteRemediationsRequest extends RpcAcsRequest<DeleteRemediationsResponse> { private String remediationIds; public DeleteRemediationsRequest() { super("Config", "2020-09-07", "DeleteRemediations", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getRemediationIds() { return this.remediationIds; } public void setRemediationIds(String remediationIds) { this.remediationIds = remediationIds; if(remediationIds != null){ putBodyParameter("RemediationIds", remediationIds); } } @Override public Class<DeleteRemediationsResponse> getResponseClass() { return DeleteRemediationsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/DeleteRemediationsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.DeleteRemediationsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteRemediationsResponse extends AcsResponse { private String requestId; private List<RemediationDeleteResult> remediationDeleteResults; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<RemediationDeleteResult> getRemediationDeleteResults() { return this.remediationDeleteResults; } public void setRemediationDeleteResults(List<RemediationDeleteResult> remediationDeleteResults) { this.remediationDeleteResults = remediationDeleteResults; } public static class RemediationDeleteResult { private String remediationId; private String errorMessage; private Boolean success; public String getRemediationId() { return this.remediationId; } public void setRemediationId(String remediationId) { this.remediationId = remediationId; } public String getErrorMessage() { return this.errorMessage; } public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } } @Override public DeleteRemediationsResponse getInstance(UnmarshallerContext context) { return DeleteRemediationsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/DescribeRemediationRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class DescribeRemediationRequest extends RpcAcsRequest<DescribeRemediationResponse> { private String configRuleId; private String remediationId; public DescribeRemediationRequest() { super("Config", "2020-09-07", "DescribeRemediation", "config"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getConfigRuleId() { return this.configRuleId; } public void setConfigRuleId(String configRuleId) { this.configRuleId = configRuleId; if(configRuleId != null){ putQueryParameter("ConfigRuleId", configRuleId); } } public String getRemediationId() { return this.remediationId; } public void setRemediationId(String remediationId) { this.remediationId = remediationId; if(remediationId != null){ putQueryParameter("RemediationId", remediationId); } } @Override public Class<DescribeRemediationResponse> getResponseClass() { return DescribeRemediationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/DescribeRemediationResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.DescribeRemediationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeRemediationResponse extends AcsResponse { private String requestId; private Remediation remediation; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Remediation getRemediation() { return this.remediation; } public void setRemediation(Remediation remediation) { this.remediation = remediation; } public static class Remediation { private String lastSuccessfulInvocationType; private String remediationTemplateId; private String remediationDynamicParams; private String remediationOriginParams; private String remediationId; private String remediationSourceType; private String remediationType; private String lastSuccessfulInvocationId; private Long accountId; private String invokeType; private String configRuleId; private Long lastSuccessfulInvocationTime; public String getLastSuccessfulInvocationType() { return this.lastSuccessfulInvocationType; } public void setLastSuccessfulInvocationType(String lastSuccessfulInvocationType) { this.lastSuccessfulInvocationType = lastSuccessfulInvocationType; } public String getRemediationTemplateId() { return this.remediationTemplateId; } public void setRemediationTemplateId(String remediationTemplateId) { this.remediationTemplateId = remediationTemplateId; } public String getRemediationDynamicParams() { return this.remediationDynamicParams; } public void setRemediationDynamicParams(String remediationDynamicParams) { this.remediationDynamicParams = remediationDynamicParams; } public String getRemediationOriginParams() { return this.remediationOriginParams; } public void setRemediationOriginParams(String remediationOriginParams) { this.remediationOriginParams = remediationOriginParams; } public String getRemediationId() { return this.remediationId; } public void setRemediationId(String remediationId) { this.remediationId = remediationId; } public String getRemediationSourceType() { return this.remediationSourceType; } public void setRemediationSourceType(String remediationSourceType) { this.remediationSourceType = remediationSourceType; } public String getRemediationType() { return this.remediationType; } public void setRemediationType(String remediationType) { this.remediationType = remediationType; } public String getLastSuccessfulInvocationId() { return this.lastSuccessfulInvocationId; } public void setLastSuccessfulInvocationId(String lastSuccessfulInvocationId) { this.lastSuccessfulInvocationId = lastSuccessfulInvocationId; } public Long getAccountId() { return this.accountId; } public void setAccountId(Long accountId) { this.accountId = accountId; } public String getInvokeType() { return this.invokeType; } public void setInvokeType(String invokeType) { this.invokeType = invokeType; } public String getConfigRuleId() { return this.configRuleId; } public void setConfigRuleId(String configRuleId) { this.configRuleId = configRuleId; } public Long getLastSuccessfulInvocationTime() { return this.lastSuccessfulInvocationTime; } public void setLastSuccessfulInvocationTime(Long lastSuccessfulInvocationTime) { this.lastSuccessfulInvocationTime = lastSuccessfulInvocationTime; } } @Override public DescribeRemediationResponse getInstance(UnmarshallerContext context) { return DescribeRemediationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/DetachAggregateConfigRuleToCompliancePackRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class DetachAggregateConfigRuleToCompliancePackRequest extends RpcAcsRequest<DetachAggregateConfigRuleToCompliancePackResponse> { private String configRuleIds; private String aggregatorId; private String compliancePackId; public DetachAggregateConfigRuleToCompliancePackRequest() { super("Config", "2020-09-07", "DetachAggregateConfigRuleToCompliancePack", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getConfigRuleIds() { return this.configRuleIds; } public void setConfigRuleIds(String configRuleIds) { this.configRuleIds = configRuleIds; if(configRuleIds != null){ putQueryParameter("ConfigRuleIds", configRuleIds); } } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; if(compliancePackId != null){ putQueryParameter("CompliancePackId", compliancePackId); } } @Override public Class<DetachAggregateConfigRuleToCompliancePackResponse> getResponseClass() { return DetachAggregateConfigRuleToCompliancePackResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/DetachAggregateConfigRuleToCompliancePackResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.DetachAggregateConfigRuleToCompliancePackResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DetachAggregateConfigRuleToCompliancePackResponse extends AcsResponse { private String requestId; private OperateRuleResult operateRuleResult; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public OperateRuleResult getOperateRuleResult() { return this.operateRuleResult; } public void setOperateRuleResult(OperateRuleResult operateRuleResult) { this.operateRuleResult = operateRuleResult; } public static class OperateRuleResult { private List<OperateRuleItem> operateRuleItemList; public List<OperateRuleItem> getOperateRuleItemList() { return this.operateRuleItemList; } public void setOperateRuleItemList(List<OperateRuleItem> operateRuleItemList) { this.operateRuleItemList = operateRuleItemList; } public static class OperateRuleItem { private String errorCode; private Boolean success; private String configRuleId; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getConfigRuleId() { return this.configRuleId; } public void setConfigRuleId(String configRuleId) { this.configRuleId = configRuleId; } } } @Override public DetachAggregateConfigRuleToCompliancePackResponse getInstance(UnmarshallerContext context) { return DetachAggregateConfigRuleToCompliancePackResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/DetachConfigRuleToCompliancePackRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class DetachConfigRuleToCompliancePackRequest extends RpcAcsRequest<DetachConfigRuleToCompliancePackResponse> { private String configRuleIds; private String compliancePackId; public DetachConfigRuleToCompliancePackRequest() { super("Config", "2020-09-07", "DetachConfigRuleToCompliancePack", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getConfigRuleIds() { return this.configRuleIds; } public void setConfigRuleIds(String configRuleIds) { this.configRuleIds = configRuleIds; if(configRuleIds != null){ putQueryParameter("ConfigRuleIds", configRuleIds); } } public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; if(compliancePackId != null){ putQueryParameter("CompliancePackId", compliancePackId); } } @Override public Class<DetachConfigRuleToCompliancePackResponse> getResponseClass() { return DetachConfigRuleToCompliancePackResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/DetachConfigRuleToCompliancePackResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.DetachConfigRuleToCompliancePackResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DetachConfigRuleToCompliancePackResponse extends AcsResponse { private String requestId; private OperateRuleResult operateRuleResult; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public OperateRuleResult getOperateRuleResult() { return this.operateRuleResult; } public void setOperateRuleResult(OperateRuleResult operateRuleResult) { this.operateRuleResult = operateRuleResult; } public static class OperateRuleResult { private List<OperateRuleItem> operateRuleItemList; public List<OperateRuleItem> getOperateRuleItemList() { return this.operateRuleItemList; } public void setOperateRuleItemList(List<OperateRuleItem> operateRuleItemList) { this.operateRuleItemList = operateRuleItemList; } public static class OperateRuleItem { private String errorCode; private Boolean success; private String configRuleId; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getConfigRuleId() { return this.configRuleId; } public void setConfigRuleId(String configRuleId) { this.configRuleId = configRuleId; } } } @Override public DetachConfigRuleToCompliancePackResponse getInstance(UnmarshallerContext context) { return DetachConfigRuleToCompliancePackResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/EvaluatePreConfigRulesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class EvaluatePreConfigRulesRequest extends RpcAcsRequest<EvaluatePreConfigRulesResponse> { private Boolean enableManagedRules; private String resourceEvaluateItems; private String resourceTypeFormat; public EvaluatePreConfigRulesRequest() { super("Config", "2020-09-07", "EvaluatePreConfigRules", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Boolean getEnableManagedRules() { return this.enableManagedRules; } public void setEnableManagedRules(Boolean enableManagedRules) { this.enableManagedRules = enableManagedRules; if(enableManagedRules != null){ putBodyParameter("EnableManagedRules", enableManagedRules.toString()); } } public String getResourceEvaluateItems() { return this.resourceEvaluateItems; } public void setResourceEvaluateItems(String resourceEvaluateItems) { this.resourceEvaluateItems = resourceEvaluateItems; if(resourceEvaluateItems != null){ putBodyParameter("ResourceEvaluateItems", resourceEvaluateItems); } } public String getResourceTypeFormat() { return this.resourceTypeFormat; } public void setResourceTypeFormat(String resourceTypeFormat) { this.resourceTypeFormat = resourceTypeFormat; if(resourceTypeFormat != null){ putBodyParameter("ResourceTypeFormat", resourceTypeFormat); } } @Override public Class<EvaluatePreConfigRulesResponse> getResponseClass() { return EvaluatePreConfigRulesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/EvaluatePreConfigRulesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.EvaluatePreConfigRulesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class EvaluatePreConfigRulesResponse extends AcsResponse { private String requestId; private List<ResourceEvaluation> resourceEvaluations; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<ResourceEvaluation> getResourceEvaluations() { return this.resourceEvaluations; } public void setResourceEvaluations(List<ResourceEvaluation> resourceEvaluations) { this.resourceEvaluations = resourceEvaluations; } public static class ResourceEvaluation { private String resourceLogicalId; private String resourceType; private List<Rule> rules; public String getResourceLogicalId() { return this.resourceLogicalId; } public void setResourceLogicalId(String resourceLogicalId) { this.resourceLogicalId = resourceLogicalId; } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; } public List<Rule> getRules() { return this.rules; } public void setRules(List<Rule> rules) { this.rules = rules; } public static class Rule { private String identifier; private String complianceType; private String annotation; private String helpUrl; public String getIdentifier() { return this.identifier; } public void setIdentifier(String identifier) { this.identifier = identifier; } public String getComplianceType() { return this.complianceType; } public void setComplianceType(String complianceType) { this.complianceType = complianceType; } public String getAnnotation() { return this.annotation; } public void setAnnotation(String annotation) { this.annotation = annotation; } public String getHelpUrl() { return this.helpUrl; } public void setHelpUrl(String helpUrl) { this.helpUrl = helpUrl; } } } @Override public EvaluatePreConfigRulesResponse getInstance(UnmarshallerContext context) { return EvaluatePreConfigRulesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GenerateAggregateCompliancePackReportRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GenerateAggregateCompliancePackReportRequest extends RpcAcsRequest<GenerateAggregateCompliancePackReportResponse> { private String clientToken; private Boolean multiFiles; private String aggregatorId; private String compliancePackId; public GenerateAggregateCompliancePackReportRequest() { super("Config", "2020-09-07", "GenerateAggregateCompliancePackReport", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getClientToken() { return this.clientToken; } public void setClientToken(String clientToken) { this.clientToken = clientToken; if(clientToken != null){ putBodyParameter("ClientToken", clientToken); } } public Boolean getMultiFiles() { return this.multiFiles; } public void setMultiFiles(Boolean multiFiles) { this.multiFiles = multiFiles; if(multiFiles != null){ putBodyParameter("MultiFiles", multiFiles.toString()); } } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putBodyParameter("AggregatorId", aggregatorId); } } public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; if(compliancePackId != null){ putBodyParameter("CompliancePackId", compliancePackId); } } @Override public Class<GenerateAggregateCompliancePackReportResponse> getResponseClass() { return GenerateAggregateCompliancePackReportResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GenerateAggregateCompliancePackReportResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GenerateAggregateCompliancePackReportResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GenerateAggregateCompliancePackReportResponse extends AcsResponse { private String compliancePackId; private String requestId; public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public GenerateAggregateCompliancePackReportResponse getInstance(UnmarshallerContext context) { return GenerateAggregateCompliancePackReportResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GenerateAggregateConfigRulesReportRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GenerateAggregateConfigRulesReportRequest extends RpcAcsRequest<GenerateAggregateConfigRulesReportResponse> { private String clientToken; private String configRuleIds; private String aggregatorId; public GenerateAggregateConfigRulesReportRequest() { super("Config", "2020-09-07", "GenerateAggregateConfigRulesReport", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getClientToken() { return this.clientToken; } public void setClientToken(String clientToken) { this.clientToken = clientToken; if(clientToken != null){ putBodyParameter("ClientToken", clientToken); } } public String getConfigRuleIds() { return this.configRuleIds; } public void setConfigRuleIds(String configRuleIds) { this.configRuleIds = configRuleIds; if(configRuleIds != null){ putBodyParameter("ConfigRuleIds", configRuleIds); } } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putBodyParameter("AggregatorId", aggregatorId); } } @Override public Class<GenerateAggregateConfigRulesReportResponse> getResponseClass() { return GenerateAggregateConfigRulesReportResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GenerateAggregateConfigRulesReportResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GenerateAggregateConfigRulesReportResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GenerateAggregateConfigRulesReportResponse extends AcsResponse { private String requestId; private String aggregatorId; private String reportId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; } public String getReportId() { return this.reportId; } public void setReportId(String reportId) { this.reportId = reportId; } @Override public GenerateAggregateConfigRulesReportResponse getInstance(UnmarshallerContext context) { return GenerateAggregateConfigRulesReportResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GenerateAggregateResourceInventoryRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GenerateAggregateResourceInventoryRequest extends RpcAcsRequest<GenerateAggregateResourceInventoryResponse> { private Integer resourceDeleted; private String regions; private String resourceTypes; private String aggregatorId; private String accountIds; public GenerateAggregateResourceInventoryRequest() { super("Config", "2020-09-07", "GenerateAggregateResourceInventory", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getResourceDeleted() { return this.resourceDeleted; } public void setResourceDeleted(Integer resourceDeleted) { this.resourceDeleted = resourceDeleted; if(resourceDeleted != null){ putQueryParameter("ResourceDeleted", resourceDeleted.toString()); } } public String getRegions() { return this.regions; } public void setRegions(String regions) { this.regions = regions; if(regions != null){ putQueryParameter("Regions", regions); } } public String getResourceTypes() { return this.resourceTypes; } public void setResourceTypes(String resourceTypes) { this.resourceTypes = resourceTypes; if(resourceTypes != null){ putQueryParameter("ResourceTypes", resourceTypes); } } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } public String getAccountIds() { return this.accountIds; } public void setAccountIds(String accountIds) { this.accountIds = accountIds; if(accountIds != null){ putQueryParameter("AccountIds", accountIds); } } @Override public Class<GenerateAggregateResourceInventoryResponse> getResponseClass() { return GenerateAggregateResourceInventoryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GenerateAggregateResourceInventoryResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GenerateAggregateResourceInventoryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GenerateAggregateResourceInventoryResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public GenerateAggregateResourceInventoryResponse getInstance(UnmarshallerContext context) { return GenerateAggregateResourceInventoryResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GenerateCompliancePackReportRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GenerateCompliancePackReportRequest extends RpcAcsRequest<GenerateCompliancePackReportResponse> { private String clientToken; private String compliancePackId; public GenerateCompliancePackReportRequest() { super("Config", "2020-09-07", "GenerateCompliancePackReport", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getClientToken() { return this.clientToken; } public void setClientToken(String clientToken) { this.clientToken = clientToken; if(clientToken != null){ putBodyParameter("ClientToken", clientToken); } } public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; if(compliancePackId != null){ putBodyParameter("CompliancePackId", compliancePackId); } } @Override public Class<GenerateCompliancePackReportResponse> getResponseClass() { return GenerateCompliancePackReportResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GenerateCompliancePackReportResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GenerateCompliancePackReportResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GenerateCompliancePackReportResponse extends AcsResponse { private String compliancePackId; private String requestId; public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public GenerateCompliancePackReportResponse getInstance(UnmarshallerContext context) { return GenerateCompliancePackReportResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GenerateConfigRulesReportRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GenerateConfigRulesReportRequest extends RpcAcsRequest<GenerateConfigRulesReportResponse> { private String clientToken; private String configRuleIds; public GenerateConfigRulesReportRequest() { super("Config", "2020-09-07", "GenerateConfigRulesReport", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getClientToken() { return this.clientToken; } public void setClientToken(String clientToken) { this.clientToken = clientToken; if(clientToken != null){ putBodyParameter("ClientToken", clientToken); } } public String getConfigRuleIds() { return this.configRuleIds; } public void setConfigRuleIds(String configRuleIds) { this.configRuleIds = configRuleIds; if(configRuleIds != null){ putBodyParameter("ConfigRuleIds", configRuleIds); } } @Override public Class<GenerateConfigRulesReportResponse> getResponseClass() { return GenerateConfigRulesReportResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GenerateConfigRulesReportResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GenerateConfigRulesReportResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GenerateConfigRulesReportResponse extends AcsResponse { private String requestId; private String reportId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getReportId() { return this.reportId; } public void setReportId(String reportId) { this.reportId = reportId; } @Override public GenerateConfigRulesReportResponse getInstance(UnmarshallerContext context) { return GenerateConfigRulesReportResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GenerateResourceInventoryRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GenerateResourceInventoryRequest extends RpcAcsRequest<GenerateResourceInventoryResponse> { private Integer resourceDeleted; private String regions; private String resourceTypes; public GenerateResourceInventoryRequest() { super("Config", "2020-09-07", "GenerateResourceInventory", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getResourceDeleted() { return this.resourceDeleted; } public void setResourceDeleted(Integer resourceDeleted) { this.resourceDeleted = resourceDeleted; if(resourceDeleted != null){ putQueryParameter("ResourceDeleted", resourceDeleted.toString()); } } public String getRegions() { return this.regions; } public void setRegions(String regions) { this.regions = regions; if(regions != null){ putQueryParameter("Regions", regions); } } public String getResourceTypes() { return this.resourceTypes; } public void setResourceTypes(String resourceTypes) { this.resourceTypes = resourceTypes; if(resourceTypes != null){ putQueryParameter("ResourceTypes", resourceTypes); } } @Override public Class<GenerateResourceInventoryResponse> getResponseClass() { return GenerateResourceInventoryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GenerateResourceInventoryResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GenerateResourceInventoryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GenerateResourceInventoryResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public GenerateResourceInventoryResponse getInstance(UnmarshallerContext context) { return GenerateResourceInventoryResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAdvancedSearchFileRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAdvancedSearchFileRequest extends RpcAcsRequest<GetAdvancedSearchFileResponse> { public GetAdvancedSearchFileRequest() { super("Config", "2020-09-07", "GetAdvancedSearchFile", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } @Override public Class<GetAdvancedSearchFileResponse> getResponseClass() { return GetAdvancedSearchFileResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAdvancedSearchFileResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAdvancedSearchFileResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAdvancedSearchFileResponse extends AcsResponse { private String requestId; private ResourceSearch resourceSearch; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ResourceSearch getResourceSearch() { return this.resourceSearch; } public void setResourceSearch(ResourceSearch resourceSearch) { this.resourceSearch = resourceSearch; } public static class ResourceSearch { private String downloadUrl; private String status; private Long accountId; private Long resourceInventoryGenerateTime; public String getDownloadUrl() { return this.downloadUrl; } public void setDownloadUrl(String downloadUrl) { this.downloadUrl = downloadUrl; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public Long getAccountId() { return this.accountId; } public void setAccountId(Long accountId) { this.accountId = accountId; } public Long getResourceInventoryGenerateTime() { return this.resourceInventoryGenerateTime; } public void setResourceInventoryGenerateTime(Long resourceInventoryGenerateTime) { this.resourceInventoryGenerateTime = resourceInventoryGenerateTime; } } @Override public GetAdvancedSearchFileResponse getInstance(UnmarshallerContext context) { return GetAdvancedSearchFileResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateAccountComplianceByPackRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateAccountComplianceByPackRequest extends RpcAcsRequest<GetAggregateAccountComplianceByPackResponse> { private String aggregatorId; private String compliancePackId; public GetAggregateAccountComplianceByPackRequest() { super("Config", "2020-09-07", "GetAggregateAccountComplianceByPack", "config"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; if(compliancePackId != null){ putQueryParameter("CompliancePackId", compliancePackId); } } @Override public Class<GetAggregateAccountComplianceByPackResponse> getResponseClass() { return GetAggregateAccountComplianceByPackResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateAccountComplianceByPackResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateAccountComplianceByPackResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateAccountComplianceByPackResponse extends AcsResponse { private String requestId; private AccountComplianceResult accountComplianceResult; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public AccountComplianceResult getAccountComplianceResult() { return this.accountComplianceResult; } public void setAccountComplianceResult(AccountComplianceResult accountComplianceResult) { this.accountComplianceResult = accountComplianceResult; } public static class AccountComplianceResult { private String compliancePackId; private Integer nonCompliantCount; private Integer totalCount; private List<AccountCompliancesItem> accountCompliances; public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; } public Integer getNonCompliantCount() { return this.nonCompliantCount; } public void setNonCompliantCount(Integer nonCompliantCount) { this.nonCompliantCount = nonCompliantCount; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<AccountCompliancesItem> getAccountCompliances() { return this.accountCompliances; } public void setAccountCompliances(List<AccountCompliancesItem> accountCompliances) { this.accountCompliances = accountCompliances; } public static class AccountCompliancesItem { private String complianceType; private Long accountId; private String accountName; public String getComplianceType() { return this.complianceType; } public void setComplianceType(String complianceType) { this.complianceType = complianceType; } public Long getAccountId() { return this.accountId; } public void setAccountId(Long accountId) { this.accountId = accountId; } public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } } } @Override public GetAggregateAccountComplianceByPackResponse getInstance(UnmarshallerContext context) { return GetAggregateAccountComplianceByPackResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateAdvancedSearchFileRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateAdvancedSearchFileRequest extends RpcAcsRequest<GetAggregateAdvancedSearchFileResponse> { private String aggregatorId; public GetAggregateAdvancedSearchFileRequest() { super("Config", "2020-09-07", "GetAggregateAdvancedSearchFile", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } @Override public Class<GetAggregateAdvancedSearchFileResponse> getResponseClass() { return GetAggregateAdvancedSearchFileResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateAdvancedSearchFileResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateAdvancedSearchFileResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateAdvancedSearchFileResponse extends AcsResponse { private String requestId; private ResourceSearch resourceSearch; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ResourceSearch getResourceSearch() { return this.resourceSearch; } public void setResourceSearch(ResourceSearch resourceSearch) { this.resourceSearch = resourceSearch; } public static class ResourceSearch { private String downloadUrl; private String status; private Long accountId; private Long resourceInventoryGenerateTime; public String getDownloadUrl() { return this.downloadUrl; } public void setDownloadUrl(String downloadUrl) { this.downloadUrl = downloadUrl; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public Long getAccountId() { return this.accountId; } public void setAccountId(Long accountId) { this.accountId = accountId; } public Long getResourceInventoryGenerateTime() { return this.resourceInventoryGenerateTime; } public void setResourceInventoryGenerateTime(Long resourceInventoryGenerateTime) { this.resourceInventoryGenerateTime = resourceInventoryGenerateTime; } } @Override public GetAggregateAdvancedSearchFileResponse getInstance(UnmarshallerContext context) { return GetAggregateAdvancedSearchFileResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateCompliancePackReportRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateCompliancePackReportRequest extends RpcAcsRequest<GetAggregateCompliancePackReportResponse> { private String aggregatorId; private String compliancePackId; public GetAggregateCompliancePackReportRequest() { super("Config", "2020-09-07", "GetAggregateCompliancePackReport", "config"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; if(compliancePackId != null){ putQueryParameter("CompliancePackId", compliancePackId); } } @Override public Class<GetAggregateCompliancePackReportResponse> getResponseClass() { return GetAggregateCompliancePackReportResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateCompliancePackReportResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateCompliancePackReportResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateCompliancePackReportResponse extends AcsResponse { private String requestId; private CompliancePackReport compliancePackReport; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public CompliancePackReport getCompliancePackReport() { return this.compliancePackReport; } public void setCompliancePackReport(CompliancePackReport compliancePackReport) { this.compliancePackReport = compliancePackReport; } public static class CompliancePackReport { private String reportUrl; private String reportStatus; private String compliancePackId; private Long accountId; private Long reportCreateTimestamp; public String getReportUrl() { return this.reportUrl; } public void setReportUrl(String reportUrl) { this.reportUrl = reportUrl; } public String getReportStatus() { return this.reportStatus; } public void setReportStatus(String reportStatus) { this.reportStatus = reportStatus; } public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; } public Long getAccountId() { return this.accountId; } public void setAccountId(Long accountId) { this.accountId = accountId; } public Long getReportCreateTimestamp() { return this.reportCreateTimestamp; } public void setReportCreateTimestamp(Long reportCreateTimestamp) { this.reportCreateTimestamp = reportCreateTimestamp; } } @Override public GetAggregateCompliancePackReportResponse getInstance(UnmarshallerContext context) { return GetAggregateCompliancePackReportResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateCompliancePackRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateCompliancePackRequest extends RpcAcsRequest<GetAggregateCompliancePackResponse> { private String aggregatorId; private String compliancePackId; private String tag; public GetAggregateCompliancePackRequest() { super("Config", "2020-09-07", "GetAggregateCompliancePack", "config"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; if(compliancePackId != null){ putQueryParameter("CompliancePackId", compliancePackId); } } public String getTag() { return this.tag; } public void setTag(String tag) { this.tag = tag; if(tag != null){ putQueryParameter("Tag", tag); } } @Override public Class<GetAggregateCompliancePackResponse> getResponseClass() { return GetAggregateCompliancePackResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateCompliancePackResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateCompliancePackResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateCompliancePackResponse extends AcsResponse { private String requestId; private CompliancePack compliancePack; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public CompliancePack getCompliancePack() { return this.compliancePack; } public void setCompliancePack(CompliancePack compliancePack) { this.compliancePack = compliancePack; } public static class CompliancePack { private String status; private Integer riskLevel; private String compliancePackId; private String description; private String templateContent; private String compliancePackName; private Long accountId; private String aggregatorId; private String compliancePackTemplateId; private Long createTimestamp; private List<ConfigRulesItem> configRules; private List<TagsItem> tags; private Scope scope; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public Integer getRiskLevel() { return this.riskLevel; } public void setRiskLevel(Integer riskLevel) { this.riskLevel = riskLevel; } public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getTemplateContent() { return this.templateContent; } public void setTemplateContent(String templateContent) { this.templateContent = templateContent; } public String getCompliancePackName() { return this.compliancePackName; } public void setCompliancePackName(String compliancePackName) { this.compliancePackName = compliancePackName; } public Long getAccountId() { return this.accountId; } public void setAccountId(Long accountId) { this.accountId = accountId; } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; } public String getCompliancePackTemplateId() { return this.compliancePackTemplateId; } public void setCompliancePackTemplateId(String compliancePackTemplateId) { this.compliancePackTemplateId = compliancePackTemplateId; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } public List<ConfigRulesItem> getConfigRules() { return this.configRules; } public void setConfigRules(List<ConfigRulesItem> configRules) { this.configRules = configRules; } public List<TagsItem> getTags() { return this.tags; } public void setTags(List<TagsItem> tags) { this.tags = tags; } public Scope getScope() { return this.scope; } public void setScope(Scope scope) { this.scope = scope; } public static class ConfigRulesItem { private String managedRuleIdentifier; private String configRuleName; private String configRuleId; private String description; private Integer riskLevel; private String resourceTypesScope; private List<ConfigRuleParametersItem> configRuleParameters; public String getManagedRuleIdentifier() { return this.managedRuleIdentifier; } public void setManagedRuleIdentifier(String managedRuleIdentifier) { this.managedRuleIdentifier = managedRuleIdentifier; } public String getConfigRuleName() { return this.configRuleName; } public void setConfigRuleName(String configRuleName) { this.configRuleName = configRuleName; } public String getConfigRuleId() { return this.configRuleId; } public void setConfigRuleId(String configRuleId) { this.configRuleId = configRuleId; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public Integer getRiskLevel() { return this.riskLevel; } public void setRiskLevel(Integer riskLevel) { this.riskLevel = riskLevel; } public String getResourceTypesScope() { return this.resourceTypesScope; } public void setResourceTypesScope(String resourceTypesScope) { this.resourceTypesScope = resourceTypesScope; } public List<ConfigRuleParametersItem> getConfigRuleParameters() { return this.configRuleParameters; } public void setConfigRuleParameters(List<ConfigRuleParametersItem> configRuleParameters) { this.configRuleParameters = configRuleParameters; } public static class ConfigRuleParametersItem { private Boolean required; private String parameterName; private String parameterValue; public Boolean getRequired() { return this.required; } public void setRequired(Boolean required) { this.required = required; } public String getParameterName() { return this.parameterName; } public void setParameterName(String parameterName) { this.parameterName = parameterName; } public String getParameterValue() { return this.parameterValue; } public void setParameterValue(String parameterValue) { this.parameterValue = parameterValue; } } } public static class TagsItem { private String tagKey; private String tagValue; public String getTagKey() { return this.tagKey; } public void setTagKey(String tagKey) { this.tagKey = tagKey; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } } public static class Scope { private String excludeRegionIdsScope; private String resourceIdsScope; private String excludeResourceGroupIdsScope; private String tagKeyScope; private String tagValueScope; private String regionIdsScope; private String excludeResourceIdsScope; private String resourceGroupIdsScope; private List<TagsScopeItem> tagsScope; private List<ExcludeTagsScopeItem> excludeTagsScope; public String getExcludeRegionIdsScope() { return this.excludeRegionIdsScope; } public void setExcludeRegionIdsScope(String excludeRegionIdsScope) { this.excludeRegionIdsScope = excludeRegionIdsScope; } public String getResourceIdsScope() { return this.resourceIdsScope; } public void setResourceIdsScope(String resourceIdsScope) { this.resourceIdsScope = resourceIdsScope; } public String getExcludeResourceGroupIdsScope() { return this.excludeResourceGroupIdsScope; } public void setExcludeResourceGroupIdsScope(String excludeResourceGroupIdsScope) { this.excludeResourceGroupIdsScope = excludeResourceGroupIdsScope; } public String getTagKeyScope() { return this.tagKeyScope; } public void setTagKeyScope(String tagKeyScope) { this.tagKeyScope = tagKeyScope; } public String getTagValueScope() { return this.tagValueScope; } public void setTagValueScope(String tagValueScope) { this.tagValueScope = tagValueScope; } public String getRegionIdsScope() { return this.regionIdsScope; } public void setRegionIdsScope(String regionIdsScope) { this.regionIdsScope = regionIdsScope; } public String getExcludeResourceIdsScope() { return this.excludeResourceIdsScope; } public void setExcludeResourceIdsScope(String excludeResourceIdsScope) { this.excludeResourceIdsScope = excludeResourceIdsScope; } public String getResourceGroupIdsScope() { return this.resourceGroupIdsScope; } public void setResourceGroupIdsScope(String resourceGroupIdsScope) { this.resourceGroupIdsScope = resourceGroupIdsScope; } public List<TagsScopeItem> getTagsScope() { return this.tagsScope; } public void setTagsScope(List<TagsScopeItem> tagsScope) { this.tagsScope = tagsScope; } public List<ExcludeTagsScopeItem> getExcludeTagsScope() { return this.excludeTagsScope; } public void setExcludeTagsScope(List<ExcludeTagsScopeItem> excludeTagsScope) { this.excludeTagsScope = excludeTagsScope; } public static class TagsScopeItem { private String tagKey; private String tagValue; public String getTagKey() { return this.tagKey; } public void setTagKey(String tagKey) { this.tagKey = tagKey; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } } public static class ExcludeTagsScopeItem { private String tagKey; private String tagValue; public String getTagKey() { return this.tagKey; } public void setTagKey(String tagKey) { this.tagKey = tagKey; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } } } } @Override public GetAggregateCompliancePackResponse getInstance(UnmarshallerContext context) { return GetAggregateCompliancePackResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateComplianceSummaryRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateComplianceSummaryRequest extends RpcAcsRequest<GetAggregateComplianceSummaryResponse> { private String aggregatorId; public GetAggregateComplianceSummaryRequest() { super("Config", "2020-09-07", "GetAggregateComplianceSummary", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } @Override public Class<GetAggregateComplianceSummaryResponse> getResponseClass() { return GetAggregateComplianceSummaryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateComplianceSummaryResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateComplianceSummaryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateComplianceSummaryResponse extends AcsResponse { private String requestId; private ComplianceSummary complianceSummary; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ComplianceSummary getComplianceSummary() { return this.complianceSummary; } public void setComplianceSummary(ComplianceSummary complianceSummary) { this.complianceSummary = complianceSummary; } public static class ComplianceSummary { private ComplianceSummaryByResource complianceSummaryByResource; private ComplianceSummaryByConfigRule complianceSummaryByConfigRule; public ComplianceSummaryByResource getComplianceSummaryByResource() { return this.complianceSummaryByResource; } public void setComplianceSummaryByResource(ComplianceSummaryByResource complianceSummaryByResource) { this.complianceSummaryByResource = complianceSummaryByResource; } public ComplianceSummaryByConfigRule getComplianceSummaryByConfigRule() { return this.complianceSummaryByConfigRule; } public void setComplianceSummaryByConfigRule(ComplianceSummaryByConfigRule complianceSummaryByConfigRule) { this.complianceSummaryByConfigRule = complianceSummaryByConfigRule; } public static class ComplianceSummaryByResource { private Integer compliantCount; private Integer nonCompliantCount; private Long complianceSummaryTimestamp; private Long totalCount; public Integer getCompliantCount() { return this.compliantCount; } public void setCompliantCount(Integer compliantCount) { this.compliantCount = compliantCount; } public Integer getNonCompliantCount() { return this.nonCompliantCount; } public void setNonCompliantCount(Integer nonCompliantCount) { this.nonCompliantCount = nonCompliantCount; } public Long getComplianceSummaryTimestamp() { return this.complianceSummaryTimestamp; } public void setComplianceSummaryTimestamp(Long complianceSummaryTimestamp) { this.complianceSummaryTimestamp = complianceSummaryTimestamp; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } } public static class ComplianceSummaryByConfigRule { private Integer compliantCount; private Integer nonCompliantCount; private Long complianceSummaryTimestamp; private Long totalCount; public Integer getCompliantCount() { return this.compliantCount; } public void setCompliantCount(Integer compliantCount) { this.compliantCount = compliantCount; } public Integer getNonCompliantCount() { return this.nonCompliantCount; } public void setNonCompliantCount(Integer nonCompliantCount) { this.nonCompliantCount = nonCompliantCount; } public Long getComplianceSummaryTimestamp() { return this.complianceSummaryTimestamp; } public void setComplianceSummaryTimestamp(Long complianceSummaryTimestamp) { this.complianceSummaryTimestamp = complianceSummaryTimestamp; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } } } @Override public GetAggregateComplianceSummaryResponse getInstance(UnmarshallerContext context) { return GetAggregateComplianceSummaryResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateConfigDeliveryChannelRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateConfigDeliveryChannelRequest extends RpcAcsRequest<GetAggregateConfigDeliveryChannelResponse> { private String aggregatorId; private String deliveryChannelId; public GetAggregateConfigDeliveryChannelRequest() { super("Config", "2020-09-07", "GetAggregateConfigDeliveryChannel", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } public String getDeliveryChannelId() { return this.deliveryChannelId; } public void setDeliveryChannelId(String deliveryChannelId) { this.deliveryChannelId = deliveryChannelId; if(deliveryChannelId != null){ putQueryParameter("DeliveryChannelId", deliveryChannelId); } } @Override public Class<GetAggregateConfigDeliveryChannelResponse> getResponseClass() { return GetAggregateConfigDeliveryChannelResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateConfigDeliveryChannelResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateConfigDeliveryChannelResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateConfigDeliveryChannelResponse extends AcsResponse { private String requestId; private DeliveryChannel deliveryChannel; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public DeliveryChannel getDeliveryChannel() { return this.deliveryChannel; } public void setDeliveryChannel(DeliveryChannel deliveryChannel) { this.deliveryChannel = deliveryChannel; } public static class DeliveryChannel { private Integer status; private String deliveryChannelId; private String deliveryChannelName; private String deliveryChannelType; private String deliveryChannelTargetArn; private String deliveryChannelAssumeRoleArn; private String deliveryChannelCondition; private String oversizedDataOSSTargetArn; private String description; private Boolean compliantSnapshot; private Boolean configurationItemChangeNotification; private Boolean nonCompliantNotification; private String aggregatorId; private String accountId; private String deliverySnapshotTime; private Boolean configurationSnapshot; public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public String getDeliveryChannelId() { return this.deliveryChannelId; } public void setDeliveryChannelId(String deliveryChannelId) { this.deliveryChannelId = deliveryChannelId; } public String getDeliveryChannelName() { return this.deliveryChannelName; } public void setDeliveryChannelName(String deliveryChannelName) { this.deliveryChannelName = deliveryChannelName; } public String getDeliveryChannelType() { return this.deliveryChannelType; } public void setDeliveryChannelType(String deliveryChannelType) { this.deliveryChannelType = deliveryChannelType; } public String getDeliveryChannelTargetArn() { return this.deliveryChannelTargetArn; } public void setDeliveryChannelTargetArn(String deliveryChannelTargetArn) { this.deliveryChannelTargetArn = deliveryChannelTargetArn; } public String getDeliveryChannelAssumeRoleArn() { return this.deliveryChannelAssumeRoleArn; } public void setDeliveryChannelAssumeRoleArn(String deliveryChannelAssumeRoleArn) { this.deliveryChannelAssumeRoleArn = deliveryChannelAssumeRoleArn; } public String getDeliveryChannelCondition() { return this.deliveryChannelCondition; } public void setDeliveryChannelCondition(String deliveryChannelCondition) { this.deliveryChannelCondition = deliveryChannelCondition; } public String getOversizedDataOSSTargetArn() { return this.oversizedDataOSSTargetArn; } public void setOversizedDataOSSTargetArn(String oversizedDataOSSTargetArn) { this.oversizedDataOSSTargetArn = oversizedDataOSSTargetArn; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public Boolean getCompliantSnapshot() { return this.compliantSnapshot; } public void setCompliantSnapshot(Boolean compliantSnapshot) { this.compliantSnapshot = compliantSnapshot; } public Boolean getConfigurationItemChangeNotification() { return this.configurationItemChangeNotification; } public void setConfigurationItemChangeNotification(Boolean configurationItemChangeNotification) { this.configurationItemChangeNotification = configurationItemChangeNotification; } public Boolean getNonCompliantNotification() { return this.nonCompliantNotification; } public void setNonCompliantNotification(Boolean nonCompliantNotification) { this.nonCompliantNotification = nonCompliantNotification; } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; } public String getAccountId() { return this.accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public String getDeliverySnapshotTime() { return this.deliverySnapshotTime; } public void setDeliverySnapshotTime(String deliverySnapshotTime) { this.deliverySnapshotTime = deliverySnapshotTime; } public Boolean getConfigurationSnapshot() { return this.configurationSnapshot; } public void setConfigurationSnapshot(Boolean configurationSnapshot) { this.configurationSnapshot = configurationSnapshot; } } @Override public GetAggregateConfigDeliveryChannelResponse getInstance(UnmarshallerContext context) { return GetAggregateConfigDeliveryChannelResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateConfigRuleComplianceByPackRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateConfigRuleComplianceByPackRequest extends RpcAcsRequest<GetAggregateConfigRuleComplianceByPackResponse> { private String aggregatorId; private String compliancePackId; public GetAggregateConfigRuleComplianceByPackRequest() { super("Config", "2020-09-07", "GetAggregateConfigRuleComplianceByPack", "config"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; if(compliancePackId != null){ putQueryParameter("CompliancePackId", compliancePackId); } } @Override public Class<GetAggregateConfigRuleComplianceByPackResponse> getResponseClass() { return GetAggregateConfigRuleComplianceByPackResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateConfigRuleComplianceByPackResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateConfigRuleComplianceByPackResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateConfigRuleComplianceByPackResponse extends AcsResponse { private String requestId; private ConfigRuleComplianceResult configRuleComplianceResult; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ConfigRuleComplianceResult getConfigRuleComplianceResult() { return this.configRuleComplianceResult; } public void setConfigRuleComplianceResult(ConfigRuleComplianceResult configRuleComplianceResult) { this.configRuleComplianceResult = configRuleComplianceResult; } public static class ConfigRuleComplianceResult { private String compliancePackId; private Integer nonCompliantCount; private Integer totalCount; private List<ConfigRuleCompliancesItem> configRuleCompliances; public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; } public Integer getNonCompliantCount() { return this.nonCompliantCount; } public void setNonCompliantCount(Integer nonCompliantCount) { this.nonCompliantCount = nonCompliantCount; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<ConfigRuleCompliancesItem> getConfigRuleCompliances() { return this.configRuleCompliances; } public void setConfigRuleCompliances(List<ConfigRuleCompliancesItem> configRuleCompliances) { this.configRuleCompliances = configRuleCompliances; } public static class ConfigRuleCompliancesItem { private String complianceType; private String configRuleName; private String configRuleId; public String getComplianceType() { return this.complianceType; } public void setComplianceType(String complianceType) { this.complianceType = complianceType; } public String getConfigRuleName() { return this.configRuleName; } public void setConfigRuleName(String configRuleName) { this.configRuleName = configRuleName; } public String getConfigRuleId() { return this.configRuleId; } public void setConfigRuleId(String configRuleId) { this.configRuleId = configRuleId; } } } @Override public GetAggregateConfigRuleComplianceByPackResponse getInstance(UnmarshallerContext context) { return GetAggregateConfigRuleComplianceByPackResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateConfigRuleRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateConfigRuleRequest extends RpcAcsRequest<GetAggregateConfigRuleResponse> { private String configRuleId; private String aggregatorId; private String tag; public GetAggregateConfigRuleRequest() { super("Config", "2020-09-07", "GetAggregateConfigRule", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getConfigRuleId() { return this.configRuleId; } public void setConfigRuleId(String configRuleId) { this.configRuleId = configRuleId; if(configRuleId != null){ putQueryParameter("ConfigRuleId", configRuleId); } } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } public String getTag() { return this.tag; } public void setTag(String tag) { this.tag = tag; if(tag != null){ putQueryParameter("Tag", tag); } } @Override public Class<GetAggregateConfigRuleResponse> getResponseClass() { return GetAggregateConfigRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateConfigRuleResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateConfigRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateConfigRuleResponse extends AcsResponse { private String requestId; private ConfigRule configRule; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ConfigRule getConfigRule() { return this.configRule; } public void setConfigRule(ConfigRule configRule) { this.configRule = configRule; } public static class ConfigRule { private Integer riskLevel; private Map<Object,Object> inputParameters; private String configRuleState; private String maximumExecutionFrequency; private String configRuleArn; private String description; private String configRuleName; private String configRuleId; private Long modifiedTimestamp; private Long createTimestamp; private String resourceTypesScope; private String excludeRegionIdsScope; private String regionIdsScope; private String excludeResourceIdsScope; private String resourceIdsScope; private String resourceGroupIdsScope; private String excludeResourceGroupIdsScope; private String tagKeyScope; private String tagValueScope; private String configRuleTriggerTypes; private String tagKeyLogicScope; private String folderIdsScope; private String excludeFolderIdsScope; private String excludeAccountIdsScope; private String resourceNameScope; private Long accountId; private String serviceChannel; private String extendContent; private String accountIdsScope; private List<TagsScopeItem> tagsScope; private List<ExcludeTagsScopeItem> excludeTagsScope; private List<TagsItem> tags; private Source source; private ManagedRule managedRule; private CreateBy createBy; private ConfigRuleEvaluationStatus configRuleEvaluationStatus; private Scope scope; private Compliance compliance; public Integer getRiskLevel() { return this.riskLevel; } public void setRiskLevel(Integer riskLevel) { this.riskLevel = riskLevel; } public Map<Object,Object> getInputParameters() { return this.inputParameters; } public void setInputParameters(Map<Object,Object> inputParameters) { this.inputParameters = inputParameters; } public String getConfigRuleState() { return this.configRuleState; } public void setConfigRuleState(String configRuleState) { this.configRuleState = configRuleState; } public String getMaximumExecutionFrequency() { return this.maximumExecutionFrequency; } public void setMaximumExecutionFrequency(String maximumExecutionFrequency) { this.maximumExecutionFrequency = maximumExecutionFrequency; } public String getConfigRuleArn() { return this.configRuleArn; } public void setConfigRuleArn(String configRuleArn) { this.configRuleArn = configRuleArn; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getConfigRuleName() { return this.configRuleName; } public void setConfigRuleName(String configRuleName) { this.configRuleName = configRuleName; } public String getConfigRuleId() { return this.configRuleId; } public void setConfigRuleId(String configRuleId) { this.configRuleId = configRuleId; } public Long getModifiedTimestamp() { return this.modifiedTimestamp; } public void setModifiedTimestamp(Long modifiedTimestamp) { this.modifiedTimestamp = modifiedTimestamp; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } public String getResourceTypesScope() { return this.resourceTypesScope; } public void setResourceTypesScope(String resourceTypesScope) { this.resourceTypesScope = resourceTypesScope; } public String getExcludeRegionIdsScope() { return this.excludeRegionIdsScope; } public void setExcludeRegionIdsScope(String excludeRegionIdsScope) { this.excludeRegionIdsScope = excludeRegionIdsScope; } public String getRegionIdsScope() { return this.regionIdsScope; } public void setRegionIdsScope(String regionIdsScope) { this.regionIdsScope = regionIdsScope; } public String getExcludeResourceIdsScope() { return this.excludeResourceIdsScope; } public void setExcludeResourceIdsScope(String excludeResourceIdsScope) { this.excludeResourceIdsScope = excludeResourceIdsScope; } public String getResourceIdsScope() { return this.resourceIdsScope; } public void setResourceIdsScope(String resourceIdsScope) { this.resourceIdsScope = resourceIdsScope; } public String getResourceGroupIdsScope() { return this.resourceGroupIdsScope; } public void setResourceGroupIdsScope(String resourceGroupIdsScope) { this.resourceGroupIdsScope = resourceGroupIdsScope; } public String getExcludeResourceGroupIdsScope() { return this.excludeResourceGroupIdsScope; } public void setExcludeResourceGroupIdsScope(String excludeResourceGroupIdsScope) { this.excludeResourceGroupIdsScope = excludeResourceGroupIdsScope; } public String getTagKeyScope() { return this.tagKeyScope; } public void setTagKeyScope(String tagKeyScope) { this.tagKeyScope = tagKeyScope; } public String getTagValueScope() { return this.tagValueScope; } public void setTagValueScope(String tagValueScope) { this.tagValueScope = tagValueScope; } public String getConfigRuleTriggerTypes() { return this.configRuleTriggerTypes; } public void setConfigRuleTriggerTypes(String configRuleTriggerTypes) { this.configRuleTriggerTypes = configRuleTriggerTypes; } public String getTagKeyLogicScope() { return this.tagKeyLogicScope; } public void setTagKeyLogicScope(String tagKeyLogicScope) { this.tagKeyLogicScope = tagKeyLogicScope; } public String getFolderIdsScope() { return this.folderIdsScope; } public void setFolderIdsScope(String folderIdsScope) { this.folderIdsScope = folderIdsScope; } public String getExcludeFolderIdsScope() { return this.excludeFolderIdsScope; } public void setExcludeFolderIdsScope(String excludeFolderIdsScope) { this.excludeFolderIdsScope = excludeFolderIdsScope; } public String getExcludeAccountIdsScope() { return this.excludeAccountIdsScope; } public void setExcludeAccountIdsScope(String excludeAccountIdsScope) { this.excludeAccountIdsScope = excludeAccountIdsScope; } public String getResourceNameScope() { return this.resourceNameScope; } public void setResourceNameScope(String resourceNameScope) { this.resourceNameScope = resourceNameScope; } public Long getAccountId() { return this.accountId; } public void setAccountId(Long accountId) { this.accountId = accountId; } public String getServiceChannel() { return this.serviceChannel; } public void setServiceChannel(String serviceChannel) { this.serviceChannel = serviceChannel; } public String getExtendContent() { return this.extendContent; } public void setExtendContent(String extendContent) { this.extendContent = extendContent; } public String getAccountIdsScope() { return this.accountIdsScope; } public void setAccountIdsScope(String accountIdsScope) { this.accountIdsScope = accountIdsScope; } public List<TagsScopeItem> getTagsScope() { return this.tagsScope; } public void setTagsScope(List<TagsScopeItem> tagsScope) { this.tagsScope = tagsScope; } public List<ExcludeTagsScopeItem> getExcludeTagsScope() { return this.excludeTagsScope; } public void setExcludeTagsScope(List<ExcludeTagsScopeItem> excludeTagsScope) { this.excludeTagsScope = excludeTagsScope; } public List<TagsItem> getTags() { return this.tags; } public void setTags(List<TagsItem> tags) { this.tags = tags; } public Source getSource() { return this.source; } public void setSource(Source source) { this.source = source; } public ManagedRule getManagedRule() { return this.managedRule; } public void setManagedRule(ManagedRule managedRule) { this.managedRule = managedRule; } public CreateBy getCreateBy() { return this.createBy; } public void setCreateBy(CreateBy createBy) { this.createBy = createBy; } public ConfigRuleEvaluationStatus getConfigRuleEvaluationStatus() { return this.configRuleEvaluationStatus; } public void setConfigRuleEvaluationStatus(ConfigRuleEvaluationStatus configRuleEvaluationStatus) { this.configRuleEvaluationStatus = configRuleEvaluationStatus; } public Scope getScope() { return this.scope; } public void setScope(Scope scope) { this.scope = scope; } public Compliance getCompliance() { return this.compliance; } public void setCompliance(Compliance compliance) { this.compliance = compliance; } public static class TagsScopeItem { private String tagKey; private String tagValue; public String getTagKey() { return this.tagKey; } public void setTagKey(String tagKey) { this.tagKey = tagKey; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } } public static class ExcludeTagsScopeItem { private String tagKey; private String tagValue; public String getTagKey() { return this.tagKey; } public void setTagKey(String tagKey) { this.tagKey = tagKey; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } } public static class TagsItem { private String tagKey; private String tagValue; public String getTagKey() { return this.tagKey; } public void setTagKey(String tagKey) { this.tagKey = tagKey; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } } public static class Source { private String owner; private String identifier; private String conditions; private List<SourceDetailsItem> sourceDetails; private List<Map<Object,Object>> sourceConditions; public String getOwner() { return this.owner; } public void setOwner(String owner) { this.owner = owner; } public String getIdentifier() { return this.identifier; } public void setIdentifier(String identifier) { this.identifier = identifier; } public String getConditions() { return this.conditions; } public void setConditions(String conditions) { this.conditions = conditions; } public List<SourceDetailsItem> getSourceDetails() { return this.sourceDetails; } public void setSourceDetails(List<SourceDetailsItem> sourceDetails) { this.sourceDetails = sourceDetails; } public List<Map<Object,Object>> getSourceConditions() { return this.sourceConditions; } public void setSourceConditions(List<Map<Object,Object>> sourceConditions) { this.sourceConditions = sourceConditions; } public static class SourceDetailsItem { private String messageType; private String eventSource; private String maximumExecutionFrequency; public String getMessageType() { return this.messageType; } public void setMessageType(String messageType) { this.messageType = messageType; } public String getEventSource() { return this.eventSource; } public void setEventSource(String eventSource) { this.eventSource = eventSource; } public String getMaximumExecutionFrequency() { return this.maximumExecutionFrequency; } public void setMaximumExecutionFrequency(String maximumExecutionFrequency) { this.maximumExecutionFrequency = maximumExecutionFrequency; } } } public static class ManagedRule { private String helpUrl; private String description; private String identifier; private Map<Object,Object> optionalInputParameterDetails; private String managedRuleName; private Map<Object,Object> compulsoryInputParameterDetails; private List<SourceDetailsItem2> sourceDetails1; private List<String> labels; public String getHelpUrl() { return this.helpUrl; } public void setHelpUrl(String helpUrl) { this.helpUrl = helpUrl; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getIdentifier() { return this.identifier; } public void setIdentifier(String identifier) { this.identifier = identifier; } public Map<Object,Object> getOptionalInputParameterDetails() { return this.optionalInputParameterDetails; } public void setOptionalInputParameterDetails(Map<Object,Object> optionalInputParameterDetails) { this.optionalInputParameterDetails = optionalInputParameterDetails; } public String getManagedRuleName() { return this.managedRuleName; } public void setManagedRuleName(String managedRuleName) { this.managedRuleName = managedRuleName; } public Map<Object,Object> getCompulsoryInputParameterDetails() { return this.compulsoryInputParameterDetails; } public void setCompulsoryInputParameterDetails(Map<Object,Object> compulsoryInputParameterDetails) { this.compulsoryInputParameterDetails = compulsoryInputParameterDetails; } public List<SourceDetailsItem2> getSourceDetails1() { return this.sourceDetails1; } public void setSourceDetails1(List<SourceDetailsItem2> sourceDetails1) { this.sourceDetails1 = sourceDetails1; } public List<String> getLabels() { return this.labels; } public void setLabels(List<String> labels) { this.labels = labels; } public static class SourceDetailsItem2 { private String messageType; private String eventSource; private String maximumExecutionFrequency; public String getMessageType() { return this.messageType; } public void setMessageType(String messageType) { this.messageType = messageType; } public String getEventSource() { return this.eventSource; } public void setEventSource(String eventSource) { this.eventSource = eventSource; } public String getMaximumExecutionFrequency() { return this.maximumExecutionFrequency; } public void setMaximumExecutionFrequency(String maximumExecutionFrequency) { this.maximumExecutionFrequency = maximumExecutionFrequency; } } } public static class CreateBy { private String compliancePackId; private String aggregatorName; private String compliancePackName; private String creatorName; private String creatorType; private String creatorId; private String aggregatorId; public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; } public String getAggregatorName() { return this.aggregatorName; } public void setAggregatorName(String aggregatorName) { this.aggregatorName = aggregatorName; } public String getCompliancePackName() { return this.compliancePackName; } public void setCompliancePackName(String compliancePackName) { this.compliancePackName = compliancePackName; } public String getCreatorName() { return this.creatorName; } public void setCreatorName(String creatorName) { this.creatorName = creatorName; } public String getCreatorType() { return this.creatorType; } public void setCreatorType(String creatorType) { this.creatorType = creatorType; } public String getCreatorId() { return this.creatorId; } public void setCreatorId(String creatorId) { this.creatorId = creatorId; } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; } } public static class ConfigRuleEvaluationStatus { private String lastErrorCode; private Long lastSuccessfulEvaluationTimestamp; private Long firstActivatedTimestamp; private Boolean firstEvaluationStarted; private Long lastSuccessfulInvocationTimestamp; private String lastErrorMessage; private Long lastFailedEvaluationTimestamp; private Long lastFailedInvocationTimestamp; public String getLastErrorCode() { return this.lastErrorCode; } public void setLastErrorCode(String lastErrorCode) { this.lastErrorCode = lastErrorCode; } public Long getLastSuccessfulEvaluationTimestamp() { return this.lastSuccessfulEvaluationTimestamp; } public void setLastSuccessfulEvaluationTimestamp(Long lastSuccessfulEvaluationTimestamp) { this.lastSuccessfulEvaluationTimestamp = lastSuccessfulEvaluationTimestamp; } public Long getFirstActivatedTimestamp() { return this.firstActivatedTimestamp; } public void setFirstActivatedTimestamp(Long firstActivatedTimestamp) { this.firstActivatedTimestamp = firstActivatedTimestamp; } public Boolean getFirstEvaluationStarted() { return this.firstEvaluationStarted; } public void setFirstEvaluationStarted(Boolean firstEvaluationStarted) { this.firstEvaluationStarted = firstEvaluationStarted; } public Long getLastSuccessfulInvocationTimestamp() { return this.lastSuccessfulInvocationTimestamp; } public void setLastSuccessfulInvocationTimestamp(Long lastSuccessfulInvocationTimestamp) { this.lastSuccessfulInvocationTimestamp = lastSuccessfulInvocationTimestamp; } public String getLastErrorMessage() { return this.lastErrorMessage; } public void setLastErrorMessage(String lastErrorMessage) { this.lastErrorMessage = lastErrorMessage; } public Long getLastFailedEvaluationTimestamp() { return this.lastFailedEvaluationTimestamp; } public void setLastFailedEvaluationTimestamp(Long lastFailedEvaluationTimestamp) { this.lastFailedEvaluationTimestamp = lastFailedEvaluationTimestamp; } public Long getLastFailedInvocationTimestamp() { return this.lastFailedInvocationTimestamp; } public void setLastFailedInvocationTimestamp(Long lastFailedInvocationTimestamp) { this.lastFailedInvocationTimestamp = lastFailedInvocationTimestamp; } } public static class Scope { private List<String> complianceResourceTypes; public List<String> getComplianceResourceTypes() { return this.complianceResourceTypes; } public void setComplianceResourceTypes(List<String> complianceResourceTypes) { this.complianceResourceTypes = complianceResourceTypes; } } public static class Compliance { private String complianceType; private Integer count; public String getComplianceType() { return this.complianceType; } public void setComplianceType(String complianceType) { this.complianceType = complianceType; } public Integer getCount() { return this.count; } public void setCount(Integer count) { this.count = count; } } } @Override public GetAggregateConfigRuleResponse getInstance(UnmarshallerContext context) { return GetAggregateConfigRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateConfigRuleSummaryByRiskLevelRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateConfigRuleSummaryByRiskLevelRequest extends RpcAcsRequest<GetAggregateConfigRuleSummaryByRiskLevelResponse> { private String aggregatorId; public GetAggregateConfigRuleSummaryByRiskLevelRequest() { super("Config", "2020-09-07", "GetAggregateConfigRuleSummaryByRiskLevel", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } @Override public Class<GetAggregateConfigRuleSummaryByRiskLevelResponse> getResponseClass() { return GetAggregateConfigRuleSummaryByRiskLevelResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateConfigRuleSummaryByRiskLevelResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateConfigRuleSummaryByRiskLevelResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateConfigRuleSummaryByRiskLevelResponse extends AcsResponse { private String requestId; private List<Data> configRuleSummaries; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<Data> getConfigRuleSummaries() { return this.configRuleSummaries; } public void setConfigRuleSummaries(List<Data> configRuleSummaries) { this.configRuleSummaries = configRuleSummaries; } public static class Data { private Integer compliantCount; private Integer nonCompliantCount; private Integer riskLevel; public Integer getCompliantCount() { return this.compliantCount; } public void setCompliantCount(Integer compliantCount) { this.compliantCount = compliantCount; } public Integer getNonCompliantCount() { return this.nonCompliantCount; } public void setNonCompliantCount(Integer nonCompliantCount) { this.nonCompliantCount = nonCompliantCount; } public Integer getRiskLevel() { return this.riskLevel; } public void setRiskLevel(Integer riskLevel) { this.riskLevel = riskLevel; } } @Override public GetAggregateConfigRuleSummaryByRiskLevelResponse getInstance(UnmarshallerContext context) { return GetAggregateConfigRuleSummaryByRiskLevelResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateConfigRulesReportRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateConfigRulesReportRequest extends RpcAcsRequest<GetAggregateConfigRulesReportResponse> { private String reportId; private String aggregatorId; public GetAggregateConfigRulesReportRequest() { super("Config", "2020-09-07", "GetAggregateConfigRulesReport", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getReportId() { return this.reportId; } public void setReportId(String reportId) { this.reportId = reportId; if(reportId != null){ putQueryParameter("ReportId", reportId); } } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } @Override public Class<GetAggregateConfigRulesReportResponse> getResponseClass() { return GetAggregateConfigRulesReportResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateConfigRulesReportResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateConfigRulesReportResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateConfigRulesReportResponse extends AcsResponse { private String requestId; private ConfigRulesReport configRulesReport; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ConfigRulesReport getConfigRulesReport() { return this.configRulesReport; } public void setConfigRulesReport(ConfigRulesReport configRulesReport) { this.configRulesReport = configRulesReport; } public static class ConfigRulesReport { private String reportUrl; private String reportStatus; private Long accountId; private String aggregatorId; private Long reportCreateTimestamp; private String reportId; public String getReportUrl() { return this.reportUrl; } public void setReportUrl(String reportUrl) { this.reportUrl = reportUrl; } public String getReportStatus() { return this.reportStatus; } public void setReportStatus(String reportStatus) { this.reportStatus = reportStatus; } public Long getAccountId() { return this.accountId; } public void setAccountId(Long accountId) { this.accountId = accountId; } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; } public Long getReportCreateTimestamp() { return this.reportCreateTimestamp; } public void setReportCreateTimestamp(Long reportCreateTimestamp) { this.reportCreateTimestamp = reportCreateTimestamp; } public String getReportId() { return this.reportId; } public void setReportId(String reportId) { this.reportId = reportId; } } @Override public GetAggregateConfigRulesReportResponse getInstance(UnmarshallerContext context) { return GetAggregateConfigRulesReportResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateDiscoveredResourceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateDiscoveredResourceRequest extends RpcAcsRequest<GetAggregateDiscoveredResourceResponse> { private Long resourceOwnerId; private String aggregatorId; private Long resourceAccountId; private String resourceId; private Integer complianceOption; private String resourceType; private String region; public GetAggregateDiscoveredResourceRequest() { super("Config", "2020-09-07", "GetAggregateDiscoveredResource", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getResourceOwnerId() { return this.resourceOwnerId; } public void setResourceOwnerId(Long resourceOwnerId) { this.resourceOwnerId = resourceOwnerId; if(resourceOwnerId != null){ putQueryParameter("ResourceOwnerId", resourceOwnerId.toString()); } } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } public Long getResourceAccountId() { return this.resourceAccountId; } public void setResourceAccountId(Long resourceAccountId) { this.resourceAccountId = resourceAccountId; if(resourceAccountId != null){ putQueryParameter("ResourceAccountId", resourceAccountId.toString()); } } public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; if(resourceId != null){ putQueryParameter("ResourceId", resourceId); } } public Integer getComplianceOption() { return this.complianceOption; } public void setComplianceOption(Integer complianceOption) { this.complianceOption = complianceOption; if(complianceOption != null){ putQueryParameter("ComplianceOption", complianceOption.toString()); } } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; if(resourceType != null){ putQueryParameter("ResourceType", resourceType); } } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("Region", region); } } @Override public Class<GetAggregateDiscoveredResourceResponse> getResponseClass() { return GetAggregateDiscoveredResourceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateDiscoveredResourceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateDiscoveredResourceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateDiscoveredResourceResponse extends AcsResponse { private String requestId; private DiscoveredResourceDetail discoveredResourceDetail; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public DiscoveredResourceDetail getDiscoveredResourceDetail() { return this.discoveredResourceDetail; } public void setDiscoveredResourceDetail(DiscoveredResourceDetail discoveredResourceDetail) { this.discoveredResourceDetail = discoveredResourceDetail; } public static class DiscoveredResourceDetail { private String availabilityZone; private String resourceType; private String configuration; private String region; private Long resourceCreationTime; private String tags; private Long accountId; private String resourceId; private Integer resourceDeleted; private String resourceName; private String resourceStatus; private Long version; private String complianceType; private String vpcId; private String vSwitchId; public String getAvailabilityZone() { return this.availabilityZone; } public void setAvailabilityZone(String availabilityZone) { this.availabilityZone = availabilityZone; } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; } public String getConfiguration() { return this.configuration; } public void setConfiguration(String configuration) { this.configuration = configuration; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public Long getResourceCreationTime() { return this.resourceCreationTime; } public void setResourceCreationTime(Long resourceCreationTime) { this.resourceCreationTime = resourceCreationTime; } public String getTags() { return this.tags; } public void setTags(String tags) { this.tags = tags; } public Long getAccountId() { return this.accountId; } public void setAccountId(Long accountId) { this.accountId = accountId; } public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; } public Integer getResourceDeleted() { return this.resourceDeleted; } public void setResourceDeleted(Integer resourceDeleted) { this.resourceDeleted = resourceDeleted; } public String getResourceName() { return this.resourceName; } public void setResourceName(String resourceName) { this.resourceName = resourceName; } public String getResourceStatus() { return this.resourceStatus; } public void setResourceStatus(String resourceStatus) { this.resourceStatus = resourceStatus; } public Long getVersion() { return this.version; } public void setVersion(Long version) { this.version = version; } public String getComplianceType() { return this.complianceType; } public void setComplianceType(String complianceType) { this.complianceType = complianceType; } public String getVpcId() { return this.vpcId; } public void setVpcId(String vpcId) { this.vpcId = vpcId; } public String getVSwitchId() { return this.vSwitchId; } public void setVSwitchId(String vSwitchId) { this.vSwitchId = vSwitchId; } } @Override public GetAggregateDiscoveredResourceResponse getInstance(UnmarshallerContext context) { return GetAggregateDiscoveredResourceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateResourceComplianceByConfigRuleRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateResourceComplianceByConfigRuleRequest extends RpcAcsRequest<GetAggregateResourceComplianceByConfigRuleResponse> { private String configRuleId; private Long resourceOwnerId; private String aggregatorId; private Long resourceAccountId; private String complianceType; public GetAggregateResourceComplianceByConfigRuleRequest() { super("Config", "2020-09-07", "GetAggregateResourceComplianceByConfigRule", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getConfigRuleId() { return this.configRuleId; } public void setConfigRuleId(String configRuleId) { this.configRuleId = configRuleId; if(configRuleId != null){ putQueryParameter("ConfigRuleId", configRuleId); } } public Long getResourceOwnerId() { return this.resourceOwnerId; } public void setResourceOwnerId(Long resourceOwnerId) { this.resourceOwnerId = resourceOwnerId; if(resourceOwnerId != null){ putQueryParameter("ResourceOwnerId", resourceOwnerId.toString()); } } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } public Long getResourceAccountId() { return this.resourceAccountId; } public void setResourceAccountId(Long resourceAccountId) { this.resourceAccountId = resourceAccountId; if(resourceAccountId != null){ putQueryParameter("ResourceAccountId", resourceAccountId.toString()); } } public String getComplianceType() { return this.complianceType; } public void setComplianceType(String complianceType) { this.complianceType = complianceType; if(complianceType != null){ putQueryParameter("ComplianceType", complianceType); } } @Override public Class<GetAggregateResourceComplianceByConfigRuleResponse> getResponseClass() { return GetAggregateResourceComplianceByConfigRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateResourceComplianceByConfigRuleResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateResourceComplianceByConfigRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateResourceComplianceByConfigRuleResponse extends AcsResponse { private String requestId; private ComplianceResult complianceResult; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ComplianceResult getComplianceResult() { return this.complianceResult; } public void setComplianceResult(ComplianceResult complianceResult) { this.complianceResult = complianceResult; } public static class ComplianceResult { private Long totalCount; private List<CompliancesItem> compliances; public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public List<CompliancesItem> getCompliances() { return this.compliances; } public void setCompliances(List<CompliancesItem> compliances) { this.compliances = compliances; } public static class CompliancesItem { private String complianceType; private Integer count; public String getComplianceType() { return this.complianceType; } public void setComplianceType(String complianceType) { this.complianceType = complianceType; } public Integer getCount() { return this.count; } public void setCount(Integer count) { this.count = count; } } } @Override public GetAggregateResourceComplianceByConfigRuleResponse getInstance(UnmarshallerContext context) { return GetAggregateResourceComplianceByConfigRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateResourceComplianceByPackRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateResourceComplianceByPackRequest extends RpcAcsRequest<GetAggregateResourceComplianceByPackResponse> { private String aggregatorId; private String compliancePackId; public GetAggregateResourceComplianceByPackRequest() { super("Config", "2020-09-07", "GetAggregateResourceComplianceByPack", "config"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; if(compliancePackId != null){ putQueryParameter("CompliancePackId", compliancePackId); } } @Override public Class<GetAggregateResourceComplianceByPackResponse> getResponseClass() { return GetAggregateResourceComplianceByPackResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateResourceComplianceByPackResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateResourceComplianceByPackResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateResourceComplianceByPackResponse extends AcsResponse { private String requestId; private ResourceComplianceResult resourceComplianceResult; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ResourceComplianceResult getResourceComplianceResult() { return this.resourceComplianceResult; } public void setResourceComplianceResult(ResourceComplianceResult resourceComplianceResult) { this.resourceComplianceResult = resourceComplianceResult; } public static class ResourceComplianceResult { private String compliancePackId; private Integer nonCompliantCount; private Integer totalCount; public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; } public Integer getNonCompliantCount() { return this.nonCompliantCount; } public void setNonCompliantCount(Integer nonCompliantCount) { this.nonCompliantCount = nonCompliantCount; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } } @Override public GetAggregateResourceComplianceByPackResponse getInstance(UnmarshallerContext context) { return GetAggregateResourceComplianceByPackResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateResourceComplianceGroupByRegionRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateResourceComplianceGroupByRegionRequest extends RpcAcsRequest<GetAggregateResourceComplianceGroupByRegionResponse> { private String configRuleIds; private String aggregatorId; public GetAggregateResourceComplianceGroupByRegionRequest() { super("Config", "2020-09-07", "GetAggregateResourceComplianceGroupByRegion", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getConfigRuleIds() { return this.configRuleIds; } public void setConfigRuleIds(String configRuleIds) { this.configRuleIds = configRuleIds; if(configRuleIds != null){ putQueryParameter("ConfigRuleIds", configRuleIds); } } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } @Override public Class<GetAggregateResourceComplianceGroupByRegionResponse> getResponseClass() { return GetAggregateResourceComplianceGroupByRegionResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateResourceComplianceGroupByRegionResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateResourceComplianceGroupByRegionResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateResourceComplianceGroupByRegionResponse extends AcsResponse { private String requestId; private ComplianceResult complianceResult; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ComplianceResult getComplianceResult() { return this.complianceResult; } public void setComplianceResult(ComplianceResult complianceResult) { this.complianceResult = complianceResult; } public static class ComplianceResult { private List<ComplianceResultListItem> complianceResultList; public List<ComplianceResultListItem> getComplianceResultList() { return this.complianceResultList; } public void setComplianceResultList(List<ComplianceResultListItem> complianceResultList) { this.complianceResultList = complianceResultList; } public static class ComplianceResultListItem { private String regionId; private List<CompliancesItem> compliances; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public List<CompliancesItem> getCompliances() { return this.compliances; } public void setCompliances(List<CompliancesItem> compliances) { this.compliances = compliances; } public static class CompliancesItem { private String complianceType; private Long count; public String getComplianceType() { return this.complianceType; } public void setComplianceType(String complianceType) { this.complianceType = complianceType; } public Long getCount() { return this.count; } public void setCount(Long count) { this.count = count; } } } } @Override public GetAggregateResourceComplianceGroupByRegionResponse getInstance(UnmarshallerContext context) { return GetAggregateResourceComplianceGroupByRegionResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateResourceComplianceGroupByResourceTypeRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateResourceComplianceGroupByResourceTypeRequest extends RpcAcsRequest<GetAggregateResourceComplianceGroupByResourceTypeResponse> { private String configRuleIds; private String aggregatorId; public GetAggregateResourceComplianceGroupByResourceTypeRequest() { super("Config", "2020-09-07", "GetAggregateResourceComplianceGroupByResourceType", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getConfigRuleIds() { return this.configRuleIds; } public void setConfigRuleIds(String configRuleIds) { this.configRuleIds = configRuleIds; if(configRuleIds != null){ putQueryParameter("ConfigRuleIds", configRuleIds); } } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } @Override public Class<GetAggregateResourceComplianceGroupByResourceTypeResponse> getResponseClass() { return GetAggregateResourceComplianceGroupByResourceTypeResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateResourceComplianceGroupByResourceTypeResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateResourceComplianceGroupByResourceTypeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateResourceComplianceGroupByResourceTypeResponse extends AcsResponse { private String requestId; private ComplianceResult complianceResult; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ComplianceResult getComplianceResult() { return this.complianceResult; } public void setComplianceResult(ComplianceResult complianceResult) { this.complianceResult = complianceResult; } public static class ComplianceResult { private List<ComplianceResultListItem> complianceResultList; public List<ComplianceResultListItem> getComplianceResultList() { return this.complianceResultList; } public void setComplianceResultList(List<ComplianceResultListItem> complianceResultList) { this.complianceResultList = complianceResultList; } public static class ComplianceResultListItem { private String resourceType; private List<CompliancesItem> compliances; public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; } public List<CompliancesItem> getCompliances() { return this.compliances; } public void setCompliances(List<CompliancesItem> compliances) { this.compliances = compliances; } public static class CompliancesItem { private String complianceType; private Long count; public String getComplianceType() { return this.complianceType; } public void setComplianceType(String complianceType) { this.complianceType = complianceType; } public Long getCount() { return this.count; } public void setCount(Long count) { this.count = count; } } } } @Override public GetAggregateResourceComplianceGroupByResourceTypeResponse getInstance(UnmarshallerContext context) { return GetAggregateResourceComplianceGroupByResourceTypeResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateResourceComplianceTimelineRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateResourceComplianceTimelineRequest extends RpcAcsRequest<GetAggregateResourceComplianceTimelineResponse> { private Long resourceOwnerId; private String aggregatorId; private Long startTime; private Long resourceAccountId; private String nextToken; private String resourceId; private Long endTime; private String resourceType; private Integer maxResults; private String region; public GetAggregateResourceComplianceTimelineRequest() { super("Config", "2020-09-07", "GetAggregateResourceComplianceTimeline", "config"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getResourceOwnerId() { return this.resourceOwnerId; } public void setResourceOwnerId(Long resourceOwnerId) { this.resourceOwnerId = resourceOwnerId; if(resourceOwnerId != null){ putQueryParameter("ResourceOwnerId", resourceOwnerId.toString()); } } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime.toString()); } } public Long getResourceAccountId() { return this.resourceAccountId; } public void setResourceAccountId(Long resourceAccountId) { this.resourceAccountId = resourceAccountId; if(resourceAccountId != null){ putQueryParameter("ResourceAccountId", resourceAccountId.toString()); } } public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; if(nextToken != null){ putQueryParameter("NextToken", nextToken); } } public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; if(resourceId != null){ putQueryParameter("ResourceId", resourceId); } } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("EndTime", endTime.toString()); } } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; if(resourceType != null){ putQueryParameter("ResourceType", resourceType); } } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; if(maxResults != null){ putQueryParameter("MaxResults", maxResults.toString()); } } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("Region", region); } } @Override public Class<GetAggregateResourceComplianceTimelineResponse> getResponseClass() { return GetAggregateResourceComplianceTimelineResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateResourceComplianceTimelineResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateResourceComplianceTimelineResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateResourceComplianceTimelineResponse extends AcsResponse { private String requestId; private ResourceComplianceTimeline resourceComplianceTimeline; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ResourceComplianceTimeline getResourceComplianceTimeline() { return this.resourceComplianceTimeline; } public void setResourceComplianceTimeline(ResourceComplianceTimeline resourceComplianceTimeline) { this.resourceComplianceTimeline = resourceComplianceTimeline; } public static class ResourceComplianceTimeline { private String nextToken; private Integer maxResults; private List<ComplianceListItem> complianceList; public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } public List<ComplianceListItem> getComplianceList() { return this.complianceList; } public void setComplianceList(List<ComplianceListItem> complianceList) { this.complianceList = complianceList; } public static class ComplianceListItem { private String tags; private String accountId; private String availabilityZone; private String resourceType; private Long resourceCreateTime; private String region; private String configuration; private Long captureTime; private String configurationDiff; private String resourceId; private String resourceName; private String resourceStatus; public String getTags() { return this.tags; } public void setTags(String tags) { this.tags = tags; } public String getAccountId() { return this.accountId; } public void setAccountId(String accountId) { this.accountId = accountId; } public String getAvailabilityZone() { return this.availabilityZone; } public void setAvailabilityZone(String availabilityZone) { this.availabilityZone = availabilityZone; } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; } public Long getResourceCreateTime() { return this.resourceCreateTime; } public void setResourceCreateTime(Long resourceCreateTime) { this.resourceCreateTime = resourceCreateTime; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public String getConfiguration() { return this.configuration; } public void setConfiguration(String configuration) { this.configuration = configuration; } public Long getCaptureTime() { return this.captureTime; } public void setCaptureTime(Long captureTime) { this.captureTime = captureTime; } public String getConfigurationDiff() { return this.configurationDiff; } public void setConfigurationDiff(String configurationDiff) { this.configurationDiff = configurationDiff; } public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; } public String getResourceName() { return this.resourceName; } public void setResourceName(String resourceName) { this.resourceName = resourceName; } public String getResourceStatus() { return this.resourceStatus; } public void setResourceStatus(String resourceStatus) { this.resourceStatus = resourceStatus; } } } @Override public GetAggregateResourceComplianceTimelineResponse getInstance(UnmarshallerContext context) { return GetAggregateResourceComplianceTimelineResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateResourceConfigurationTimelineRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateResourceConfigurationTimelineRequest extends RpcAcsRequest<GetAggregateResourceConfigurationTimelineResponse> { private Long resourceOwnerId; private String aggregatorId; private Long startTime; private Long resourceAccountId; private String nextToken; private String resourceId; private Long endTime; private String resourceType; private Integer maxResults; private String region; public GetAggregateResourceConfigurationTimelineRequest() { super("Config", "2020-09-07", "GetAggregateResourceConfigurationTimeline", "config"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getResourceOwnerId() { return this.resourceOwnerId; } public void setResourceOwnerId(Long resourceOwnerId) { this.resourceOwnerId = resourceOwnerId; if(resourceOwnerId != null){ putQueryParameter("ResourceOwnerId", resourceOwnerId.toString()); } } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime.toString()); } } public Long getResourceAccountId() { return this.resourceAccountId; } public void setResourceAccountId(Long resourceAccountId) { this.resourceAccountId = resourceAccountId; if(resourceAccountId != null){ putQueryParameter("ResourceAccountId", resourceAccountId.toString()); } } public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; if(nextToken != null){ putQueryParameter("NextToken", nextToken); } } public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; if(resourceId != null){ putQueryParameter("ResourceId", resourceId); } } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("EndTime", endTime.toString()); } } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; if(resourceType != null){ putQueryParameter("ResourceType", resourceType); } } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; if(maxResults != null){ putQueryParameter("MaxResults", maxResults.toString()); } } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("Region", region); } } @Override public Class<GetAggregateResourceConfigurationTimelineResponse> getResponseClass() { return GetAggregateResourceConfigurationTimelineResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateResourceConfigurationTimelineResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateResourceConfigurationTimelineResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateResourceConfigurationTimelineResponse extends AcsResponse { private String requestId; private ResourceConfigurationTimeline resourceConfigurationTimeline; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ResourceConfigurationTimeline getResourceConfigurationTimeline() { return this.resourceConfigurationTimeline; } public void setResourceConfigurationTimeline(ResourceConfigurationTimeline resourceConfigurationTimeline) { this.resourceConfigurationTimeline = resourceConfigurationTimeline; } public static class ResourceConfigurationTimeline { private String nextToken; private Integer maxResults; private List<ConfigurationListItem> configurationList; public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; } public Integer getMaxResults() { return this.maxResults; } public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } public List<ConfigurationListItem> getConfigurationList() { return this.configurationList; } public void setConfigurationList(List<ConfigurationListItem> configurationList) { this.configurationList = configurationList; } public static class ConfigurationListItem { private String relationship; private String tags; private Long accountId; private String resourceEventType; private String relationshipDiff; private String availabilityZone; private String resourceType; private String resourceCreateTime; private String region; private String captureTime; private String configurationDiff; private String resourceId; private String resourceName; public String getRelationship() { return this.relationship; } public void setRelationship(String relationship) { this.relationship = relationship; } public String getTags() { return this.tags; } public void setTags(String tags) { this.tags = tags; } public Long getAccountId() { return this.accountId; } public void setAccountId(Long accountId) { this.accountId = accountId; } public String getResourceEventType() { return this.resourceEventType; } public void setResourceEventType(String resourceEventType) { this.resourceEventType = resourceEventType; } public String getRelationshipDiff() { return this.relationshipDiff; } public void setRelationshipDiff(String relationshipDiff) { this.relationshipDiff = relationshipDiff; } public String getAvailabilityZone() { return this.availabilityZone; } public void setAvailabilityZone(String availabilityZone) { this.availabilityZone = availabilityZone; } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; } public String getResourceCreateTime() { return this.resourceCreateTime; } public void setResourceCreateTime(String resourceCreateTime) { this.resourceCreateTime = resourceCreateTime; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } public String getCaptureTime() { return this.captureTime; } public void setCaptureTime(String captureTime) { this.captureTime = captureTime; } public String getConfigurationDiff() { return this.configurationDiff; } public void setConfigurationDiff(String configurationDiff) { this.configurationDiff = configurationDiff; } public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; } public String getResourceName() { return this.resourceName; } public void setResourceName(String resourceName) { this.resourceName = resourceName; } } } @Override public GetAggregateResourceConfigurationTimelineResponse getInstance(UnmarshallerContext context) { return GetAggregateResourceConfigurationTimelineResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateResourceCountsGroupByRegionRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateResourceCountsGroupByRegionRequest extends RpcAcsRequest<GetAggregateResourceCountsGroupByRegionResponse> { private Long resourceOwnerId; private String aggregatorId; private String resourceType; private String folderId; private Long resourceAccountId; public GetAggregateResourceCountsGroupByRegionRequest() { super("Config", "2020-09-07", "GetAggregateResourceCountsGroupByRegion", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getResourceOwnerId() { return this.resourceOwnerId; } public void setResourceOwnerId(Long resourceOwnerId) { this.resourceOwnerId = resourceOwnerId; if(resourceOwnerId != null){ putQueryParameter("ResourceOwnerId", resourceOwnerId.toString()); } } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; if(resourceType != null){ putQueryParameter("ResourceType", resourceType); } } public String getFolderId() { return this.folderId; } public void setFolderId(String folderId) { this.folderId = folderId; if(folderId != null){ putQueryParameter("FolderId", folderId); } } public Long getResourceAccountId() { return this.resourceAccountId; } public void setResourceAccountId(Long resourceAccountId) { this.resourceAccountId = resourceAccountId; if(resourceAccountId != null){ putQueryParameter("ResourceAccountId", resourceAccountId.toString()); } } @Override public Class<GetAggregateResourceCountsGroupByRegionResponse> getResponseClass() { return GetAggregateResourceCountsGroupByRegionResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateResourceCountsGroupByRegionResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateResourceCountsGroupByRegionResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateResourceCountsGroupByRegionResponse extends AcsResponse { private String requestId; private List<GroupedResourceCount> discoveredResourceCountsSummary; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<GroupedResourceCount> getDiscoveredResourceCountsSummary() { return this.discoveredResourceCountsSummary; } public void setDiscoveredResourceCountsSummary(List<GroupedResourceCount> discoveredResourceCountsSummary) { this.discoveredResourceCountsSummary = discoveredResourceCountsSummary; } public static class GroupedResourceCount { private Long resourceCount; private String groupName; private String region; public Long getResourceCount() { return this.resourceCount; } public void setResourceCount(Long resourceCount) { this.resourceCount = resourceCount; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } } @Override public GetAggregateResourceCountsGroupByRegionResponse getInstance(UnmarshallerContext context) { return GetAggregateResourceCountsGroupByRegionResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateResourceCountsGroupByResourceTypeRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateResourceCountsGroupByResourceTypeRequest extends RpcAcsRequest<GetAggregateResourceCountsGroupByResourceTypeResponse> { private Long resourceOwnerId; private String aggregatorId; private String folderId; private Long resourceAccountId; private String region; public GetAggregateResourceCountsGroupByResourceTypeRequest() { super("Config", "2020-09-07", "GetAggregateResourceCountsGroupByResourceType", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getResourceOwnerId() { return this.resourceOwnerId; } public void setResourceOwnerId(Long resourceOwnerId) { this.resourceOwnerId = resourceOwnerId; if(resourceOwnerId != null){ putQueryParameter("ResourceOwnerId", resourceOwnerId.toString()); } } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } public String getFolderId() { return this.folderId; } public void setFolderId(String folderId) { this.folderId = folderId; if(folderId != null){ putQueryParameter("FolderId", folderId); } } public Long getResourceAccountId() { return this.resourceAccountId; } public void setResourceAccountId(Long resourceAccountId) { this.resourceAccountId = resourceAccountId; if(resourceAccountId != null){ putQueryParameter("ResourceAccountId", resourceAccountId.toString()); } } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("Region", region); } } @Override public Class<GetAggregateResourceCountsGroupByResourceTypeResponse> getResponseClass() { return GetAggregateResourceCountsGroupByResourceTypeResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateResourceCountsGroupByResourceTypeResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateResourceCountsGroupByResourceTypeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateResourceCountsGroupByResourceTypeResponse extends AcsResponse { private String requestId; private List<GroupedResourceCount> discoveredResourceCountsSummary; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<GroupedResourceCount> getDiscoveredResourceCountsSummary() { return this.discoveredResourceCountsSummary; } public void setDiscoveredResourceCountsSummary(List<GroupedResourceCount> discoveredResourceCountsSummary) { this.discoveredResourceCountsSummary = discoveredResourceCountsSummary; } public static class GroupedResourceCount { private Long resourceCount; private String groupName; private String resourceType; public Long getResourceCount() { return this.resourceCount; } public void setResourceCount(Long resourceCount) { this.resourceCount = resourceCount; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; } } @Override public GetAggregateResourceCountsGroupByResourceTypeResponse getInstance(UnmarshallerContext context) { return GetAggregateResourceCountsGroupByResourceTypeResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateResourceInventoryRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregateResourceInventoryRequest extends RpcAcsRequest<GetAggregateResourceInventoryResponse> { private String aggregatorId; public GetAggregateResourceInventoryRequest() { super("Config", "2020-09-07", "GetAggregateResourceInventory", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } @Override public Class<GetAggregateResourceInventoryResponse> getResponseClass() { return GetAggregateResourceInventoryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregateResourceInventoryResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregateResourceInventoryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregateResourceInventoryResponse extends AcsResponse { private String requestId; private ResourceInventory resourceInventory; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ResourceInventory getResourceInventory() { return this.resourceInventory; } public void setResourceInventory(ResourceInventory resourceInventory) { this.resourceInventory = resourceInventory; } public static class ResourceInventory { private String downloadUrl; private String status; private Long accountId; private Long resourceInventoryGenerateTime; public String getDownloadUrl() { return this.downloadUrl; } public void setDownloadUrl(String downloadUrl) { this.downloadUrl = downloadUrl; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public Long getAccountId() { return this.accountId; } public void setAccountId(Long accountId) { this.accountId = accountId; } public Long getResourceInventoryGenerateTime() { return this.resourceInventoryGenerateTime; } public void setResourceInventoryGenerateTime(Long resourceInventoryGenerateTime) { this.resourceInventoryGenerateTime = resourceInventoryGenerateTime; } } @Override public GetAggregateResourceInventoryResponse getInstance(UnmarshallerContext context) { return GetAggregateResourceInventoryResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregatorRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetAggregatorRequest extends RpcAcsRequest<GetAggregatorResponse> { private String aggregatorId; private String tag; public GetAggregatorRequest() { super("Config", "2020-09-07", "GetAggregator", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; if(aggregatorId != null){ putQueryParameter("AggregatorId", aggregatorId); } } public String getTag() { return this.tag; } public void setTag(String tag) { this.tag = tag; if(tag != null){ putQueryParameter("Tag", tag); } } @Override public Class<GetAggregatorResponse> getResponseClass() { return GetAggregatorResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetAggregatorResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetAggregatorResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetAggregatorResponse extends AcsResponse { private String requestId; private Aggregator aggregator; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Aggregator getAggregator() { return this.aggregator; } public void setAggregator(Aggregator aggregator) { this.aggregator = aggregator; } public static class Aggregator { private String aggregatorCreateTimestamp; private Long aggregatorAccountCount; private String description; private String aggregatorName; private Integer aggregatorStatus; private String aggregatorType; private Long accountId; private String aggregatorId; private String folderId; private List<AggregatorAccountsItem> aggregatorAccounts; private List<TagsItem> tags; public String getAggregatorCreateTimestamp() { return this.aggregatorCreateTimestamp; } public void setAggregatorCreateTimestamp(String aggregatorCreateTimestamp) { this.aggregatorCreateTimestamp = aggregatorCreateTimestamp; } public Long getAggregatorAccountCount() { return this.aggregatorAccountCount; } public void setAggregatorAccountCount(Long aggregatorAccountCount) { this.aggregatorAccountCount = aggregatorAccountCount; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getAggregatorName() { return this.aggregatorName; } public void setAggregatorName(String aggregatorName) { this.aggregatorName = aggregatorName; } public Integer getAggregatorStatus() { return this.aggregatorStatus; } public void setAggregatorStatus(Integer aggregatorStatus) { this.aggregatorStatus = aggregatorStatus; } public String getAggregatorType() { return this.aggregatorType; } public void setAggregatorType(String aggregatorType) { this.aggregatorType = aggregatorType; } public Long getAccountId() { return this.accountId; } public void setAccountId(Long accountId) { this.accountId = accountId; } public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; } public String getFolderId() { return this.folderId; } public void setFolderId(String folderId) { this.folderId = folderId; } public List<AggregatorAccountsItem> getAggregatorAccounts() { return this.aggregatorAccounts; } public void setAggregatorAccounts(List<AggregatorAccountsItem> aggregatorAccounts) { this.aggregatorAccounts = aggregatorAccounts; } public List<TagsItem> getTags() { return this.tags; } public void setTags(List<TagsItem> tags) { this.tags = tags; } public static class AggregatorAccountsItem { private String recorderStatus; private Long accountId; private String accountType; private String accountName; public String getRecorderStatus() { return this.recorderStatus; } public void setRecorderStatus(String recorderStatus) { this.recorderStatus = recorderStatus; } public Long getAccountId() { return this.accountId; } public void setAccountId(Long accountId) { this.accountId = accountId; } public String getAccountType() { return this.accountType; } public void setAccountType(String accountType) { this.accountType = accountType; } public String getAccountName() { return this.accountName; } public void setAccountName(String accountName) { this.accountName = accountName; } } public static class TagsItem { private String tagKey; private String tagValue; public String getTagKey() { return this.tagKey; } public void setTagKey(String tagKey) { this.tagKey = tagKey; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } } } @Override public GetAggregatorResponse getInstance(UnmarshallerContext context) { return GetAggregatorResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetCompliancePackReportRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetCompliancePackReportRequest extends RpcAcsRequest<GetCompliancePackReportResponse> { private String compliancePackId; public GetCompliancePackReportRequest() { super("Config", "2020-09-07", "GetCompliancePackReport", "config"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; if(compliancePackId != null){ putQueryParameter("CompliancePackId", compliancePackId); } } @Override public Class<GetCompliancePackReportResponse> getResponseClass() { return GetCompliancePackReportResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetCompliancePackReportResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetCompliancePackReportResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetCompliancePackReportResponse extends AcsResponse { private String requestId; private CompliancePackReport compliancePackReport; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public CompliancePackReport getCompliancePackReport() { return this.compliancePackReport; } public void setCompliancePackReport(CompliancePackReport compliancePackReport) { this.compliancePackReport = compliancePackReport; } public static class CompliancePackReport { private String reportUrl; private String reportStatus; private String compliancePackId; private Long accountId; private Long reportCreateTimestamp; public String getReportUrl() { return this.reportUrl; } public void setReportUrl(String reportUrl) { this.reportUrl = reportUrl; } public String getReportStatus() { return this.reportStatus; } public void setReportStatus(String reportStatus) { this.reportStatus = reportStatus; } public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; } public Long getAccountId() { return this.accountId; } public void setAccountId(Long accountId) { this.accountId = accountId; } public Long getReportCreateTimestamp() { return this.reportCreateTimestamp; } public void setReportCreateTimestamp(Long reportCreateTimestamp) { this.reportCreateTimestamp = reportCreateTimestamp; } } @Override public GetCompliancePackReportResponse getInstance(UnmarshallerContext context) { return GetCompliancePackReportResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetCompliancePackRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetCompliancePackRequest extends RpcAcsRequest<GetCompliancePackResponse> { private String compliancePackId; private String tag; public GetCompliancePackRequest() { super("Config", "2020-09-07", "GetCompliancePack", "config"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; if(compliancePackId != null){ putQueryParameter("CompliancePackId", compliancePackId); } } public String getTag() { return this.tag; } public void setTag(String tag) { this.tag = tag; if(tag != null){ putQueryParameter("Tag", tag); } } @Override public Class<GetCompliancePackResponse> getResponseClass() { return GetCompliancePackResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetCompliancePackResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetCompliancePackResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetCompliancePackResponse extends AcsResponse { private String requestId; private CompliancePack compliancePack; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public CompliancePack getCompliancePack() { return this.compliancePack; } public void setCompliancePack(CompliancePack compliancePack) { this.compliancePack = compliancePack; } public static class CompliancePack { private String status; private String compliancePackId; private Integer riskLevel; private String description; private String templateContent; private String compliancePackName; private Long accountId; private String compliancePackTemplateId; private Long createTimestamp; private List<ConfigRulesItem> configRules; private List<TagsItem> tags; private Scope scope; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; } public Integer getRiskLevel() { return this.riskLevel; } public void setRiskLevel(Integer riskLevel) { this.riskLevel = riskLevel; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getTemplateContent() { return this.templateContent; } public void setTemplateContent(String templateContent) { this.templateContent = templateContent; } public String getCompliancePackName() { return this.compliancePackName; } public void setCompliancePackName(String compliancePackName) { this.compliancePackName = compliancePackName; } public Long getAccountId() { return this.accountId; } public void setAccountId(Long accountId) { this.accountId = accountId; } public String getCompliancePackTemplateId() { return this.compliancePackTemplateId; } public void setCompliancePackTemplateId(String compliancePackTemplateId) { this.compliancePackTemplateId = compliancePackTemplateId; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } public List<ConfigRulesItem> getConfigRules() { return this.configRules; } public void setConfigRules(List<ConfigRulesItem> configRules) { this.configRules = configRules; } public List<TagsItem> getTags() { return this.tags; } public void setTags(List<TagsItem> tags) { this.tags = tags; } public Scope getScope() { return this.scope; } public void setScope(Scope scope) { this.scope = scope; } public static class ConfigRulesItem { private String managedRuleIdentifier; private String configRuleName; private String configRuleId; private String description; private Integer riskLevel; private String resourceTypesScope; private List<ConfigRuleParametersItem> configRuleParameters; public String getManagedRuleIdentifier() { return this.managedRuleIdentifier; } public void setManagedRuleIdentifier(String managedRuleIdentifier) { this.managedRuleIdentifier = managedRuleIdentifier; } public String getConfigRuleName() { return this.configRuleName; } public void setConfigRuleName(String configRuleName) { this.configRuleName = configRuleName; } public String getConfigRuleId() { return this.configRuleId; } public void setConfigRuleId(String configRuleId) { this.configRuleId = configRuleId; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public Integer getRiskLevel() { return this.riskLevel; } public void setRiskLevel(Integer riskLevel) { this.riskLevel = riskLevel; } public String getResourceTypesScope() { return this.resourceTypesScope; } public void setResourceTypesScope(String resourceTypesScope) { this.resourceTypesScope = resourceTypesScope; } public List<ConfigRuleParametersItem> getConfigRuleParameters() { return this.configRuleParameters; } public void setConfigRuleParameters(List<ConfigRuleParametersItem> configRuleParameters) { this.configRuleParameters = configRuleParameters; } public static class ConfigRuleParametersItem { private Boolean required; private String parameterName; private String parameterValue; public Boolean getRequired() { return this.required; } public void setRequired(Boolean required) { this.required = required; } public String getParameterName() { return this.parameterName; } public void setParameterName(String parameterName) { this.parameterName = parameterName; } public String getParameterValue() { return this.parameterValue; } public void setParameterValue(String parameterValue) { this.parameterValue = parameterValue; } } } public static class TagsItem { private String tagKey; private String tagValue; public String getTagKey() { return this.tagKey; } public void setTagKey(String tagKey) { this.tagKey = tagKey; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } } public static class Scope { private String excludeRegionIdsScope; private String resourceIdsScope; private String excludeResourceGroupIdsScope; private String tagKeyScope; private String tagValueScope; private String regionIdsScope; private String excludeResourceIdsScope; private String resourceGroupIdsScope; private List<TagsScopeItem> tagsScope; private List<ExcludeTagsScopeItem> excludeTagsScope; public String getExcludeRegionIdsScope() { return this.excludeRegionIdsScope; } public void setExcludeRegionIdsScope(String excludeRegionIdsScope) { this.excludeRegionIdsScope = excludeRegionIdsScope; } public String getResourceIdsScope() { return this.resourceIdsScope; } public void setResourceIdsScope(String resourceIdsScope) { this.resourceIdsScope = resourceIdsScope; } public String getExcludeResourceGroupIdsScope() { return this.excludeResourceGroupIdsScope; } public void setExcludeResourceGroupIdsScope(String excludeResourceGroupIdsScope) { this.excludeResourceGroupIdsScope = excludeResourceGroupIdsScope; } public String getTagKeyScope() { return this.tagKeyScope; } public void setTagKeyScope(String tagKeyScope) { this.tagKeyScope = tagKeyScope; } public String getTagValueScope() { return this.tagValueScope; } public void setTagValueScope(String tagValueScope) { this.tagValueScope = tagValueScope; } public String getRegionIdsScope() { return this.regionIdsScope; } public void setRegionIdsScope(String regionIdsScope) { this.regionIdsScope = regionIdsScope; } public String getExcludeResourceIdsScope() { return this.excludeResourceIdsScope; } public void setExcludeResourceIdsScope(String excludeResourceIdsScope) { this.excludeResourceIdsScope = excludeResourceIdsScope; } public String getResourceGroupIdsScope() { return this.resourceGroupIdsScope; } public void setResourceGroupIdsScope(String resourceGroupIdsScope) { this.resourceGroupIdsScope = resourceGroupIdsScope; } public List<TagsScopeItem> getTagsScope() { return this.tagsScope; } public void setTagsScope(List<TagsScopeItem> tagsScope) { this.tagsScope = tagsScope; } public List<ExcludeTagsScopeItem> getExcludeTagsScope() { return this.excludeTagsScope; } public void setExcludeTagsScope(List<ExcludeTagsScopeItem> excludeTagsScope) { this.excludeTagsScope = excludeTagsScope; } public static class TagsScopeItem { private String tagKey; private String tagValue; public String getTagKey() { return this.tagKey; } public void setTagKey(String tagKey) { this.tagKey = tagKey; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } } public static class ExcludeTagsScopeItem { private String tagKey; private String tagValue; public String getTagKey() { return this.tagKey; } public void setTagKey(String tagKey) { this.tagKey = tagKey; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } } } } @Override public GetCompliancePackResponse getInstance(UnmarshallerContext context) { return GetCompliancePackResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetComplianceSummaryRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetComplianceSummaryRequest extends RpcAcsRequest<GetComplianceSummaryResponse> { public GetComplianceSummaryRequest() { super("Config", "2020-09-07", "GetComplianceSummary", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } @Override public Class<GetComplianceSummaryResponse> getResponseClass() { return GetComplianceSummaryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetComplianceSummaryResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetComplianceSummaryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetComplianceSummaryResponse extends AcsResponse { private String requestId; private ComplianceSummary complianceSummary; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ComplianceSummary getComplianceSummary() { return this.complianceSummary; } public void setComplianceSummary(ComplianceSummary complianceSummary) { this.complianceSummary = complianceSummary; } public static class ComplianceSummary { private ComplianceSummaryByResource complianceSummaryByResource; private ComplianceSummaryByConfigRule complianceSummaryByConfigRule; public ComplianceSummaryByResource getComplianceSummaryByResource() { return this.complianceSummaryByResource; } public void setComplianceSummaryByResource(ComplianceSummaryByResource complianceSummaryByResource) { this.complianceSummaryByResource = complianceSummaryByResource; } public ComplianceSummaryByConfigRule getComplianceSummaryByConfigRule() { return this.complianceSummaryByConfigRule; } public void setComplianceSummaryByConfigRule(ComplianceSummaryByConfigRule complianceSummaryByConfigRule) { this.complianceSummaryByConfigRule = complianceSummaryByConfigRule; } public static class ComplianceSummaryByResource { private Integer compliantCount; private Integer nonCompliantCount; private Long complianceSummaryTimestamp; private Long totalCount; public Integer getCompliantCount() { return this.compliantCount; } public void setCompliantCount(Integer compliantCount) { this.compliantCount = compliantCount; } public Integer getNonCompliantCount() { return this.nonCompliantCount; } public void setNonCompliantCount(Integer nonCompliantCount) { this.nonCompliantCount = nonCompliantCount; } public Long getComplianceSummaryTimestamp() { return this.complianceSummaryTimestamp; } public void setComplianceSummaryTimestamp(Long complianceSummaryTimestamp) { this.complianceSummaryTimestamp = complianceSummaryTimestamp; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } } public static class ComplianceSummaryByConfigRule { private Integer compliantCount; private Integer nonCompliantCount; private Long complianceSummaryTimestamp; private Long totalCount; public Integer getCompliantCount() { return this.compliantCount; } public void setCompliantCount(Integer compliantCount) { this.compliantCount = compliantCount; } public Integer getNonCompliantCount() { return this.nonCompliantCount; } public void setNonCompliantCount(Integer nonCompliantCount) { this.nonCompliantCount = nonCompliantCount; } public Long getComplianceSummaryTimestamp() { return this.complianceSummaryTimestamp; } public void setComplianceSummaryTimestamp(Long complianceSummaryTimestamp) { this.complianceSummaryTimestamp = complianceSummaryTimestamp; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } } } @Override public GetComplianceSummaryResponse getInstance(UnmarshallerContext context) { return GetComplianceSummaryResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetConfigDeliveryChannelRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetConfigDeliveryChannelRequest extends RpcAcsRequest<GetConfigDeliveryChannelResponse> { private String deliveryChannelId; public GetConfigDeliveryChannelRequest() { super("Config", "2020-09-07", "GetConfigDeliveryChannel", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getDeliveryChannelId() { return this.deliveryChannelId; } public void setDeliveryChannelId(String deliveryChannelId) { this.deliveryChannelId = deliveryChannelId; if(deliveryChannelId != null){ putQueryParameter("DeliveryChannelId", deliveryChannelId); } } @Override public Class<GetConfigDeliveryChannelResponse> getResponseClass() { return GetConfigDeliveryChannelResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetConfigDeliveryChannelResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetConfigDeliveryChannelResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetConfigDeliveryChannelResponse extends AcsResponse { private String requestId; private DeliveryChannel deliveryChannel; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public DeliveryChannel getDeliveryChannel() { return this.deliveryChannel; } public void setDeliveryChannel(DeliveryChannel deliveryChannel) { this.deliveryChannel = deliveryChannel; } public static class DeliveryChannel { private Integer status; private String deliveryChannelId; private String deliveryChannelName; private String deliveryChannelType; private String deliveryChannelTargetArn; private String deliveryChannelAssumeRoleArn; private String deliveryChannelCondition; private String oversizedDataOSSTargetArn; private String description; private Boolean configurationSnapshot; private Boolean compliantSnapshot; private Boolean configurationItemChangeNotification; private Boolean nonCompliantNotification; private Long accountId; private String deliverySnapshotTime; public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public String getDeliveryChannelId() { return this.deliveryChannelId; } public void setDeliveryChannelId(String deliveryChannelId) { this.deliveryChannelId = deliveryChannelId; } public String getDeliveryChannelName() { return this.deliveryChannelName; } public void setDeliveryChannelName(String deliveryChannelName) { this.deliveryChannelName = deliveryChannelName; } public String getDeliveryChannelType() { return this.deliveryChannelType; } public void setDeliveryChannelType(String deliveryChannelType) { this.deliveryChannelType = deliveryChannelType; } public String getDeliveryChannelTargetArn() { return this.deliveryChannelTargetArn; } public void setDeliveryChannelTargetArn(String deliveryChannelTargetArn) { this.deliveryChannelTargetArn = deliveryChannelTargetArn; } public String getDeliveryChannelAssumeRoleArn() { return this.deliveryChannelAssumeRoleArn; } public void setDeliveryChannelAssumeRoleArn(String deliveryChannelAssumeRoleArn) { this.deliveryChannelAssumeRoleArn = deliveryChannelAssumeRoleArn; } public String getDeliveryChannelCondition() { return this.deliveryChannelCondition; } public void setDeliveryChannelCondition(String deliveryChannelCondition) { this.deliveryChannelCondition = deliveryChannelCondition; } public String getOversizedDataOSSTargetArn() { return this.oversizedDataOSSTargetArn; } public void setOversizedDataOSSTargetArn(String oversizedDataOSSTargetArn) { this.oversizedDataOSSTargetArn = oversizedDataOSSTargetArn; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public Boolean getConfigurationSnapshot() { return this.configurationSnapshot; } public void setConfigurationSnapshot(Boolean configurationSnapshot) { this.configurationSnapshot = configurationSnapshot; } public Boolean getCompliantSnapshot() { return this.compliantSnapshot; } public void setCompliantSnapshot(Boolean compliantSnapshot) { this.compliantSnapshot = compliantSnapshot; } public Boolean getConfigurationItemChangeNotification() { return this.configurationItemChangeNotification; } public void setConfigurationItemChangeNotification(Boolean configurationItemChangeNotification) { this.configurationItemChangeNotification = configurationItemChangeNotification; } public Boolean getNonCompliantNotification() { return this.nonCompliantNotification; } public void setNonCompliantNotification(Boolean nonCompliantNotification) { this.nonCompliantNotification = nonCompliantNotification; } public Long getAccountId() { return this.accountId; } public void setAccountId(Long accountId) { this.accountId = accountId; } public String getDeliverySnapshotTime() { return this.deliverySnapshotTime; } public void setDeliverySnapshotTime(String deliverySnapshotTime) { this.deliverySnapshotTime = deliverySnapshotTime; } } @Override public GetConfigDeliveryChannelResponse getInstance(UnmarshallerContext context) { return GetConfigDeliveryChannelResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetConfigRuleComplianceByPackRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetConfigRuleComplianceByPackRequest extends RpcAcsRequest<GetConfigRuleComplianceByPackResponse> { private String compliancePackId; public GetConfigRuleComplianceByPackRequest() { super("Config", "2020-09-07", "GetConfigRuleComplianceByPack", "config"); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; if(compliancePackId != null){ putQueryParameter("CompliancePackId", compliancePackId); } } @Override public Class<GetConfigRuleComplianceByPackResponse> getResponseClass() { return GetConfigRuleComplianceByPackResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetConfigRuleComplianceByPackResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetConfigRuleComplianceByPackResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetConfigRuleComplianceByPackResponse extends AcsResponse { private String requestId; private ConfigRuleComplianceResult configRuleComplianceResult; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ConfigRuleComplianceResult getConfigRuleComplianceResult() { return this.configRuleComplianceResult; } public void setConfigRuleComplianceResult(ConfigRuleComplianceResult configRuleComplianceResult) { this.configRuleComplianceResult = configRuleComplianceResult; } public static class ConfigRuleComplianceResult { private String compliancePackId; private Integer nonCompliantCount; private Integer totalCount; private List<ConfigRuleCompliancesItem> configRuleCompliances; public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; } public Integer getNonCompliantCount() { return this.nonCompliantCount; } public void setNonCompliantCount(Integer nonCompliantCount) { this.nonCompliantCount = nonCompliantCount; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<ConfigRuleCompliancesItem> getConfigRuleCompliances() { return this.configRuleCompliances; } public void setConfigRuleCompliances(List<ConfigRuleCompliancesItem> configRuleCompliances) { this.configRuleCompliances = configRuleCompliances; } public static class ConfigRuleCompliancesItem { private String complianceType; private String configRuleName; private String configRuleId; public String getComplianceType() { return this.complianceType; } public void setComplianceType(String complianceType) { this.complianceType = complianceType; } public String getConfigRuleName() { return this.configRuleName; } public void setConfigRuleName(String configRuleName) { this.configRuleName = configRuleName; } public String getConfigRuleId() { return this.configRuleId; } public void setConfigRuleId(String configRuleId) { this.configRuleId = configRuleId; } } } @Override public GetConfigRuleComplianceByPackResponse getInstance(UnmarshallerContext context) { return GetConfigRuleComplianceByPackResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetConfigRuleRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetConfigRuleRequest extends RpcAcsRequest<GetConfigRuleResponse> { private String configRuleId; private String tag; public GetConfigRuleRequest() { super("Config", "2020-09-07", "GetConfigRule", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getConfigRuleId() { return this.configRuleId; } public void setConfigRuleId(String configRuleId) { this.configRuleId = configRuleId; if(configRuleId != null){ putQueryParameter("ConfigRuleId", configRuleId); } } public String getTag() { return this.tag; } public void setTag(String tag) { this.tag = tag; if(tag != null){ putQueryParameter("Tag", tag); } } @Override public Class<GetConfigRuleResponse> getResponseClass() { return GetConfigRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetConfigRuleResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetConfigRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetConfigRuleResponse extends AcsResponse { private String requestId; private ConfigRule configRule; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ConfigRule getConfigRule() { return this.configRule; } public void setConfigRule(ConfigRule configRule) { this.configRule = configRule; } public static class ConfigRule { private Long accountId; private String configRuleArn; private String configRuleId; private String configRuleName; private String configRuleState; private String configRuleTriggerTypes; private Long createTimestamp; private String description; private String excludeRegionIdsScope; private String excludeResourceGroupIdsScope; private String excludeResourceIdsScope; private Map<Object,Object> inputParameters; private String maximumExecutionFrequency; private Long modifiedTimestamp; private String regionIdsScope; private String resourceGroupIdsScope; private String resourceIdsScope; private String resourceTypesScope; private Integer riskLevel; private String serviceChannel; private String tagKeyLogicScope; private String tagKeyScope; private String tagValueScope; private String resourceNameScope; private String extendContent; private List<ComplianceExcludeTagsScope> excludeTagsScope; private List<TagsScopeItem> tagsScope; private List<TagsItem> tags; private Compliance compliance; private ConfigRuleEvaluationStatus configRuleEvaluationStatus; private CreateBy createBy; private ManagedRule managedRule; private Scope scope; private Source source; public Long getAccountId() { return this.accountId; } public void setAccountId(Long accountId) { this.accountId = accountId; } public String getConfigRuleArn() { return this.configRuleArn; } public void setConfigRuleArn(String configRuleArn) { this.configRuleArn = configRuleArn; } public String getConfigRuleId() { return this.configRuleId; } public void setConfigRuleId(String configRuleId) { this.configRuleId = configRuleId; } public String getConfigRuleName() { return this.configRuleName; } public void setConfigRuleName(String configRuleName) { this.configRuleName = configRuleName; } public String getConfigRuleState() { return this.configRuleState; } public void setConfigRuleState(String configRuleState) { this.configRuleState = configRuleState; } public String getConfigRuleTriggerTypes() { return this.configRuleTriggerTypes; } public void setConfigRuleTriggerTypes(String configRuleTriggerTypes) { this.configRuleTriggerTypes = configRuleTriggerTypes; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getExcludeRegionIdsScope() { return this.excludeRegionIdsScope; } public void setExcludeRegionIdsScope(String excludeRegionIdsScope) { this.excludeRegionIdsScope = excludeRegionIdsScope; } public String getExcludeResourceGroupIdsScope() { return this.excludeResourceGroupIdsScope; } public void setExcludeResourceGroupIdsScope(String excludeResourceGroupIdsScope) { this.excludeResourceGroupIdsScope = excludeResourceGroupIdsScope; } public String getExcludeResourceIdsScope() { return this.excludeResourceIdsScope; } public void setExcludeResourceIdsScope(String excludeResourceIdsScope) { this.excludeResourceIdsScope = excludeResourceIdsScope; } public Map<Object,Object> getInputParameters() { return this.inputParameters; } public void setInputParameters(Map<Object,Object> inputParameters) { this.inputParameters = inputParameters; } public String getMaximumExecutionFrequency() { return this.maximumExecutionFrequency; } public void setMaximumExecutionFrequency(String maximumExecutionFrequency) { this.maximumExecutionFrequency = maximumExecutionFrequency; } public Long getModifiedTimestamp() { return this.modifiedTimestamp; } public void setModifiedTimestamp(Long modifiedTimestamp) { this.modifiedTimestamp = modifiedTimestamp; } public String getRegionIdsScope() { return this.regionIdsScope; } public void setRegionIdsScope(String regionIdsScope) { this.regionIdsScope = regionIdsScope; } public String getResourceGroupIdsScope() { return this.resourceGroupIdsScope; } public void setResourceGroupIdsScope(String resourceGroupIdsScope) { this.resourceGroupIdsScope = resourceGroupIdsScope; } public String getResourceIdsScope() { return this.resourceIdsScope; } public void setResourceIdsScope(String resourceIdsScope) { this.resourceIdsScope = resourceIdsScope; } public String getResourceTypesScope() { return this.resourceTypesScope; } public void setResourceTypesScope(String resourceTypesScope) { this.resourceTypesScope = resourceTypesScope; } public Integer getRiskLevel() { return this.riskLevel; } public void setRiskLevel(Integer riskLevel) { this.riskLevel = riskLevel; } public String getServiceChannel() { return this.serviceChannel; } public void setServiceChannel(String serviceChannel) { this.serviceChannel = serviceChannel; } public String getTagKeyLogicScope() { return this.tagKeyLogicScope; } public void setTagKeyLogicScope(String tagKeyLogicScope) { this.tagKeyLogicScope = tagKeyLogicScope; } public String getTagKeyScope() { return this.tagKeyScope; } public void setTagKeyScope(String tagKeyScope) { this.tagKeyScope = tagKeyScope; } public String getTagValueScope() { return this.tagValueScope; } public void setTagValueScope(String tagValueScope) { this.tagValueScope = tagValueScope; } public String getResourceNameScope() { return this.resourceNameScope; } public void setResourceNameScope(String resourceNameScope) { this.resourceNameScope = resourceNameScope; } public String getExtendContent() { return this.extendContent; } public void setExtendContent(String extendContent) { this.extendContent = extendContent; } public List<ComplianceExcludeTagsScope> getExcludeTagsScope() { return this.excludeTagsScope; } public void setExcludeTagsScope(List<ComplianceExcludeTagsScope> excludeTagsScope) { this.excludeTagsScope = excludeTagsScope; } public List<TagsScopeItem> getTagsScope() { return this.tagsScope; } public void setTagsScope(List<TagsScopeItem> tagsScope) { this.tagsScope = tagsScope; } public List<TagsItem> getTags() { return this.tags; } public void setTags(List<TagsItem> tags) { this.tags = tags; } public Compliance getCompliance() { return this.compliance; } public void setCompliance(Compliance compliance) { this.compliance = compliance; } public ConfigRuleEvaluationStatus getConfigRuleEvaluationStatus() { return this.configRuleEvaluationStatus; } public void setConfigRuleEvaluationStatus(ConfigRuleEvaluationStatus configRuleEvaluationStatus) { this.configRuleEvaluationStatus = configRuleEvaluationStatus; } public CreateBy getCreateBy() { return this.createBy; } public void setCreateBy(CreateBy createBy) { this.createBy = createBy; } public ManagedRule getManagedRule() { return this.managedRule; } public void setManagedRule(ManagedRule managedRule) { this.managedRule = managedRule; } public Scope getScope() { return this.scope; } public void setScope(Scope scope) { this.scope = scope; } public Source getSource() { return this.source; } public void setSource(Source source) { this.source = source; } public static class ComplianceExcludeTagsScope { private String tagKey; private String tagValue; public String getTagKey() { return this.tagKey; } public void setTagKey(String tagKey) { this.tagKey = tagKey; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } } public static class TagsScopeItem { private String tagKey; private String tagValue; public String getTagKey() { return this.tagKey; } public void setTagKey(String tagKey) { this.tagKey = tagKey; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } } public static class TagsItem { private String tagKey; private String tagValue; public String getTagKey() { return this.tagKey; } public void setTagKey(String tagKey) { this.tagKey = tagKey; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } } public static class Compliance { private String complianceType; private Integer count; public String getComplianceType() { return this.complianceType; } public void setComplianceType(String complianceType) { this.complianceType = complianceType; } public Integer getCount() { return this.count; } public void setCount(Integer count) { this.count = count; } } public static class ConfigRuleEvaluationStatus { private Long firstActivatedTimestamp; private Boolean firstEvaluationStarted; private String lastErrorCode; private String lastErrorMessage; private Long lastFailedEvaluationTimestamp; private Long lastFailedInvocationTimestamp; private Long lastSuccessfulEvaluationTimestamp; private Long lastSuccessfulInvocationTimestamp; public Long getFirstActivatedTimestamp() { return this.firstActivatedTimestamp; } public void setFirstActivatedTimestamp(Long firstActivatedTimestamp) { this.firstActivatedTimestamp = firstActivatedTimestamp; } public Boolean getFirstEvaluationStarted() { return this.firstEvaluationStarted; } public void setFirstEvaluationStarted(Boolean firstEvaluationStarted) { this.firstEvaluationStarted = firstEvaluationStarted; } public String getLastErrorCode() { return this.lastErrorCode; } public void setLastErrorCode(String lastErrorCode) { this.lastErrorCode = lastErrorCode; } public String getLastErrorMessage() { return this.lastErrorMessage; } public void setLastErrorMessage(String lastErrorMessage) { this.lastErrorMessage = lastErrorMessage; } public Long getLastFailedEvaluationTimestamp() { return this.lastFailedEvaluationTimestamp; } public void setLastFailedEvaluationTimestamp(Long lastFailedEvaluationTimestamp) { this.lastFailedEvaluationTimestamp = lastFailedEvaluationTimestamp; } public Long getLastFailedInvocationTimestamp() { return this.lastFailedInvocationTimestamp; } public void setLastFailedInvocationTimestamp(Long lastFailedInvocationTimestamp) { this.lastFailedInvocationTimestamp = lastFailedInvocationTimestamp; } public Long getLastSuccessfulEvaluationTimestamp() { return this.lastSuccessfulEvaluationTimestamp; } public void setLastSuccessfulEvaluationTimestamp(Long lastSuccessfulEvaluationTimestamp) { this.lastSuccessfulEvaluationTimestamp = lastSuccessfulEvaluationTimestamp; } public Long getLastSuccessfulInvocationTimestamp() { return this.lastSuccessfulInvocationTimestamp; } public void setLastSuccessfulInvocationTimestamp(Long lastSuccessfulInvocationTimestamp) { this.lastSuccessfulInvocationTimestamp = lastSuccessfulInvocationTimestamp; } } public static class CreateBy { private String aggregatorId; private String aggregatorName; private String compliancePackId; private String compliancePackName; private String creatorId; private String creatorName; private String creatorType; public String getAggregatorId() { return this.aggregatorId; } public void setAggregatorId(String aggregatorId) { this.aggregatorId = aggregatorId; } public String getAggregatorName() { return this.aggregatorName; } public void setAggregatorName(String aggregatorName) { this.aggregatorName = aggregatorName; } public String getCompliancePackId() { return this.compliancePackId; } public void setCompliancePackId(String compliancePackId) { this.compliancePackId = compliancePackId; } public String getCompliancePackName() { return this.compliancePackName; } public void setCompliancePackName(String compliancePackName) { this.compliancePackName = compliancePackName; } public String getCreatorId() { return this.creatorId; } public void setCreatorId(String creatorId) { this.creatorId = creatorId; } public String getCreatorName() { return this.creatorName; } public void setCreatorName(String creatorName) { this.creatorName = creatorName; } public String getCreatorType() { return this.creatorType; } public void setCreatorType(String creatorType) { this.creatorType = creatorType; } } public static class ManagedRule { private Map<Object,Object> compulsoryInputParameterDetails; private String description; private String helpUrl; private String identifier; private String managedRuleName; private Map<Object,Object> optionalInputParameterDetails; private List<SourceDetailsItem> sourceDetails; private List<String> labels; public Map<Object,Object> getCompulsoryInputParameterDetails() { return this.compulsoryInputParameterDetails; } public void setCompulsoryInputParameterDetails(Map<Object,Object> compulsoryInputParameterDetails) { this.compulsoryInputParameterDetails = compulsoryInputParameterDetails; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getHelpUrl() { return this.helpUrl; } public void setHelpUrl(String helpUrl) { this.helpUrl = helpUrl; } public String getIdentifier() { return this.identifier; } public void setIdentifier(String identifier) { this.identifier = identifier; } public String getManagedRuleName() { return this.managedRuleName; } public void setManagedRuleName(String managedRuleName) { this.managedRuleName = managedRuleName; } public Map<Object,Object> getOptionalInputParameterDetails() { return this.optionalInputParameterDetails; } public void setOptionalInputParameterDetails(Map<Object,Object> optionalInputParameterDetails) { this.optionalInputParameterDetails = optionalInputParameterDetails; } public List<SourceDetailsItem> getSourceDetails() { return this.sourceDetails; } public void setSourceDetails(List<SourceDetailsItem> sourceDetails) { this.sourceDetails = sourceDetails; } public List<String> getLabels() { return this.labels; } public void setLabels(List<String> labels) { this.labels = labels; } public static class SourceDetailsItem { private String eventSource; private String maximumExecutionFrequency; private String messageType; public String getEventSource() { return this.eventSource; } public void setEventSource(String eventSource) { this.eventSource = eventSource; } public String getMaximumExecutionFrequency() { return this.maximumExecutionFrequency; } public void setMaximumExecutionFrequency(String maximumExecutionFrequency) { this.maximumExecutionFrequency = maximumExecutionFrequency; } public String getMessageType() { return this.messageType; } public void setMessageType(String messageType) { this.messageType = messageType; } } } public static class Scope { private List<String> complianceResourceTypes; public List<String> getComplianceResourceTypes() { return this.complianceResourceTypes; } public void setComplianceResourceTypes(List<String> complianceResourceTypes) { this.complianceResourceTypes = complianceResourceTypes; } } public static class Source { private String conditions; private String identifier; private String owner; private List<SourceDetailsItem2> sourceDetails1; private List<Map<Object,Object>> sourceConditions; public String getConditions() { return this.conditions; } public void setConditions(String conditions) { this.conditions = conditions; } public String getIdentifier() { return this.identifier; } public void setIdentifier(String identifier) { this.identifier = identifier; } public String getOwner() { return this.owner; } public void setOwner(String owner) { this.owner = owner; } public List<SourceDetailsItem2> getSourceDetails1() { return this.sourceDetails1; } public void setSourceDetails1(List<SourceDetailsItem2> sourceDetails1) { this.sourceDetails1 = sourceDetails1; } public List<Map<Object,Object>> getSourceConditions() { return this.sourceConditions; } public void setSourceConditions(List<Map<Object,Object>> sourceConditions) { this.sourceConditions = sourceConditions; } public static class SourceDetailsItem2 { private String eventSource; private String maximumExecutionFrequency; private String messageType; public String getEventSource() { return this.eventSource; } public void setEventSource(String eventSource) { this.eventSource = eventSource; } public String getMaximumExecutionFrequency() { return this.maximumExecutionFrequency; } public void setMaximumExecutionFrequency(String maximumExecutionFrequency) { this.maximumExecutionFrequency = maximumExecutionFrequency; } public String getMessageType() { return this.messageType; } public void setMessageType(String messageType) { this.messageType = messageType; } } } } @Override public GetConfigRuleResponse getInstance(UnmarshallerContext context) { return GetConfigRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetConfigRuleSummaryByRiskLevelRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetConfigRuleSummaryByRiskLevelRequest extends RpcAcsRequest<GetConfigRuleSummaryByRiskLevelResponse> { public GetConfigRuleSummaryByRiskLevelRequest() { super("Config", "2020-09-07", "GetConfigRuleSummaryByRiskLevel", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } @Override public Class<GetConfigRuleSummaryByRiskLevelResponse> getResponseClass() { return GetConfigRuleSummaryByRiskLevelResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetConfigRuleSummaryByRiskLevelResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetConfigRuleSummaryByRiskLevelResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetConfigRuleSummaryByRiskLevelResponse extends AcsResponse { private String requestId; private List<Data> configRuleSummaries; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<Data> getConfigRuleSummaries() { return this.configRuleSummaries; } public void setConfigRuleSummaries(List<Data> configRuleSummaries) { this.configRuleSummaries = configRuleSummaries; } public static class Data { private Integer compliantCount; private Integer nonCompliantCount; private Integer riskLevel; public Integer getCompliantCount() { return this.compliantCount; } public void setCompliantCount(Integer compliantCount) { this.compliantCount = compliantCount; } public Integer getNonCompliantCount() { return this.nonCompliantCount; } public void setNonCompliantCount(Integer nonCompliantCount) { this.nonCompliantCount = nonCompliantCount; } public Integer getRiskLevel() { return this.riskLevel; } public void setRiskLevel(Integer riskLevel) { this.riskLevel = riskLevel; } } @Override public GetConfigRuleSummaryByRiskLevelResponse getInstance(UnmarshallerContext context) { return GetConfigRuleSummaryByRiskLevelResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetConfigRulesReportRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetConfigRulesReportRequest extends RpcAcsRequest<GetConfigRulesReportResponse> { private String reportId; public GetConfigRulesReportRequest() { super("Config", "2020-09-07", "GetConfigRulesReport", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getReportId() { return this.reportId; } public void setReportId(String reportId) { this.reportId = reportId; if(reportId != null){ putQueryParameter("ReportId", reportId); } } @Override public Class<GetConfigRulesReportResponse> getResponseClass() { return GetConfigRulesReportResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetConfigRulesReportResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetConfigRulesReportResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetConfigRulesReportResponse extends AcsResponse { private String requestId; private ConfigRulesReport configRulesReport; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ConfigRulesReport getConfigRulesReport() { return this.configRulesReport; } public void setConfigRulesReport(ConfigRulesReport configRulesReport) { this.configRulesReport = configRulesReport; } public static class ConfigRulesReport { private String reportStatus; private String reportUrl; private Long accountId; private Long reportCreateTimestamp; private String reportId; public String getReportStatus() { return this.reportStatus; } public void setReportStatus(String reportStatus) { this.reportStatus = reportStatus; } public String getReportUrl() { return this.reportUrl; } public void setReportUrl(String reportUrl) { this.reportUrl = reportUrl; } public Long getAccountId() { return this.accountId; } public void setAccountId(Long accountId) { this.accountId = accountId; } public Long getReportCreateTimestamp() { return this.reportCreateTimestamp; } public void setReportCreateTimestamp(Long reportCreateTimestamp) { this.reportCreateTimestamp = reportCreateTimestamp; } public String getReportId() { return this.reportId; } public void setReportId(String reportId) { this.reportId = reportId; } } @Override public GetConfigRulesReportResponse getInstance(UnmarshallerContext context) { return GetConfigRulesReportResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetConfigurationRecorderRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetConfigurationRecorderRequest extends RpcAcsRequest<GetConfigurationRecorderResponse> { public GetConfigurationRecorderRequest() { super("Config", "2020-09-07", "GetConfigurationRecorder", "config"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } @Override public Class<GetConfigurationRecorderResponse> getResponseClass() { return GetConfigurationRecorderResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetConfigurationRecorderResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetConfigurationRecorderResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetConfigurationRecorderResponse extends AcsResponse { private String requestId; private ConfigurationRecorder configurationRecorder; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public ConfigurationRecorder getConfigurationRecorder() { return this.configurationRecorder; } public void setConfigurationRecorder(ConfigurationRecorder configurationRecorder) { this.configurationRecorder = configurationRecorder; } public static class ConfigurationRecorder { private String configurationRecorderStatus; private List<String> resourceTypes; public String getConfigurationRecorderStatus() { return this.configurationRecorderStatus; } public void setConfigurationRecorderStatus(String configurationRecorderStatus) { this.configurationRecorderStatus = configurationRecorderStatus; } public List<String> getResourceTypes() { return this.resourceTypes; } public void setResourceTypes(List<String> resourceTypes) { this.resourceTypes = resourceTypes; } } @Override public GetConfigurationRecorderResponse getInstance(UnmarshallerContext context) { return GetConfigurationRecorderResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetDiscoveredResourceCountsGroupByRegionRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetDiscoveredResourceCountsGroupByRegionRequest extends RpcAcsRequest<GetDiscoveredResourceCountsGroupByRegionResponse> { private String resourceType; public GetDiscoveredResourceCountsGroupByRegionRequest() { super("Config", "2020-09-07", "GetDiscoveredResourceCountsGroupByRegion", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; if(resourceType != null){ putQueryParameter("ResourceType", resourceType); } } @Override public Class<GetDiscoveredResourceCountsGroupByRegionResponse> getResponseClass() { return GetDiscoveredResourceCountsGroupByRegionResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetDiscoveredResourceCountsGroupByRegionResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetDiscoveredResourceCountsGroupByRegionResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetDiscoveredResourceCountsGroupByRegionResponse extends AcsResponse { private String requestId; private List<GroupedResourceCount> discoveredResourceCountsSummary; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<GroupedResourceCount> getDiscoveredResourceCountsSummary() { return this.discoveredResourceCountsSummary; } public void setDiscoveredResourceCountsSummary(List<GroupedResourceCount> discoveredResourceCountsSummary) { this.discoveredResourceCountsSummary = discoveredResourceCountsSummary; } public static class GroupedResourceCount { private Long resourceCount; private String groupName; private String region; public Long getResourceCount() { return this.resourceCount; } public void setResourceCount(Long resourceCount) { this.resourceCount = resourceCount; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; } } @Override public GetDiscoveredResourceCountsGroupByRegionResponse getInstance(UnmarshallerContext context) { return GetDiscoveredResourceCountsGroupByRegionResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetDiscoveredResourceCountsGroupByResourceTypeRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetDiscoveredResourceCountsGroupByResourceTypeRequest extends RpcAcsRequest<GetDiscoveredResourceCountsGroupByResourceTypeResponse> { private String region; public GetDiscoveredResourceCountsGroupByResourceTypeRequest() { super("Config", "2020-09-07", "GetDiscoveredResourceCountsGroupByResourceType", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("Region", region); } } @Override public Class<GetDiscoveredResourceCountsGroupByResourceTypeResponse> getResponseClass() { return GetDiscoveredResourceCountsGroupByResourceTypeResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetDiscoveredResourceCountsGroupByResourceTypeResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.config.transform.v20200907.GetDiscoveredResourceCountsGroupByResourceTypeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetDiscoveredResourceCountsGroupByResourceTypeResponse extends AcsResponse { private String requestId; private List<GroupedResourceCount> discoveredResourceCountsSummary; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<GroupedResourceCount> getDiscoveredResourceCountsSummary() { return this.discoveredResourceCountsSummary; } public void setDiscoveredResourceCountsSummary(List<GroupedResourceCount> discoveredResourceCountsSummary) { this.discoveredResourceCountsSummary = discoveredResourceCountsSummary; } public static class GroupedResourceCount { private Long resourceCount; private String groupName; private String resourceType; public Long getResourceCount() { return this.resourceCount; } public void setResourceCount(Long resourceCount) { this.resourceCount = resourceCount; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; } } @Override public GetDiscoveredResourceCountsGroupByResourceTypeResponse getInstance(UnmarshallerContext context) { return GetDiscoveredResourceCountsGroupByResourceTypeResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model
java-sources/com/aliyun/aliyun-java-sdk-config/2.2.18/com/aliyuncs/config/model/v20200907/GetDiscoveredResourceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.config.model.v20200907; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.config.Endpoint; /** * @author auto create * @version */ public class GetDiscoveredResourceRequest extends RpcAcsRequest<GetDiscoveredResourceResponse> { private String resourceId; private Integer complianceOption; private String resourceType; private String region; public GetDiscoveredResourceRequest() { super("Config", "2020-09-07", "GetDiscoveredResource", "config"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; if(resourceId != null){ putQueryParameter("ResourceId", resourceId); } } public Integer getComplianceOption() { return this.complianceOption; } public void setComplianceOption(Integer complianceOption) { this.complianceOption = complianceOption; if(complianceOption != null){ putQueryParameter("ComplianceOption", complianceOption.toString()); } } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; if(resourceType != null){ putQueryParameter("ResourceType", resourceType); } } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("Region", region); } } @Override public Class<GetDiscoveredResourceResponse> getResponseClass() { return GetDiscoveredResourceResponse.class; } }