com.pulumi.googlenative.datapipelines.v1.inputs.GoogleCloudDatapipelinesV1LaunchFlexTemplateRequestArgs 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.datapipelines.v1.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.googlenative.datapipelines.v1.inputs.GoogleCloudDatapipelinesV1LaunchFlexTemplateParameterArgs;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* A request to launch a Dataflow job from a Flex Template.
*
*/
public final class GoogleCloudDatapipelinesV1LaunchFlexTemplateRequestArgs extends com.pulumi.resources.ResourceArgs {
public static final GoogleCloudDatapipelinesV1LaunchFlexTemplateRequestArgs Empty = new GoogleCloudDatapipelinesV1LaunchFlexTemplateRequestArgs();
/**
* Parameter to launch a job from a Flex Template.
*
*/
@Import(name="launchParameter", required=true)
private Output launchParameter;
/**
* @return Parameter to launch a job from a Flex Template.
*
*/
public Output launchParameter() {
return this.launchParameter;
}
/**
* The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to which to direct the request. For example, `us-central1`, `us-west1`.
*
*/
@Import(name="location", required=true)
private Output location;
/**
* @return The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to which to direct the request. For example, `us-central1`, `us-west1`.
*
*/
public Output location() {
return this.location;
}
/**
* The ID of the Cloud Platform project that the job belongs to.
*
*/
@Import(name="project", required=true)
private Output project;
/**
* @return The ID of the Cloud Platform project that the job belongs to.
*
*/
public Output project() {
return this.project;
}
/**
* If true, the request is validated but not actually executed. Defaults to false.
*
*/
@Import(name="validateOnly")
private @Nullable Output validateOnly;
/**
* @return If true, the request is validated but not actually executed. Defaults to false.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy