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

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

// *** 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 java.lang.Integer;
import java.util.Objects;

@CustomType
public final class GetHipObjectListDataAntiMalwareCriteriaVirdefVersionNotWithin {
    /**
     * @return specify time in days. Value must be between 1 and 65535.
     * 
     */
    private Integer days;
    /**
     * @return specify versions range. Value must be between 1 and 65535.
     * 
     */
    private Integer versions;

    private GetHipObjectListDataAntiMalwareCriteriaVirdefVersionNotWithin() {}
    /**
     * @return specify time in days. Value must be between 1 and 65535.
     * 
     */
    public Integer days() {
        return this.days;
    }
    /**
     * @return specify versions range. Value must be between 1 and 65535.
     * 
     */
    public Integer versions() {
        return this.versions;
    }

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

    public static Builder builder(GetHipObjectListDataAntiMalwareCriteriaVirdefVersionNotWithin defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private Integer days;
        private Integer versions;
        public Builder() {}
        public Builder(GetHipObjectListDataAntiMalwareCriteriaVirdefVersionNotWithin defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.days = defaults.days;
    	      this.versions = defaults.versions;
        }

        @CustomType.Setter
        public Builder days(Integer days) {
            if (days == null) {
              throw new MissingRequiredPropertyException("GetHipObjectListDataAntiMalwareCriteriaVirdefVersionNotWithin", "days");
            }
            this.days = days;
            return this;
        }
        @CustomType.Setter
        public Builder versions(Integer versions) {
            if (versions == null) {
              throw new MissingRequiredPropertyException("GetHipObjectListDataAntiMalwareCriteriaVirdefVersionNotWithin", "versions");
            }
            this.versions = versions;
            return this;
        }
        public GetHipObjectListDataAntiMalwareCriteriaVirdefVersionNotWithin build() {
            final var _resultValue = new GetHipObjectListDataAntiMalwareCriteriaVirdefVersionNotWithin();
            _resultValue.days = days;
            _resultValue.versions = versions;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy