Readonly
outputsThe outputs of this stack, if the init
callback exited normally.
Readonly
urnThe stable logical URN used to distinctly address a resource, both before and after deployments.
Protected
getRetrieves the data produces by initialize. The data is
immediately available in a derived class's constructor after the
super(...)
call to ComponentResource
.
Returns the provider for the given module member, if one exists.
Protected
registerRegisters synthetic outputs that a component has initialized, usually by allocating other child sub-resources and propagating their resulting property values.
Component resources can call this at the end of their constructor to indicate that they are done creating child resources. This is not strictly necessary as this will automatically be called after the initialize method completes.
Static
isReturns true if the given object is a CustomResource. This is designed to work even when multiple copies of the Pulumi SDK have been loaded into the same process.
Generated using TypeDoc
Stack is the root resource for a Pulumi stack. Before invoking the
init
callback, it registers itself as the root resource with the Pulumi engine.