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
- Understand example when working with deleteService().
- Understand arguments when working with deleteService().
- Understand region when working with deleteService().
- Understand servicename when working with deleteService().
- 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.