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

AgentTaskUserAccount

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

AgentTaskUserAccount contains the information of a POSIX account on the guest os which is used to execute the runnables.

interface AgentTaskUserAccount {
gid?: bigint;
uid?: bigint;
}

§Properties

§
gid?: bigint
[src]

gid id an unique identifier of the POSIX account group corresponding to the user account.

§
uid?: bigint
[src]

uid is an unique identifier of the POSIX account corresponding to the user account.