Obtén una plantilla

Demuestra cómo obtener metadatos y metadatos de entorno de ejecución sobre una plantilla.

Muestra de código

C#

Para autenticarte en Dataflow, configura las credenciales predeterminadas de la aplicación. Si deseas obtener más información, consulta Configura la autenticación para un entorno de desarrollo local.

using Google.Cloud.Dataflow.V1Beta3;

public sealed partial class GeneratedTemplatesServiceClientSnippets
{
    /// <summary>Snippet for GetTemplate</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 GetTemplateRequestObject()
    {
        // Create client
        TemplatesServiceClient templatesServiceClient = TemplatesServiceClient.Create();
        // Initialize request argument(s)
        GetTemplateRequest request = new GetTemplateRequest
        {
            ProjectId = "",
            GcsPath = "",
            View = GetTemplateRequest.Types.TemplateView.MetadataOnly,
            Location = "",
        };
        // Make the request
        GetTemplateResponse response = templatesServiceClient.GetTemplate(request);
    }
}

Go

Para autenticarte en Dataflow, configura las credenciales predeterminadas de la aplicación. Si deseas obtener más información, consulta Configura la autenticación para un entorno de desarrollo local.


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.GetTemplateRequest{
		// TODO: Fill request struct fields.
		// See https://pkg.go.dev/cloud.google.com/go/dataflow/apiv1beta3/dataflowpb#GetTemplateRequest.
	}
	resp, err := c.GetTemplate(ctx, req)
	if err != nil {
		// TODO: Handle error.
	}
	// TODO: Use resp.
	_ = resp
}

Java

Para autenticarte en Dataflow, configura las credenciales predeterminadas de la aplicación. Si deseas obtener más información, consulta Configura la autenticación para un entorno de desarrollo local.

import com.google.dataflow.v1beta3.GetTemplateRequest;
import com.google.dataflow.v1beta3.GetTemplateResponse;
import com.google.dataflow.v1beta3.TemplatesServiceClient;

public class SyncGetTemplate {

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

  public static void syncGetTemplate() 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()) {
      GetTemplateRequest request =
          GetTemplateRequest.newBuilder()
              .setProjectId("projectId-894832108")
              .setLocation("location1901043637")
              .build();
      GetTemplateResponse response = templatesServiceClient.getTemplate(request);
    }
  }
}

Python

Para autenticarte en Dataflow, configura las credenciales predeterminadas de la aplicación. Si deseas obtener más información, consulta Configura la autenticación para un entorno de desarrollo local.

# 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_get_template():
    # Create a client
    client = dataflow_v1beta3.TemplatesServiceClient()

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

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

    # Handle the response
    print(response)

Ruby

Para autenticarte en Dataflow, configura las credenciales predeterminadas de la aplicación. Si deseas obtener más información, consulta Configura la autenticación para un entorno de desarrollo local.

require "google/cloud/dataflow/v1beta3"

##
# Snippet for the get_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#get_template.
#
def get_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::GetTemplateRequest.new

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

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

¿Qué sigue?

Para buscar y filtrar muestras de código para otros productos de Google Cloud, consulta el navegador de muestra de Google Cloud.