Capítulo 536 de 988

Chapter 536: deleteService()

Core Idea

<ExperimentalBadge> <p> Cloud Run is in <a href="/docs/cloudrun/status">Alpha status and not actively being developed.

Key Concepts

  • Example
  • Arguments
  • region
  • serviceName
  • Return value
  • See also

Code Examples

const services = await getServices({
  region: 'us-east1',
  compatibleOnly: false,
});
for (const service of services) {
  await deleteService({
    region: 'us-east1',
    serviceName: service.serviceName,
  });
}
  • What it demonstrates: Usage pattern for deleteService() from the official docs.

Key Takeaways

  1. Understand example when working with deleteService().
  2. Understand arguments when working with deleteService().
  3. Understand region when working with deleteService().
  4. Understand servicename when working with deleteService().
  5. Understand return value when working with deleteService().

Connects To

  • api: related page in the Cloud Run (@remotion/cloudrun) section.
  • Checklist: related page in the Cloud Run (@remotion/cloudrun) section.
  • cli: related page in the Cloud Run (@remotion/cloudrun) section.