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

com.pulumi.scm.outputs.GetAntiSpywareSignatureListDataSignatureStandard Maven / Gradle / Ivy

There is a newer version: 0.2.0-alpha.1732774506
Show newest version
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.scm.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import com.pulumi.scm.outputs.GetAntiSpywareSignatureListDataSignatureStandardAndCondition;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Objects;

@CustomType
public final class GetAntiSpywareSignatureListDataSignatureStandard {
    /**
     * @return The AndConditions param.
     * 
     */
    private List andConditions;
    /**
     * @return The Comment param. String length must not exceed 256 characters.
     * 
     */
    private String comment;
    /**
     * @return The Name param.
     * 
     */
    private String name;
    /**
     * @return The OrderFree param. Default: `false`.
     * 
     */
    private Boolean orderFree;
    /**
     * @return The Scope param. String must be one of these: `"protocol-data-unit"`, `"session"`.
     * 
     */
    private String scope;

    private GetAntiSpywareSignatureListDataSignatureStandard() {}
    /**
     * @return The AndConditions param.
     * 
     */
    public List andConditions() {
        return this.andConditions;
    }
    /**
     * @return The Comment param. String length must not exceed 256 characters.
     * 
     */
    public String comment() {
        return this.comment;
    }
    /**
     * @return The Name param.
     * 
     */
    public String name() {
        return this.name;
    }
    /**
     * @return The OrderFree param. Default: `false`.
     * 
     */
    public Boolean orderFree() {
        return this.orderFree;
    }
    /**
     * @return The Scope param. String must be one of these: `"protocol-data-unit"`, `"session"`.
     * 
     */
    public String scope() {
        return this.scope;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(GetAntiSpywareSignatureListDataSignatureStandard defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private List andConditions;
        private String comment;
        private String name;
        private Boolean orderFree;
        private String scope;
        public Builder() {}
        public Builder(GetAntiSpywareSignatureListDataSignatureStandard defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.andConditions = defaults.andConditions;
    	      this.comment = defaults.comment;
    	      this.name = defaults.name;
    	      this.orderFree = defaults.orderFree;
    	      this.scope = defaults.scope;
        }

        @CustomType.Setter
        public Builder andConditions(List andConditions) {
            if (andConditions == null) {
              throw new MissingRequiredPropertyException("GetAntiSpywareSignatureListDataSignatureStandard", "andConditions");
            }
            this.andConditions = andConditions;
            return this;
        }
        public Builder andConditions(GetAntiSpywareSignatureListDataSignatureStandardAndCondition... andConditions) {
            return andConditions(List.of(andConditions));
        }
        @CustomType.Setter
        public Builder comment(String comment) {
            if (comment == null) {
              throw new MissingRequiredPropertyException("GetAntiSpywareSignatureListDataSignatureStandard", "comment");
            }
            this.comment = comment;
            return this;
        }
        @CustomType.Setter
        public Builder name(String name) {
            if (name == null) {
              throw new MissingRequiredPropertyException("GetAntiSpywareSignatureListDataSignatureStandard", "name");
            }
            this.name = name;
            return this;
        }
        @CustomType.Setter
        public Builder orderFree(Boolean orderFree) {
            if (orderFree == null) {
              throw new MissingRequiredPropertyException("GetAntiSpywareSignatureListDataSignatureStandard", "orderFree");
            }
            this.orderFree = orderFree;
            return this;
        }
        @CustomType.Setter
        public Builder scope(String scope) {
            if (scope == null) {
              throw new MissingRequiredPropertyException("GetAntiSpywareSignatureListDataSignatureStandard", "scope");
            }
            this.scope = scope;
            return this;
        }
        public GetAntiSpywareSignatureListDataSignatureStandard build() {
            final var _resultValue = new GetAntiSpywareSignatureListDataSignatureStandard();
            _resultValue.andConditions = andConditions;
            _resultValue.comment = comment;
            _resultValue.name = name;
            _resultValue.orderFree = orderFree;
            _resultValue.scope = scope;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy