Snapshots auflisten (asynchron)

Zeigt, wie Snapshots aufgelistet werden.

Codebeispiel

C#

Richten Sie die Standardanmeldedaten für Anwendungen ein, um sich bei Dataflow zu authentifizieren. Weitere Informationen finden Sie unter Authentifizierung für eine lokale Entwicklungsumgebung einrichten.

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

Richten Sie die Standardanmeldedaten für Anwendungen ein, um sich bei Dataflow zu authentifizieren. Weitere Informationen finden Sie unter Authentifizierung für eine lokale Entwicklungsumgebung einrichten.

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

Richten Sie die Standardanmeldedaten für Anwendungen ein, um sich bei Dataflow zu authentifizieren. Weitere Informationen finden Sie unter Authentifizierung für eine lokale Entwicklungsumgebung einrichten.

/**
 * 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

Richten Sie die Standardanmeldedaten für Anwendungen ein, um sich bei Dataflow zu authentifizieren. Weitere Informationen finden Sie unter Authentifizierung für eine lokale Entwicklungsumgebung einrichten.

# 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)

Nächste Schritte

Informationen zum Suchen und Filtern von Codebeispielen für andere Google Cloud-Produkte finden Sie im Google Cloud-Beispielbrowser.