Répertorier les instantanés (asynchrone)

Explique comment répertorier les instantanés.

Exemple de code

C#

Pour vous authentifier auprès de Dataflow, configurez le service Identifiants par défaut de l'application. Pour en savoir plus, consultez la page Configurer l'authentification pour un environnement de développement local.

using Google.Cloud.Dataflow.V1Beta3;
using System.Threading.Tasks;

public sealed partial class GeneratedSnapshotsV1Beta3ClientSnippets
{
    /// <summary>Snippet for ListSnapshotsAsync</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 async Task ListSnapshotsRequestObjectAsync()
    {
        // Create client
        SnapshotsV1Beta3Client snapshotsV1Beta3Client = await SnapshotsV1Beta3Client.CreateAsync();
        // Initialize request argument(s)
        ListSnapshotsRequest request = new ListSnapshotsRequest
        {
            ProjectId = "",
            Location = "",
            JobId = "",
        };
        // Make the request
        ListSnapshotsResponse response = await snapshotsV1Beta3Client.ListSnapshotsAsync(request);
    }
}

Java

Pour vous authentifier auprès de Dataflow, configurez le service Identifiants par défaut de l'application. Pour en savoir plus, consultez la page Configurer l'authentification pour un environnement de développement local.

import com.google.api.core.ApiFuture;
import com.google.dataflow.v1beta3.ListSnapshotsRequest;
import com.google.dataflow.v1beta3.ListSnapshotsResponse;
import com.google.dataflow.v1beta3.SnapshotsV1Beta3Client;

public class AsyncListSnapshots {

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

  public static void asyncListSnapshots() 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 (SnapshotsV1Beta3Client snapshotsV1Beta3Client = SnapshotsV1Beta3Client.create()) {
      ListSnapshotsRequest request =
          ListSnapshotsRequest.newBuilder()
              .setProjectId("projectId-894832108")
              .setJobId("jobId101296568")
              .setLocation("location1901043637")
              .build();
      ApiFuture<ListSnapshotsResponse> future =
          snapshotsV1Beta3Client.listSnapshotsCallable().futureCall(request);
      // Do something.
      ListSnapshotsResponse response = future.get();
    }
  }
}

Node.js

Pour vous authentifier auprès de Dataflow, configurez le service Identifiants par défaut de l'application. Pour en savoir plus, consultez la page Configurer l'authentification pour un environnement de développement 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.
 * TODO(developer): Uncomment these variables before running the sample.
 */
/**
 *  The project ID to list snapshots for.
 */
// const projectId = 'abc123'
/**
 *  If specified, list snapshots created from this job.
 */
// const jobId = 'abc123'
/**
 *  The location to list snapshots in.
 */
// const location = 'abc123'

// Imports the Dataflow library
const {SnapshotsV1Beta3Client} = require('@google-cloud/dataflow').v1beta3;

// Instantiates a client
const dataflowClient = new SnapshotsV1Beta3Client();

async function callListSnapshots() {
  // Construct request
  const request = {
  };

  // Run request
  const response = await dataflowClient.listSnapshots(request);
  console.log(response);
}

callListSnapshots();

Python

Pour vous authentifier auprès de Dataflow, configurez le service Identifiants par défaut de l'application. Pour en savoir plus, consultez la page Configurer l'authentification pour un environnement de développement 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

async def sample_list_snapshots():
    # Create a client
    client = dataflow_v1beta3.SnapshotsV1Beta3AsyncClient()

    # Initialize request argument(s)
    request = dataflow_v1beta3.ListSnapshotsRequest(
    )

    # Make the request
    response = await client.list_snapshots(request=request)

    # Handle the response
    print(response)

Étapes suivantes

Pour rechercher et filtrer des exemples de code pour d'autres produits Google Cloud, consultez l'explorateur d'exemples Google Cloud.