com.pulumi.scm.outputs.GetHipObjectAntiMalware 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 com.pulumi.scm.outputs.GetHipObjectAntiMalwareCriteria;
import com.pulumi.scm.outputs.GetHipObjectAntiMalwareVendor;
import java.lang.Boolean;
import java.util.List;
import java.util.Objects;
@CustomType
public final class GetHipObjectAntiMalware {
/**
* @return The Criteria param.
*
*/
private GetHipObjectAntiMalwareCriteria criteria;
/**
* @return The ExcludeVendor param. Default: `false`.
*
*/
private Boolean excludeVendor;
/**
* @return Vendor name.
*
*/
private List vendors;
private GetHipObjectAntiMalware() {}
/**
* @return The Criteria param.
*
*/
public GetHipObjectAntiMalwareCriteria criteria() {
return this.criteria;
}
/**
* @return The ExcludeVendor param. Default: `false`.
*
*/
public Boolean excludeVendor() {
return this.excludeVendor;
}
/**
* @return Vendor name.
*
*/
public List vendors() {
return this.vendors;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetHipObjectAntiMalware defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private GetHipObjectAntiMalwareCriteria criteria;
private Boolean excludeVendor;
private List vendors;
public Builder() {}
public Builder(GetHipObjectAntiMalware defaults) {
Objects.requireNonNull(defaults);
this.criteria = defaults.criteria;
this.excludeVendor = defaults.excludeVendor;
this.vendors = defaults.vendors;
}
@CustomType.Setter
public Builder criteria(GetHipObjectAntiMalwareCriteria criteria) {
if (criteria == null) {
throw new MissingRequiredPropertyException("GetHipObjectAntiMalware", "criteria");
}
this.criteria = criteria;
return this;
}
@CustomType.Setter
public Builder excludeVendor(Boolean excludeVendor) {
if (excludeVendor == null) {
throw new MissingRequiredPropertyException("GetHipObjectAntiMalware", "excludeVendor");
}
this.excludeVendor = excludeVendor;
return this;
}
@CustomType.Setter
public Builder vendors(List vendors) {
if (vendors == null) {
throw new MissingRequiredPropertyException("GetHipObjectAntiMalware", "vendors");
}
this.vendors = vendors;
return this;
}
public Builder vendors(GetHipObjectAntiMalwareVendor... vendors) {
return vendors(List.of(vendors));
}
public GetHipObjectAntiMalware build() {
final var _resultValue = new GetHipObjectAntiMalware();
_resultValue.criteria = criteria;
_resultValue.excludeVendor = excludeVendor;
_resultValue.vendors = vendors;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy