Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

HmacKeyMetadata

import type { HmacKeyMetadata } from "https://googleapis.deno.dev/v1/storage:v1.ts";

JSON template to produce a JSON-style HMAC Key metadata resource.

interface HmacKeyMetadata {
accessId?: string;
etag?: string;
id?: string;
kind?: string;
projectId?: string;
selfLink?: string;
serviceAccountEmail?: string;
state?: string;
timeCreated?: Date;
updated?: Date;
}

§Properties

§
accessId?: string
[src]

The ID of the HMAC Key.

§
etag?: string
[src]

HTTP 1.1 Entity tag for the HMAC key.

§
id?: string
[src]

The ID of the HMAC key, including the Project ID and the Access ID.

§
kind?: string
[src]

The kind of item this is. For HMAC Key metadata, this is always storage#hmacKeyMetadata.

§
projectId?: string
[src]

Project ID owning the service account to which the key authenticates.

§
serviceAccountEmail?: string
[src]

The email address of the key's associated service account.

§
state?: string
[src]

The state of the key. Can be one of ACTIVE, INACTIVE, or DELETED.

§
timeCreated?: Date
[src]

The creation time of the HMAC key in RFC 3339 format.

§
updated?: Date
[src]

The last modification time of the HMAC key metadata in RFC 3339 format.