com.pulumi.scm.outputs.HipObjectHostInfoCriteriaHostId 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 java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class HipObjectHostInfoCriteriaHostId {
/**
* @return The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: `contains`, `is`, `is_not`
*
*/
private @Nullable String contains;
/**
* @return The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: `contains`, `is`, `is_not`
*
*/
private @Nullable String is;
/**
* @return The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: `contains`, `is`, `is_not`
*
*/
private @Nullable String isNot;
private HipObjectHostInfoCriteriaHostId() {}
/**
* @return The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: `contains`, `is`, `is_not`
*
*/
public Optional contains() {
return Optional.ofNullable(this.contains);
}
/**
* @return The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: `contains`, `is`, `is_not`
*
*/
public Optional is() {
return Optional.ofNullable(this.is);
}
/**
* @return The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: `contains`, `is`, `is_not`
*
*/
public Optional isNot() {
return Optional.ofNullable(this.isNot);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(HipObjectHostInfoCriteriaHostId defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String contains;
private @Nullable String is;
private @Nullable String isNot;
public Builder() {}
public Builder(HipObjectHostInfoCriteriaHostId defaults) {
Objects.requireNonNull(defaults);
this.contains = defaults.contains;
this.is = defaults.is;
this.isNot = defaults.isNot;
}
@CustomType.Setter
public Builder contains(@Nullable String contains) {
this.contains = contains;
return this;
}
@CustomType.Setter
public Builder is(@Nullable String is) {
this.is = is;
return this;
}
@CustomType.Setter
public Builder isNot(@Nullable String isNot) {
this.isNot = isNot;
return this;
}
public HipObjectHostInfoCriteriaHostId build() {
final var _resultValue = new HipObjectHostInfoCriteriaHostId();
_resultValue.contains = contains;
_resultValue.is = is;
_resultValue.isNot = isNot;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy