com.pulumi.googlenative.osconfig.v1beta.outputs.SoftwareRecipeStepExtractArchiveResponse Maven / Gradle / Ivy
// *** 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.googlenative.osconfig.v1beta.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class SoftwareRecipeStepExtractArchiveResponse {
/**
* @return The id of the relevant artifact in the recipe.
*
*/
private String artifactId;
/**
* @return Directory to extract archive to. Defaults to `/` on Linux or `C:\` on Windows.
*
*/
private String destination;
/**
* @return The type of the archive to extract.
*
*/
private String type;
private SoftwareRecipeStepExtractArchiveResponse() {}
/**
* @return The id of the relevant artifact in the recipe.
*
*/
public String artifactId() {
return this.artifactId;
}
/**
* @return Directory to extract archive to. Defaults to `/` on Linux or `C:\` on Windows.
*
*/
public String destination() {
return this.destination;
}
/**
* @return The type of the archive to extract.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SoftwareRecipeStepExtractArchiveResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String artifactId;
private String destination;
private String type;
public Builder() {}
public Builder(SoftwareRecipeStepExtractArchiveResponse defaults) {
Objects.requireNonNull(defaults);
this.artifactId = defaults.artifactId;
this.destination = defaults.destination;
this.type = defaults.type;
}
@CustomType.Setter
public Builder artifactId(String artifactId) {
this.artifactId = Objects.requireNonNull(artifactId);
return this;
}
@CustomType.Setter
public Builder destination(String destination) {
this.destination = Objects.requireNonNull(destination);
return this;
}
@CustomType.Setter
public Builder type(String type) {
this.type = Objects.requireNonNull(type);
return this;
}
public SoftwareRecipeStepExtractArchiveResponse build() {
final var o = new SoftwareRecipeStepExtractArchiveResponse();
o.artifactId = artifactId;
o.destination = destination;
o.type = type;
return o;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy