Resource interface

資源是定義資源的標準格式 (google.rpc.context.AttributeContext.Resource)。在 Cloud Functions 中,是觸發函式的資源,例如儲存空間值區。

簽名:

export interface Resource 

屬性

屬性 類型 說明
標籤 { [tag: string]: 字串;} 資源的標籤對應。
name 字串 服務中資源的穩定 ID (名稱)。資源能以邏輯方式識別為「//{resource.service}/{resource.name}
service [服務] 字串 這項資源所屬的服務名稱。
類型 字串 資源類型。此語法因平台而異,因為不同的平台定義其資源的方式不同。如為 Google API,類型格式必須為「{service}/{Kind}

Resource.labels

資源的標籤對應。

簽名:

labels?: {
        [tag: string]: string;
    };

Resource.name

服務中資源的穩定 ID (名稱)。資源能以邏輯方式識別為「//{resource.service}/{resource.name}

簽名:

name: string;

Resource.service

這項資源所屬的服務名稱。

簽名:

service: string;

Resource.type

資源類型。此語法因平台而異,因為不同的平台定義其資源的方式不同。如為 Google API,類型格式必須為「{service}/{Kind}

簽名:

type?: string;