Mencantumkan lokasi VMWare Engine yang tersedia

Mencetak daftar lokasi yang tersedia untuk digunakan di VMWare Engine.

Contoh kode

Python

Untuk melakukan autentikasi ke VMware Engine, siapkan Kredensial Default Aplikasi. Untuk mengetahui informasi selengkapnya, baca Menyiapkan autentikasi untuk lingkungan pengembangan lokal.

from google.cloud import vmwareengine_v1
from google.cloud.location.locations_pb2 import ListLocationsRequest

def list_locations(project_id: str) -> str:
    """
    Prints a list of available locations for use in VMWare Engine.

    Args:
        project_id: name of the project you want to use.

    Returns:
        String containing the list of all available locations.
    """
    client = vmwareengine_v1.VmwareEngineClient()
    request = ListLocationsRequest()
    request.name = f"projects/{project_id}"
    locations = client.list_locations(request)
    print(locations)
    return str(locations)

Langkah selanjutnya

Untuk menelusuri dan memfilter contoh kode untuk produk Google Cloud lainnya, lihat browser contoh Google Cloud.