Package version:

Interface ValidatedSolutionRecipeComponent

Represents component available in a validated solution recipe.

interface ValidatedSolutionRecipeComponent {
    installOrder?: number;
    metadata?: ValidatedSolutionRecipeComponentMetadata;
    name: string;
    payloads?: {};
    requiredVersion?: string;
    tags: {};
    type: string;
}

Properties

installOrder?: number

Represents the component's install order.

Represents the component's metadata.

name: string

Represents the component's name.

payloads?: {}

Represents the component's payloads.

requiredVersion?: string

Represents the component's required version.

tags: {}

Represents the component's tags.

type: string

Represents the component's type.