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

ImportAppRequest

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

Request message for AgentService.ImportApp.

interface ImportAppRequest {
appContent?: Uint8Array;
appId?: string;
displayName?: string;
gcsUri?: string;
}

§Properties

§
appContent?: Uint8Array
[src]

Raw bytes representing the compressed zip file with the app folder structure.

§
appId?: string
[src]

Optional. The ID to use for the imported app. * If not specified, a unique ID will be automatically assigned for the app. * Otherwise, the imported app will use this ID as the final component of its resource name. If an app with the same ID already exists at the specified location in the project, the content of the existing app will be replaced.

§
displayName?: string
[src]

Optional. The display name of the app to import. * If the app is created on import, and the display name is specified, the imported app will use this display name. If a conflict is detected with an existing app, a timestamp will be appended to the display name to make it unique. * If the app is a reimport, this field should not be set. Providing a display name during reimport will result in an INVALID_ARGUMENT error.

§
gcsUri?: string
[src]

The Google Cloud Storage URI from which to import app. The format of this URI must be gs:///.

§

Optional. Options governing the import process for the app.