Resource interface Stay organized with collections Save and categorize content based on your preferences.
Resource is a standard format for defining a resource (google.rpc.context.AttributeContext.Resource). In Cloud Functions, it is the resource that triggered the function - such as a storage bucket.
Signature:
exportinterfaceResourceProperties
| Property | Type | Description |
|---|---|---|
| labels | { [tag: string]: string; } | Map of Resource's labels. |
| name | string | The stable identifier (name) of a resource on the service. A resource can be logically identified as "//{resource.service}/{resource.name}" |
| service | string | The name of the service that this resource belongs to. |
| type | string | The type of the resource. The syntax is platform-specific because different platforms define their resources differently. For Google APIs, the type format must be "{service}/{kind}" |
Resource.labels
Map of Resource's labels.
Signature:
labels?:{[tag:string]:string;};Resource.name
The stable identifier (name) of a resource on the service. A resource can be logically identified as "//{resource.service}/{resource.name}"
Signature:
name:string;Resource.service
The name of the service that this resource belongs to.
Signature:
service:string;Resource.type
The type of the resource. The syntax is platform-specific because different platforms define their resources differently. For Google APIs, the type format must be "{service}/{kind}"
Signature:
type?:string;Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2022-09-13 UTC.