Launch a template

Demonstrates how to launch a template.

Code sample

C#

To authenticate to Dataflow, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.

using Google.Cloud.Dataflow.V1Beta3;

public sealed partial class GeneratedTemplatesServiceClientSnippets
{
    /// <summary>Snippet for LaunchTemplate</summary>
    /// <remarks>
    /// This snippet has been automatically generated and should be regarded as a code template only.
    /// It will require modifications to work:
    /// - It may require correct/in-range values for request initialization.
    /// - It may require specifying regional endpoints when creating the service client as shown in
    ///   https://cloud.google.com/dotnet/docs/reference/help/client-configuration#endpoint.
    /// </remarks>
    public void LaunchTemplateRequestObject()
    {
        // Create client
        TemplatesServiceClient templatesServiceClient = TemplatesServiceClient.Create();
        // Initialize request argument(s)
        LaunchTemplateRequest request = new LaunchTemplateRequest
        {
            ProjectId = "",
            ValidateOnly = false,
            GcsPath = "",
            LaunchParameters = new LaunchTemplateParameters(),
            Location = "",
        };
        // Make the request
        LaunchTemplateResponse response = templatesServiceClient.LaunchTemplate(request);
    }
}

Go

To authenticate to Dataflow, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.


package main

import (
	"context"

	dataflow "cloud.google.com/go/dataflow/apiv1beta3"
	dataflowpb "cloud.google.com/go/dataflow/apiv1beta3/dataflowpb"
)

func main() {
	ctx := context.Background()
	// This snippet has been automatically generated and should be regarded as a code template only.
	// It will require modifications to work:
	// - It may require correct/in-range values for request initialization.
	// - It may require specifying regional endpoints when creating the service client as shown in:
	//   https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options
	c, err := dataflow.NewTemplatesClient(ctx)
	if err != nil {
		// TODO: Handle error.
	}
	defer c.Close()

	req := &dataflowpb.LaunchTemplateRequest{
		// TODO: Fill request struct fields.
		// See https://pkg.go.dev/cloud.google.com/go/dataflow/apiv1beta3/dataflowpb#LaunchTemplateRequest.
	}
	resp, err := c.LaunchTemplate(ctx, req)
	if err != nil {
		// TODO: Handle error.
	}
	// TODO: Use resp.
	_ = resp
}

Java

To authenticate to Dataflow, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.

import com.google.dataflow.v1beta3.LaunchTemplateParameters;
import com.google.dataflow.v1beta3.LaunchTemplateRequest;
import com.google.dataflow.v1beta3.LaunchTemplateResponse;
import com.google.dataflow.v1beta3.TemplatesServiceClient;

public class SyncLaunchTemplate {

  public static void main(String[] args) throws Exception {
    syncLaunchTemplate();
  }

  public static void syncLaunchTemplate() throws Exception {
    // This snippet has been automatically generated and should be regarded as a code template only.
    // It will require modifications to work:
    // - It may require correct/in-range values for request initialization.
    // - It may require specifying regional endpoints when creating the service client as shown in
    // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
    try (TemplatesServiceClient templatesServiceClient = TemplatesServiceClient.create()) {
      LaunchTemplateRequest request =
          LaunchTemplateRequest.newBuilder()
              .setProjectId("projectId-894832108")
              .setValidateOnly(true)
              .setLaunchParameters(LaunchTemplateParameters.newBuilder().build())
              .setLocation("location1901043637")
              .build();
      LaunchTemplateResponse response = templatesServiceClient.launchTemplate(request);
    }
  }
}

Python

To authenticate to Dataflow, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import dataflow_v1beta3


def sample_launch_template():
    # Create a client
    client = dataflow_v1beta3.TemplatesServiceClient()

    # Initialize request argument(s)
    request = dataflow_v1beta3.LaunchTemplateRequest(
        gcs_path="gcs_path_value",
    )

    # Make the request
    response = client.launch_template(request=request)

    # Handle the response
    print(response)

Ruby

To authenticate to Dataflow, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.

require "google/cloud/dataflow/v1beta3"

##
# Snippet for the launch_template call in the TemplatesService service
#
# This snippet has been automatically generated and should be regarded as a code
# template only. It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
# client as shown in https://cloud.google.com/ruby/docs/reference.
#
# This is an auto-generated example demonstrating basic usage of
# Google::Cloud::Dataflow::V1beta3::TemplatesService::Client#launch_template.
#
def launch_template
  # Create a client object. The client can be reused for multiple calls.
  client = Google::Cloud::Dataflow::V1beta3::TemplatesService::Client.new

  # Create a request. To set request fields, pass in keyword arguments.
  request = Google::Cloud::Dataflow::V1beta3::LaunchTemplateRequest.new

  # Call the launch_template method.
  result = client.launch_template request

  # The returned object is of type Google::Cloud::Dataflow::V1beta3::LaunchTemplateResponse.
  p result
end

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser.