Erste Schritte mit der Service Management API

Auf dieser Seite wird beschrieben, wie Sie Ihre Entwicklungsumgebung für die Arbeit mit der Service Management API einrichten. Die einfachste Methode, Service Management API (außer die Verwendung der Google Cloud Console Web-UI) und empfehlen wir für die meisten operativen Anwendungsfälle das gcloud Befehlszeile aufrufen. Für eine Programmierung unter Einbindung der Service Management API empfehlen wir eine unserer verfügbaren Clientbibliotheken. Sie können die unten stehende alternative Anleitung sowie den Befehl curl verwenden, um die API zu testen, ohne eine komplette Anwendungsentwicklungsumgebung einzurichten.

Mit gcloud einrichten

  1. Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
  2. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Go to project selector

  3. Enable the Service Management API.

    Enable the API

  4. Install the Google Cloud CLI.
  5. To initialize the gcloud CLI, run the following command:

    gcloud init
  6. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Go to project selector

  7. Enable the Service Management API.

    Enable the API

  8. Install the Google Cloud CLI.
  9. To initialize the gcloud CLI, run the following command:

    gcloud init

Direkten API-Aufruf einrichten

In diesem Abschnitt werden die grundlegenden Schritte zum Einrichten Ihrer lokalen Umgebung und zum Testen der Service Management API mit dem curl-Befehl beschrieben. Diese Schritte richten sich an Entwickler, die unter Einbindung der Service Management API programmieren.

Ersteinrichtung

  1. Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
  2. Install the Google Cloud CLI.
  3. To initialize the gcloud CLI, run the following command:

    gcloud init
  4. Create or select a Google Cloud project.

    • Create a Google Cloud project:

      gcloud projects create PROJECT_ID

      Replace PROJECT_ID with a name for the Google Cloud project you are creating.

    • Select the Google Cloud project that you created:

      gcloud config set project PROJECT_ID

      Replace PROJECT_ID with your Google Cloud project name.

  5. Enable the Service Management API:

    gcloud services enable servicemanagement.googleapis.com
  6. Grant roles to your user account. Run the following command once for each of the following IAM roles: roles/servicemanagement.admin

    gcloud projects add-iam-policy-binding PROJECT_ID --member="USER_IDENTIFIER" --role=ROLE
    • Replace PROJECT_ID with your project ID.
    • Replace USER_IDENTIFIER with the identifier for your user account. For example, user:myemail@example.com.

    • Replace ROLE with each individual role.
  7. Install the Google Cloud CLI.
  8. To initialize the gcloud CLI, run the following command:

    gcloud init
  9. Create or select a Google Cloud project.

    • Create a Google Cloud project:

      gcloud projects create PROJECT_ID

      Replace PROJECT_ID with a name for the Google Cloud project you are creating.

    • Select the Google Cloud project that you created:

      gcloud config set project PROJECT_ID

      Replace PROJECT_ID with your Google Cloud project name.

  10. Enable the Service Management API:

    gcloud services enable servicemanagement.googleapis.com
  11. Grant roles to your user account. Run the following command once for each of the following IAM roles: roles/servicemanagement.admin

    gcloud projects add-iam-policy-binding PROJECT_ID --member="USER_IDENTIFIER" --role=ROLE
    • Replace PROJECT_ID with your project ID.
    • Replace USER_IDENTIFIER with the identifier for your user account. For example, user:myemail@example.com.

    • Replace ROLE with each individual role.

Mit curl testen

  1. Definieren Sie ein geeignetes Shell-Alias zum Aufrufen der Google REST APIs:

    $ alias gcurl='curl -H "Authorization: Bearer $(gcloud auth print-access-token)" -H "Content-Type: application/json"'
    
  2. Versuchen Sie, öffentlich zugängliche Dienste aufzulisten:

    $ gcurl https://servicemanagement.googleapis.com/v1/services
    

    Wenn eine Liste der Dienste angezeigt wird, war die Einrichtung erfolgreich.

Weitere Informationen

Wenn Sie Cloud Endpoints nicht zum Erstellen eines verwalteten Dienstes verwenden, gehen Sie so vor:

  1. Folgen Sie den Schritten in Dienste erstellen und löschen, um eine Ressource für verwaltete Dienste auf oberster Ebene zu erstellen.
  2. Folgen Sie den Schritten unter Dienstkonfigurationen verwalten, um Dienstkonfigurationen zu senden, die vom Dienst verwendete Funktionen beschreiben.

  3. Informationen zum Bereitstellen Ihrer Dienstkonfigurationen finden Sie unter Dienstkonfigurationen bereitstellen.