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.
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}"
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2022-09-13 UTC."],[],[],null,["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.\n\n**Signature:** \n\n export interface Resource \n\nProperties\n\nResource.labels\n\nMap of Resource's labels.\n\n**Signature:** \n\n labels?: {\n [tag: string]: string;\n };\n\nResource.name\n\nThe stable identifier (name) of a resource on the service. A resource can be logically identified as \"//{resource.service}/{resource.name}\"\n\n**Signature:** \n\n name: string;\n\nResource.service\n\nThe name of the service that this resource belongs to.\n\n**Signature:** \n\n service: string;\n\nResource.type\n\nThe 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}\"\n\n**Signature:** \n\n type?: string;"]]