Compute Engine-Instanz über HTTP-Anfrage beenden

Stellt eine authentifizierte Anfrage innerhalb eines Workflows mit OAuth 2.0, um eine Compute Engine-Instanz zu stoppen.

Codebeispiel

YAML

- initialize:
    assign:
      - project: ${sys.get_env("GOOGLE_CLOUD_PROJECT_NUMBER")}
      - zone: "us-central1-a"
      - vm_to_stop: "examplevm"
- stop_instance:
    call: http.post
    args:
      url: ${"https://compute.googleapis.com/compute/v1/projects/"+project+"/zones/"+zone+"/instances/"+vm_to_stop+"/stop"}
      auth:
        type: OAuth2
    result: stop_result

Nächste Schritte

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