com.pulumi.scm.outputs.GetHipObjectListDataPatchManagementCriteria 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.GetHipObjectListDataPatchManagementCriteriaMissingPatches;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetHipObjectListDataPatchManagementCriteria {
/**
* @return is enabled. String must be one of these: `"no"`, `"yes"`, `"not-available"`.
*
*/
private String isEnabled;
/**
* @return Is Installed. Default: `true`.
*
*/
private Boolean isInstalled;
/**
* @return The MissingPatches param.
*
*/
private GetHipObjectListDataPatchManagementCriteriaMissingPatches missingPatches;
private GetHipObjectListDataPatchManagementCriteria() {}
/**
* @return is enabled. String must be one of these: `"no"`, `"yes"`, `"not-available"`.
*
*/
public String isEnabled() {
return this.isEnabled;
}
/**
* @return Is Installed. Default: `true`.
*
*/
public Boolean isInstalled() {
return this.isInstalled;
}
/**
* @return The MissingPatches param.
*
*/
public GetHipObjectListDataPatchManagementCriteriaMissingPatches missingPatches() {
return this.missingPatches;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetHipObjectListDataPatchManagementCriteria defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String isEnabled;
private Boolean isInstalled;
private GetHipObjectListDataPatchManagementCriteriaMissingPatches missingPatches;
public Builder() {}
public Builder(GetHipObjectListDataPatchManagementCriteria defaults) {
Objects.requireNonNull(defaults);
this.isEnabled = defaults.isEnabled;
this.isInstalled = defaults.isInstalled;
this.missingPatches = defaults.missingPatches;
}
@CustomType.Setter
public Builder isEnabled(String isEnabled) {
if (isEnabled == null) {
throw new MissingRequiredPropertyException("GetHipObjectListDataPatchManagementCriteria", "isEnabled");
}
this.isEnabled = isEnabled;
return this;
}
@CustomType.Setter
public Builder isInstalled(Boolean isInstalled) {
if (isInstalled == null) {
throw new MissingRequiredPropertyException("GetHipObjectListDataPatchManagementCriteria", "isInstalled");
}
this.isInstalled = isInstalled;
return this;
}
@CustomType.Setter
public Builder missingPatches(GetHipObjectListDataPatchManagementCriteriaMissingPatches missingPatches) {
if (missingPatches == null) {
throw new MissingRequiredPropertyException("GetHipObjectListDataPatchManagementCriteria", "missingPatches");
}
this.missingPatches = missingPatches;
return this;
}
public GetHipObjectListDataPatchManagementCriteria build() {
final var _resultValue = new GetHipObjectListDataPatchManagementCriteria();
_resultValue.isEnabled = isEnabled;
_resultValue.isInstalled = isInstalled;
_resultValue.missingPatches = missingPatches;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy