InvokeResult represents the results of a call to ResourceProvider.invoke.

interface InvokeResult {
    failures?: provider.CheckFailure[];
    outputs?: any;
}

Properties

Properties

failures?: provider.CheckFailure[]

Any validation failures that occurred.

outputs?: any

The outputs returned by the invoked function, if any.

Generated using TypeDoc