Interface ParameterizeResult

ParameterizeResult represents the results of a call to ResourceProvider.parameterize. It contains the ame and version that can be used to identify the sub-package that now exists as a result of parameterization.

interface ParameterizeResult {
    name: string;
    version: string;
}

Properties

Properties

name: string

The name of the sub-package parameterized.

version: string

The version of the sub-package parameterized.

Generated using TypeDoc