com.pulumi.googlenative.dataproc.v1.inputs.NodeInitializationActionArgs 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.dataproc.v1.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Specifies an executable to run on a fully configured node and a timeout period for executable completion.
*
*/
public final class NodeInitializationActionArgs extends com.pulumi.resources.ResourceArgs {
public static final NodeInitializationActionArgs Empty = new NodeInitializationActionArgs();
/**
* Cloud Storage URI of executable file.
*
*/
@Import(name="executableFile", required=true)
private Output executableFile;
/**
* @return Cloud Storage URI of executable file.
*
*/
public Output executableFile() {
return this.executableFile;
}
/**
* Optional. Amount of time executable has to complete. Default is 10 minutes (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)).Cluster creation fails with an explanatory error message (the name of the executable that caused the error and the exceeded timeout period) if the executable is not completed at end of the timeout period.
*
*/
@Import(name="executionTimeout")
private @Nullable Output executionTimeout;
/**
* @return Optional. Amount of time executable has to complete. Default is 10 minutes (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)).Cluster creation fails with an explanatory error message (the name of the executable that caused the error and the exceeded timeout period) if the executable is not completed at end of the timeout period.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy