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

GoogleCloudSecuritycenterV2File

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

File information about the related binary/library used by an executable, or the script used by a script interpreter

interface GoogleCloudSecuritycenterV2File {
contents?: string;
hashedSize?: bigint;
partiallyHashed?: boolean;
path?: string;
sha256?: string;
size?: bigint;
}

§Properties

§
contents?: string
[src]

Prefix of the file contents as a JSON-encoded string.

§

Path of the file in terms of underlying disk/partition identifiers.

§
hashedSize?: bigint
[src]

The length in bytes of the file prefix that was hashed. If hashed_size == size, any hashes reported represent the entire file.

§
partiallyHashed?: boolean
[src]

True when the hash covers only a prefix of the file.

§
path?: string
[src]

Absolute path of the file as a JSON encoded string.

§
sha256?: string
[src]

SHA256 hash of the first hashed_size bytes of the file encoded as a hex string. If hashed_size == size, sha256 represents the SHA256 hash of the entire file.

§
size?: bigint
[src]

Size of the file in bytes.