Skip to content

AssemblyManifest

A manifest which describes the cloud assembly.

Initializer

import { AssemblyManifest } from '@alicloud/ros-cdk-assembly-schema'
const assemblyManifest: AssemblyManifest = { ... }

Properties

Name Type Description
version string Protocol version.
artifacts {[ key: string ]: ArtifactManifest} The set of artifacts in this assembly.
missing MissingContext[] Missing context information.
runtime RuntimeInfo Runtime information.

versionRequired

public readonly version: string;
  • Type: string

Protocol version.


artifactsOptional

public readonly artifacts: {[ key: string ]: ArtifactManifest};

The set of artifacts in this assembly.


missingOptional

public readonly missing: MissingContext[];

Missing context information.

If this field has values, it means that the cloud assembly is not complete and should not be deployed.


runtimeOptional

public readonly runtime: RuntimeInfo;

Runtime information.