Datasets auflisten

Datasets für ein Google Cloud-Projekt auflisten.

Codebeispiel

Node.js

Informationen zum Installieren und Verwenden der Clientbibliothek für Data Labeling Service finden Sie unter Data Labeling Service-Clientbibliotheken.

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

const {DataLabelingServiceClient} = require('@google-cloud/datalabeling');
const client = new DataLabelingServiceClient();

async function quickstart() {
  const parent = client.projectPath(projectId);
  const [result] = await client.listDatasets({parent});
  console.log('Datasets:');
  console.log(result);
}
quickstart();

Nächste Schritte

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