com.pulumi.googlenative.osconfig.v1beta.inputs.SoftwareRecipeStepExtractArchiveArgs 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.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.googlenative.osconfig.v1beta.enums.SoftwareRecipeStepExtractArchiveType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Extracts an archive of the type specified in the specified directory.
*
*/
public final class SoftwareRecipeStepExtractArchiveArgs extends com.pulumi.resources.ResourceArgs {
public static final SoftwareRecipeStepExtractArchiveArgs Empty = new SoftwareRecipeStepExtractArchiveArgs();
/**
* The id of the relevant artifact in the recipe.
*
*/
@Import(name="artifactId", required=true)
private Output artifactId;
/**
* @return The id of the relevant artifact in the recipe.
*
*/
public Output artifactId() {
return this.artifactId;
}
/**
* Directory to extract archive to. Defaults to `/` on Linux or `C:\` on Windows.
*
*/
@Import(name="destination")
private @Nullable Output destination;
/**
* @return Directory to extract archive to. Defaults to `/` on Linux or `C:\` on Windows.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy