All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.waf_openapi20211001.models.DescribeDefenseResourceNamesResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.waf_openapi20211001.models;

import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * 
 * {@link DescribeDefenseResourceNamesResponseBody} extends {@link TeaModel}
 *
 * 

DescribeDefenseResourceNamesResponseBody

*/ public class DescribeDefenseResourceNamesResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("Resources") private java.util.List < String > resources; @com.aliyun.core.annotation.NameInMap("TotalCount") private Long totalCount; private DescribeDefenseResourceNamesResponseBody(Builder builder) { this.requestId = builder.requestId; this.resources = builder.resources; this.totalCount = builder.totalCount; } public static Builder builder() { return new Builder(); } public static DescribeDefenseResourceNamesResponseBody create() { return builder().build(); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return resources */ public java.util.List < String > getResources() { return this.resources; } /** * @return totalCount */ public Long getTotalCount() { return this.totalCount; } public static final class Builder { private String requestId; private java.util.List < String > resources; private Long totalCount; /** *

The ID of the request.

* * example: *

C1823E96-EF4B-5BD2-9E02-1D18****3ED8

*/ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** *

The names of the protected objects.

*/ public Builder resources(java.util.List < String > resources) { this.resources = resources; return this; } /** *

The total number of entries returned.

* * example: *

75

*/ public Builder totalCount(Long totalCount) { this.totalCount = totalCount; return this; } public DescribeDefenseResourceNamesResponseBody build() { return new DescribeDefenseResourceNamesResponseBody(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy