com.pulumi.scm.outputs.GetHipObjectListDataFirewallVendor 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.String;
import java.util.List;
import java.util.Objects;
@CustomType
public final class GetHipObjectListDataFirewallVendor {
/**
* @return The Name param. String length must not exceed 103 characters.
*
*/
private String name;
/**
* @return The Products param. Individual elements in this list are subject to additional validation. String length must not exceed 1023 characters. String validation regex: `.*`.
*
*/
private List products;
private GetHipObjectListDataFirewallVendor() {}
/**
* @return The Name param. String length must not exceed 103 characters.
*
*/
public String name() {
return this.name;
}
/**
* @return The Products param. Individual elements in this list are subject to additional validation. String length must not exceed 1023 characters. String validation regex: `.*`.
*
*/
public List products() {
return this.products;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetHipObjectListDataFirewallVendor defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String name;
private List products;
public Builder() {}
public Builder(GetHipObjectListDataFirewallVendor defaults) {
Objects.requireNonNull(defaults);
this.name = defaults.name;
this.products = defaults.products;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetHipObjectListDataFirewallVendor", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder products(List products) {
if (products == null) {
throw new MissingRequiredPropertyException("GetHipObjectListDataFirewallVendor", "products");
}
this.products = products;
return this;
}
public Builder products(String... products) {
return products(List.of(products));
}
public GetHipObjectListDataFirewallVendor build() {
final var _resultValue = new GetHipObjectListDataFirewallVendor();
_resultValue.name = name;
_resultValue.products = products;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy