com.pulumi.scm.outputs.GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotWithin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scm Show documentation
Show all versions of scm Show documentation
A Pulumi package for managing resources on Strata Cloud Manager.
// *** 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 GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotWithin {
/**
* @return specify time in days. Value must be between 1 and 65535.
*
*/
private Integer days;
/**
* @return specify time in hours. Value must be between 1 and 65535.
*
*/
private Integer hours;
private GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotWithin() {}
/**
* @return specify time in days. Value must be between 1 and 65535.
*
*/
public Integer days() {
return this.days;
}
/**
* @return specify time in hours. Value must be between 1 and 65535.
*
*/
public Integer hours() {
return this.hours;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotWithin defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Integer days;
private Integer hours;
public Builder() {}
public Builder(GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotWithin defaults) {
Objects.requireNonNull(defaults);
this.days = defaults.days;
this.hours = defaults.hours;
}
@CustomType.Setter
public Builder days(Integer days) {
if (days == null) {
throw new MissingRequiredPropertyException("GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotWithin", "days");
}
this.days = days;
return this;
}
@CustomType.Setter
public Builder hours(Integer hours) {
if (hours == null) {
throw new MissingRequiredPropertyException("GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotWithin", "hours");
}
this.hours = hours;
return this;
}
public GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotWithin build() {
final var _resultValue = new GetHipObjectListDataAntiMalwareCriteriaLastScanTimeNotWithin();
_resultValue.days = days;
_resultValue.hours = hours;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy