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

com.aliyun.sdk.service.cloud_siem20220616.models.DescribeAutomateResponseConfigPlayBooksResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloud_siem20220616.models;

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

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

DescribeAutomateResponseConfigPlayBooksResponseBody

*/ public class DescribeAutomateResponseConfigPlayBooksResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Code") private Integer code; @com.aliyun.core.annotation.NameInMap("Data") private java.util.List < Data> data; @com.aliyun.core.annotation.NameInMap("Message") private String message; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("Success") private Boolean success; private DescribeAutomateResponseConfigPlayBooksResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static DescribeAutomateResponseConfigPlayBooksResponseBody create() { return builder().build(); } /** * @return code */ public Integer getCode() { return this.code; } /** * @return data */ public java.util.List < Data> getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private Integer code; private java.util.List < Data> data; private String message; private String requestId; private Boolean success; /** * The HTTP status code. */ public Builder code(Integer code) { this.code = code; return this; } /** * The data returned. */ public Builder data(java.util.List < Data> data) { this.data = data; return this; } /** * The returned message. */ public Builder message(String message) { this.message = message; return this; } /** * The request ID. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Indicates whether the request was successful. Valid values: *

* * * true * * false */ public Builder success(Boolean success) { this.success = success; return this; } public DescribeAutomateResponseConfigPlayBooksResponseBody build() { return new DescribeAutomateResponseConfigPlayBooksResponseBody(this); } } public static class Data extends TeaModel { @com.aliyun.core.annotation.NameInMap("Description") private String description; @com.aliyun.core.annotation.NameInMap("DisplayName") private String displayName; @com.aliyun.core.annotation.NameInMap("Name") private String name; @com.aliyun.core.annotation.NameInMap("ParamType") private String paramType; @com.aliyun.core.annotation.NameInMap("Uuid") private String uuid; private Data(Builder builder) { this.description = builder.description; this.displayName = builder.displayName; this.name = builder.name; this.paramType = builder.paramType; this.uuid = builder.uuid; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return description */ public String getDescription() { return this.description; } /** * @return displayName */ public String getDisplayName() { return this.displayName; } /** * @return name */ public String getName() { return this.name; } /** * @return paramType */ public String getParamType() { return this.paramType; } /** * @return uuid */ public String getUuid() { return this.uuid; } public static final class Builder { private String description; private String displayName; private String name; private String paramType; private String uuid; /** * The description of the playbook. */ public Builder description(String description) { this.description = description; return this; } /** * The display name of the playbook. */ public Builder displayName(String displayName) { this.displayName = displayName; return this; } /** * The unique identifier name of the playbook. */ public Builder name(String name) { this.name = name; return this; } /** * The input parameter template of the playbook. Valid values: *

* * * template-ip: IP address * * template-process: process * * template-filee: file */ public Builder paramType(String paramType) { this.paramType = paramType; return this; } /** * The UUID of the playbook. */ public Builder uuid(String uuid) { this.uuid = uuid; return this; } public Data build() { return new Data(this); } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy